Sha256: ebcac40535a65ded6166269dd059d00e5db34d55e58a5b989a5b646533aa85c8

Contents?: true

Size: 1.93 KB

Versions: 8

Compression:

Stored size: 1.93 KB

Contents

require 'spec_helper'

describe Grape::Validations::AtLeastOneOfValidator do
  describe '#validate!' do
    let(:scope) do
      Struct.new(:opts) do
        def params(arg)
          arg
        end

        def required?; end
      end
    end
    let(:at_least_one_of_params) { %i[beer wine grapefruit] }
    let(:validator) { described_class.new(at_least_one_of_params, {}, false, scope.new) }

    context 'when all restricted params are present' do
      let(:params) { { beer: true, wine: true, grapefruit: true } }

      it 'does not raise a validation exception' do
        expect(validator.validate!(params)).to eql params
      end

      context 'mixed with other params' do
        let(:mixed_params) { params.merge!(other: true, andanother: true) }

        it 'does not raise a validation exception' do
          expect(validator.validate!(mixed_params)).to eql mixed_params
        end
      end
    end

    context 'when a subset of restricted params are present' do
      let(:params) { { beer: true, grapefruit: true } }

      it 'does not raise a validation exception' do
        expect(validator.validate!(params)).to eql params
      end
    end

    context 'when params keys come as strings' do
      let(:params) { { 'beer' => true, 'grapefruit' => true } }

      it 'does not raise a validation exception' do
        expect(validator.validate!(params)).to eql params
      end
    end

    context 'when none of the restricted params is selected' do
      let(:params) { { somethingelse: true } }

      it 'raises a validation exception' do
        expect do
          validator.validate! params
        end.to raise_error(Grape::Exceptions::Validation)
      end
    end

    context 'when exactly one of the restricted params is selected' do
      let(:params) { { beer: true, somethingelse: true } }

      it 'does not raise a validation exception' do
        expect(validator.validate!(params)).to eql params
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
grape-1.2.4 spec/grape/validations/validators/at_least_one_of_spec.rb
grape-1.2.3 spec/grape/validations/validators/at_least_one_of_spec.rb
grape-1.2.2 spec/grape/validations/validators/at_least_one_of_spec.rb
grape-1.2.1 spec/grape/validations/validators/at_least_one_of_spec.rb
grape-1.2.0 spec/grape/validations/validators/at_least_one_of_spec.rb
grape-1.1.0 spec/grape/validations/validators/at_least_one_of_spec.rb
grape-1.0.3 spec/grape/validations/validators/at_least_one_of_spec.rb
grape-1.0.2 spec/grape/validations/validators/at_least_one_of_spec.rb