RSpec.describe 'Predicates: Size' do context 'Fixed (integer)' do context 'with required' do subject(:schema) do Dry::Validation.Schema do required(:foo) { size?(3) } end end context 'with valid input' do let(:input) { { foo: [1, 2, 3] } } it 'is successful' do expect(result).to be_successful end end context 'with missing input' do let(:input) { {} } it 'is not successful' do expect(result).to be_failing ['is missing', 'size must be 3'] end end context 'with nil input' do let(:input) { { foo: nil } } it 'is raises error' do expect { result }.to raise_error(NoMethodError) end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['length must be 3'] end end context 'with invalid input' do let(:input) { { foo: { a: 1, b: 2, c: 3, d: 4 } } } it 'is not successful' do expect(result).to be_failing ['size must be 3'] end end end context 'with optional' do subject(:schema) do Dry::Validation.Schema do optional(:foo) { size?(3) } end end context 'with valid input' do let(:input) { { foo: [1, 2, 3] } } it 'is successful' do expect(result).to be_successful end end context 'with missing input' do let(:input) { {} } it 'is successful' do expect(result).to be_successful end end context 'with nil input' do let(:input) { { foo: nil } } it 'is raises error' do expect { result }.to raise_error(NoMethodError) end end context 'with blank input' do let(:input) { { foo: '' } } #see: https://github.com/dry-rb/dry-validation/issues/121 it 'is not successful' do expect(result).to be_failing ['length must be 3'] end end context 'with invalid input' do let(:input) { { foo: { a: 1, b: 2, c: 3, d: 4 } } } it 'is not successful' do expect(result).to be_failing ['size must be 3'] end end end context 'as macro' do context 'with required' do context 'with value' do subject(:schema) do Dry::Validation.Schema do required(:foo).value(size?: 3) end end context 'with valid input' do let(:input) { { foo: [1, 2, 3] } } it 'is successful' do expect(result).to be_successful end end context 'with missing input' do let(:input) { {} } it 'is not successful' do expect(result).to be_failing ['is missing', 'size must be 3'] end end context 'with nil input' do let(:input) { { foo: nil } } it 'is raises error' do expect { result }.to raise_error(NoMethodError) end end context 'with blank input' do let(:input) { { foo: '' } } #see: https://github.com/dry-rb/dry-validation/issues/121 it 'is not successful' do expect(result).to be_failing ['length must be 3'] end end context 'with invalid input' do let(:input) { { foo: { a: 1, b: 2, c: 3, d: 4 } } } it 'is not successful' do expect(result).to be_failing ['size must be 3'] end end end context 'with filled' do subject(:schema) do Dry::Validation.Schema do required(:foo).filled(size?: 3) end end context 'with valid input' do let(:input) { { foo: [1, 2, 3] } } it 'is successful' do expect(result).to be_successful end end context 'with missing input' do let(:input) { {} } it 'is not successful' do expect(result).to be_failing ['is missing', 'size must be 3'] end end context 'with nil input' do let(:input) { { foo: nil } } it 'is not successful' do expect(result).to be_failing ['must be filled', 'size must be 3'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['must be filled', 'length must be 3'] end end context 'with invalid input' do let(:input) { { foo: { a: 1, b: 2, c: 3, d: 4 } } } it 'is not successful' do expect(result).to be_failing ['size must be 3'] end end end context 'with maybe' do subject(:schema) do Dry::Validation.Schema do required(:foo).maybe(size?: 3) end end context 'with valid input' do let(:input) { { foo: [1, 2, 3] } } it 'is successful' do expect(result).to be_successful end end context 'with missing input' do let(:input) { {} } it 'is not successful' do expect(result).to be_failing ['is missing', 'size must be 3'] end end context 'with nil input' do let(:input) { { foo: nil } } it 'is successful' do expect(result).to be_successful end end context 'with blank input' do let(:input) { { foo: '' } } #see: https://github.com/dry-rb/dry-validation/issues/121 it 'is not successful' do expect(result).to be_failing ['length must be 3'] end end context 'with invalid input' do let(:input) { { foo: { a: 1, b: 2, c: 3, d: 4 } } } it 'is not successful' do expect(result).to be_failing ['size must be 3'] end end end end context 'with optional' do context 'with value' do subject(:schema) do Dry::Validation.Schema do optional(:foo).value(size?: 3) end end context 'with valid input' do let(:input) { { foo: [1, 2, 3] } } it 'is successful' do expect(result).to be_successful end end context 'with missing input' do let(:input) { {} } it 'is successful' do expect(result).to be_successful end end context 'with nil input' do let(:input) { { foo: nil } } it 'is raises error' do expect { result }.to raise_error(NoMethodError) end end context 'with blank input' do let(:input) { { foo: '' } } #see: https://github.com/dry-rb/dry-validation/issues/121 it 'is not successful' do expect(result).to be_failing ['length must be 3'] end end context 'with invalid input' do let(:input) { { foo: { a: 1, b: 2, c: 3, d: 4 } } } it 'is not successful' do expect(result).to be_failing ['size must be 3'] end end end context 'with filled' do subject(:schema) do Dry::Validation.Schema do optional(:foo).filled(size?: 3) end end context 'with valid input' do let(:input) { { foo: [1, 2, 3] } } it 'is successful' do expect(result).to be_successful end end context 'with missing input' do let(:input) { {} } it 'is successful' do expect(result).to be_successful end end context 'with nil input' do let(:input) { { foo: nil } } it 'is not successful' do expect(result).to be_failing ['must be filled', 'size must be 3'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['must be filled', 'length must be 3'] end end context 'with invalid input' do let(:input) { { foo: { a: 1, b: 2, c: 3, d: 4 } } } it 'is not successful' do expect(result).to be_failing ['size must be 3'] end end end context 'with maybe' do subject(:schema) do Dry::Validation.Schema do optional(:foo).maybe(size?: 3) end end context 'with valid input' do let(:input) { { foo: [1, 2, 3] } } it 'is successful' do expect(result).to be_successful end end context 'with missing input' do let(:input) { {} } it 'is successful' do expect(result).to be_successful end end context 'with nil input' do let(:input) { { foo: nil } } it 'is successful' do expect(result).to be_successful end end context 'with blank input' do let(:input) { { foo: '' } } #see: https://github.com/dry-rb/dry-validation/issues/121 it 'is not successful' do expect(result).to be_failing ['length must be 3'] end end context 'with invalid input' do let(:input) { { foo: { a: 1, b: 2, c: 3, d: 4 } } } it 'is not successful' do expect(result).to be_failing ['size must be 3'] end end end end end end end