Giter VIP home page Giter VIP logo

Comments (1)

samuel-hcl avatar samuel-hcl commented on June 19, 2024

I usually define a method with all the logic to custom validate the keys in this case. Then I use a lambda to call that method and validate the key. Something like:

require 'hash_validator'

# the data you provided
VALID_FOO = [1,2]
VALID_BAR = [3,4]

valid_a = { foo: [1,2], bar: [3,4]}
valid_b = {}
valid_c = {foo: [1]}
valid_d = {bar: [3]}
invalid_a = {foo: 1}
invalid_b = {bar: 1}
invalid_c = {bar: [1]}

# assembling an array with your samples
samples = [valid_a, valid_b, valid_c, valid_d, invalid_a, invalid_b, invalid_c]

# the expected hash with lambdas
expected = {
  foo: ->(value) { foo_validation value },
  bar: ->(value) { bar_validation value }
}

# methods with the logic of the validation
def foo_validation(value)
  return true unless value
  value.each { |v| return false unless VALID_FOO.include? v } if value.is_a? Array
end

def bar_validation(value)
  return true unless value
  value.each { |v| return false unless VALID_BAR.include? v } if value.is_a? Array
end

# validating each of the samples you provided
samples.each do |sample|
  val = HashValidator.validate(sample, expected)
  puts val.valid?
  puts val.errors
end

If you run this code, you'll see that the first four hashes are OK, and the other three are invalid, just like you want.

Also, you can write a custom validator and use it just like the others.

from hash_validator.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.