RSpec.context 'Predicates: Included In' do context "Array" do context 'with required' do subject(:schema) do Dry::Validation.Schema do required(:foo) { included_in?([1, 3, 5]) } end end context 'with valid input' do let(:input) { { foo: 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', 'must be one of: 1, 3, 5'] end end context 'with nil input' do let(:input) { { foo: nil } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid input' do let(:input) { { foo: 4 } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end end context 'with optional' do subject(:schema) do Dry::Validation.Schema do optional(:foo) { included_in?([1, 3, 5]) } end end context 'with valid input' do let(:input) { { foo: 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 one of: 1, 3, 5'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid input' do let(:input) { { foo: 4 } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] 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(included_in?: [1, 3, 5]) end end context 'with valid input' do let(:input) { { foo: 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', 'must be one of: 1, 3, 5'] end end context 'with nil input' do let(:input) { { foo: nil } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid input' do let(:input) { { foo: 4 } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end end context 'with filled' do subject(:schema) do Dry::Validation.Schema do required(:foo).filled(included_in?: [1, 3, 5]) end end context 'with valid input' do let(:input) { { foo: 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', 'must be one of: 1, 3, 5'] end end context 'with nil input' do let(:input) { { foo: nil } } it 'is not successful' do expect(result).to be_failing ['must be filled', 'must be one of: 1, 3, 5'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['must be filled', 'must be one of: 1, 3, 5'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid input' do let(:input) { { foo: 4 } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end end context 'with maybe' do subject(:schema) do Dry::Validation.Schema do required(:foo).maybe(included_in?: [1, 3, 5]) end end context 'with valid input' do let(:input) { { foo: 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', 'must be one of: 1, 3, 5'] 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: '' } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid input' do let(:input) { { foo: 4 } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end end end context 'with optional' do context 'with value' do subject(:schema) do Dry::Validation.Schema do optional(:foo).value(included_in?: [1, 3, 5]) end end context 'with valid input' do let(:input) { { foo: 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 one of: 1, 3, 5'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid input' do let(:input) { { foo: 4 } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end end context 'with filled' do subject(:schema) do Dry::Validation.Schema do optional(:foo).filled(included_in?: [1, 3, 5]) end end context 'with valid input' do let(:input) { { foo: 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', 'must be one of: 1, 3, 5'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['must be filled', 'must be one of: 1, 3, 5'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid input' do let(:input) { { foo: 4 } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end end context 'with maybe' do subject(:schema) do Dry::Validation.Schema do optional(:foo).maybe(included_in?: [1, 3, 5]) end end context 'with valid input' do let(:input) { { foo: 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: '' } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end context 'with invalid input' do let(:input) { { foo: 4 } } it 'is not successful' do expect(result).to be_failing ['must be one of: 1, 3, 5'] end end end end end end end