RSpec.describe 'Predicates: Format' do context 'with required' do subject(:schema) do Dry::Validation.Schema do required(:foo) { format?(/bar/) } end end context 'with valid input' do let(:input) { { foo: 'bar baz' } } 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', 'is in invalid format'] end end context 'with nil input' do let(:input) { { foo: nil } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'raises error' do expect { result }.to raise_error TypeError end end context 'with invalid input' do let(:input) { { foo: 'wat' } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] end end end context 'with optional' do subject(:schema) do Dry::Validation.Schema do optional(:foo) { format?(/bar/) } end end context 'with valid input' do let(:input) { { foo: 'bar baz' } } 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 ['is in invalid format'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'raises error' do expect { result }.to raise_error TypeError end end context 'with invalid input' do let(:input) { { foo: 'wat' } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] 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(format?: /bar/) end end context 'with valid input' do let(:input) { { foo: 'bar baz' } } 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', 'is in invalid format'] end end context 'with nil input' do let(:input) { { foo: nil } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'raises error' do expect { result }.to raise_error TypeError end end context 'with invalid input' do let(:input) { { foo: 'wat' } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] end end end context 'with filled' do subject(:schema) do Dry::Validation.Schema do required(:foo).filled(format?: /bar/) end end context 'with valid input' do let(:input) { { foo: 'bar baz' } } 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', 'is in invalid format'] end end context 'with nil input' do let(:input) { { foo: nil } } it 'is not successful' do expect(result).to be_failing ['must be filled', 'is in invalid format'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['must be filled', 'is in invalid format'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'raises error' do expect { result }.to raise_error TypeError end end context 'with invalid input' do let(:input) { { foo: 'wat' } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] end end end context 'with maybe' do subject(:schema) do Dry::Validation.Schema do required(:foo).maybe(format?: /bar/) end end context 'with valid input' do let(:input) { { foo: 'bar baz' } } 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', 'is in invalid format'] 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 ['is in invalid format'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'raises error' do expect { result }.to raise_error TypeError end end context 'with invalid input' do let(:input) { { foo: 'wat' } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] end end end end context 'with optional' do context 'with value' do subject(:schema) do Dry::Validation.Schema do optional(:foo).value(format?: /bar/) end end context 'with valid input' do let(:input) { { foo: 'bar baz' } } 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 ['is in invalid format'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'raises error' do expect { result }.to raise_error TypeError end end context 'with invalid input' do let(:input) { { foo: 'wat' } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] end end end context 'with filled' do subject(:schema) do Dry::Validation.Schema do optional(:foo).filled(format?: /bar/) end end context 'with valid input' do let(:input) { { foo: 'bar baz' } } 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', 'is in invalid format'] end end context 'with blank input' do let(:input) { { foo: '' } } it 'is not successful' do expect(result).to be_failing ['must be filled', 'is in invalid format'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'raises error' do expect { result }.to raise_error TypeError end end context 'with invalid input' do let(:input) { { foo: 'wat' } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] end end end context 'with maybe' do subject(:schema) do Dry::Validation.Schema do optional(:foo).maybe(format?: /bar/) end end context 'with valid input' do let(:input) { { foo: 'bar baz' } } 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 ['is in invalid format'] end end context 'with invalid type' do let(:input) { { foo: { a: 1 } } } it 'raises error' do expect { result }.to raise_error TypeError end end context 'with invalid input' do let(:input) { { foo: 'wat' } } it 'is not successful' do expect(result).to be_failing ['is in invalid format'] end end end end end end