hanami-validations/spec/unit/hanami/validations/predicates/form/included_in_spec.rb

490 lines
12 KiB
Ruby

RSpec.describe 'Predicates: Included In' do
include_context 'validator result'
describe 'with required' do
before do
@validator = Class.new do
include Hanami::Validations::Form
validations do
required(:foo) { included_in?(%w[1 3 5]) }
end
end
end
describe 'with valid input' do
let(:input) { { 'foo' => '3' } }
it 'is successful' do
expect_successful result
end
end
describe 'with missing input' do
let(:input) { {} }
it 'is not successful' do
expect_not_successful result, ['is missing', 'must be one of: 1, 3, 5']
end
end
describe 'with nil input' do
let(:input) { { 'foo' => nil } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with blank input' do
let(:input) { { 'foo' => '' } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with invalid type' do
let(:input) { { 'foo' => { 'a' => '1' } } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with invalid input' do
let(:input) { { 'foo' => '4' } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
end
describe 'with optional' do
before do
@validator = Class.new do
include Hanami::Validations::Form
validations do
optional(:foo) { included_in?(%w[1 3 5]) }
end
end
end
describe 'with valid input' do
let(:input) { { 'foo' => '3' } }
it 'is successful' do
expect_successful result
end
end
describe 'with missing input' do
let(:input) { {} }
it 'is successful' do
expect_successful result
end
end
describe 'with nil input' do
let(:input) { { 'foo' => nil } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with blank input' do
let(:input) { { 'foo' => '' } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with invalid type' do
let(:input) { { 'foo' => { 'a' => '1' } } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with invalid input' do
let(:input) { { 'foo' => '4' } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
end
describe 'as macro' do
describe 'with required' do
describe 'with value' do
before do
@validator = Class.new do
include Hanami::Validations::Form
validations do
required(:foo).value(included_in?: %w[1 3 5])
end
end
end
describe 'with valid input' do
let(:input) { { 'foo' => '3' } }
it 'is successful' do
expect_successful result
end
end
describe 'with missing input' do
let(:input) { {} }
it 'is not successful' do
expect_not_successful result, ['is missing', 'must be one of: 1, 3, 5']
end
end
describe 'with nil input' do
let(:input) { { 'foo' => nil } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with blank input' do
let(:input) { { 'foo' => '' } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with invalid type' do
let(:input) { { 'foo' => { 'a' => '1' } } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with invalid input' do
let(:input) { { 'foo' => '4' } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
end
describe 'with filled' do
before do
@validator = Class.new do
include Hanami::Validations::Form
validations do
required(:foo).filled(included_in?: %w[1 3 5])
end
end
end
describe 'with valid input' do
let(:input) { { 'foo' => '3' } }
it 'is successful' do
expect_successful result
end
end
describe 'with missing input' do
let(:input) { {} }
it 'is not successful' do
expect_not_successful result, ['is missing', 'must be one of: 1, 3, 5']
end
end
describe 'with nil input' do
let(:input) { { 'foo' => nil } }
it 'is not successful' do
expect_not_successful result, ['must be filled', 'must be one of: 1, 3, 5']
end
end
describe 'with blank input' do
let(:input) { { 'foo' => '' } }
it 'is not successful' do
expect_not_successful result, ['must be filled', 'must be one of: 1, 3, 5']
end
end
describe 'with invalid type' do
let(:input) { { 'foo' => { 'a' => '1' } } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with invalid input' do
let(:input) { { 'foo' => '4' } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
end
describe 'with maybe' do
before do
@validator = Class.new do
include Hanami::Validations::Form
validations do
required(:foo).maybe(included_in?: %w[1 3 5])
end
end
end
describe 'with valid input' do
let(:input) { { 'foo' => '3' } }
it 'is successful' do
expect_successful result
end
end
describe 'with missing input' do
let(:input) { {} }
it 'is not successful' do
expect_not_successful result, ['is missing', 'must be one of: 1, 3, 5']
end
end
describe 'with nil input' do
let(:input) { { 'foo' => nil } }
it 'is successful' do
expect_successful result
end
end
describe 'with blank input' do
let(:input) { { 'foo' => '' } }
it 'is successful' do
expect_successful result
end
end
describe 'with invalid type' do
let(:input) { { 'foo' => { 'a' => '1' } } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with invalid input' do
let(:input) { { 'foo' => '4' } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
end
end
describe 'with optional' do
describe 'with value' do
before do
@validator = Class.new do
include Hanami::Validations::Form
validations do
optional(:foo).value(included_in?: %w[1 3 5])
end
end
end
describe 'with valid input' do
let(:input) { { 'foo' => '3' } }
it 'is successful' do
expect_successful result
end
end
describe 'with missing input' do
let(:input) { {} }
it 'is successful' do
expect_successful result
end
end
describe 'with nil input' do
let(:input) { { 'foo' => nil } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with blank input' do
let(:input) { { 'foo' => '' } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with invalid type' do
let(:input) { { 'foo' => { 'a' => '1' } } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with invalid input' do
let(:input) { { 'foo' => '4' } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
end
describe 'with filled' do
before do
@validator = Class.new do
include Hanami::Validations::Form
validations do
optional(:foo).filled(included_in?: %w[1 3 5])
end
end
end
describe 'with valid input' do
let(:input) { { 'foo' => '3' } }
it 'is successful' do
expect_successful result
end
end
describe 'with missing input' do
let(:input) { {} }
it 'is successful' do
expect_successful result
end
end
describe 'with nil input' do
let(:input) { { 'foo' => nil } }
it 'is not successful' do
expect_not_successful result, ['must be filled', 'must be one of: 1, 3, 5']
end
end
describe 'with blank input' do
let(:input) { { 'foo' => '' } }
it 'is not successful' do
expect_not_successful result, ['must be filled', 'must be one of: 1, 3, 5']
end
end
describe 'with invalid type' do
let(:input) { { 'foo' => { 'a' => '1' } } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with invalid input' do
let(:input) { { 'foo' => '4' } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
end
describe 'with maybe' do
before do
@validator = Class.new do
include Hanami::Validations::Form
validations do
optional(:foo).maybe(included_in?: %w[1 3 5])
end
end
end
describe 'with valid input' do
let(:input) { { 'foo' => '3' } }
it 'is successful' do
expect_successful result
end
end
describe 'with missing input' do
let(:input) { {} }
it 'is successful' do
expect_successful result
end
end
describe 'with nil input' do
let(:input) { { 'foo' => nil } }
it 'is successful' do
expect_successful result
end
end
describe 'with blank input' do
let(:input) { { 'foo' => '' } }
it 'is successful' do
expect_successful result
end
end
describe 'with invalid type' do
let(:input) { { 'foo' => { 'a' => '1' } } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
describe 'with invalid input' do
let(:input) { { 'foo' => '4' } }
it 'is not successful' do
expect_not_successful result, ['must be one of: 1, 3, 5']
end
end
end
end
end
end