Sha256: 7d5ef1eec17796910171a5d33aad9f859dbfc71d08fb92d23c4af953397427c3

Contents?: true

Size: 1.09 KB

Versions: 8

Compression:

Stored size: 1.09 KB

Contents

RSpec.describe Dry::Validation::Schema, 'for a hash' do
  context 'without type specs' do
    subject(:schema) do
      Dry::Validation.Schema do
        hash? do
          required(:prefix).filled
          required(:value).filled
        end
      end
    end

    it 'applies its rules to array input' do
      result = schema.(prefix: 1, value: 123)

      expect(result).to be_success

      result = schema.(prefix: 1, value: nil)

      expect(result.messages).to eql(value: ["must be filled"])
    end
  end

  context 'with type specs' do
    subject(:schema) do
      Dry::Validation.Params do
        configure { config.type_specs = true }

        hash? do
          required(:prefix, :integer).filled
          required(:value, :integer).filled
        end
      end
    end

    it 'applies its rules to coerced array input' do
      result = schema.(prefix: 1, value: '123')

      expect(result).to be_success

      expect(result.output).to eql(prefix: 1, value: 123)

      result = schema.(prefix: 1, value: nil)

      expect(result.messages).to eql(value: ["must be filled"])
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
dry-validation-0.13.3 spec/integration/schema/hash_schema_spec.rb
dry-validation-0.13.2 spec/integration/schema/hash_schema_spec.rb
dry-validation-0.13.1 spec/integration/schema/hash_schema_spec.rb
dry-validation-0.12.3 spec/integration/schema/hash_schema_spec.rb
dry-validation-0.13.0 spec/integration/schema/hash_schema_spec.rb
dry-validation-0.12.2 spec/integration/schema/hash_schema_spec.rb
dry-validation-0.12.1 spec/integration/schema/hash_schema_spec.rb
dry-validation-0.12.0 spec/integration/schema/hash_schema_spec.rb