Sha256: 01506d611603ac582f2432b74058ed6bc4e30833e495a6bae4517bd2c3dd6641

Contents?: true

Size: 1.74 KB

Versions: 11

Compression:

Stored size: 1.74 KB

Contents

# frozen_string_literal: true

require 'spec_helper'

describe Grape::Extensions::Hashie::Mash::ParamBuilder do
  subject { Class.new(Grape::API) }

  def app
    subject
  end

  describe 'in an endpoint' do
    context '#params' do
      before do
        subject.params do
          build_with Grape::Extensions::Hashie::Mash::ParamBuilder
        end

        subject.get do
          params.class
        end
      end

      it 'should be of type Hashie::Mash' do
        get '/'
        expect(last_response.status).to eq(200)
        expect(last_response.body).to eq('Hashie::Mash')
      end
    end
  end

  describe 'in an api' do
    before do
      subject.send(:include, Grape::Extensions::Hashie::Mash::ParamBuilder)
    end

    context '#params' do
      before do
        subject.get do
          params.class
        end
      end

      it 'should be Hashie::Mash' do
        get '/'
        expect(last_response.status).to eq(200)
        expect(last_response.body).to eq('Hashie::Mash')
      end
    end

    context 'in a nested namespace api' do
      before do
        subject.namespace :foo do
          get do
            params.class
          end
        end
      end

      it 'should be Hashie::Mash' do
        get '/foo'
        expect(last_response.status).to eq(200)
        expect(last_response.body).to eq('Hashie::Mash')
      end
    end

    it 'is indifferent to key or symbol access' do
      subject.params do
        build_with Grape::Extensions::Hashie::Mash::ParamBuilder
        requires :a, type: String
      end
      subject.get '/foo' do
        [params[:a], params['a']]
      end

      get '/foo', a: 'bar'
      expect(last_response.status).to eq(200)
      expect(last_response.body).to eq('["bar", "bar"]')
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
grape-1.6.0 spec/grape/extensions/param_builders/hashie/mash_spec.rb
grape-1.5.3 spec/grape/extensions/param_builders/hashie/mash_spec.rb
grape-1.5.2 spec/grape/extensions/param_builders/hashie/mash_spec.rb
grape-1.5.1 spec/grape/extensions/param_builders/hashie/mash_spec.rb
grape-1.5.0 spec/grape/extensions/param_builders/hashie/mash_spec.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/grape-1.4.0/spec/grape/extensions/param_builders/hashie/mash_spec.rb
grape-1.4.0 spec/grape/extensions/param_builders/hashie/mash_spec.rb
grape-1.3.3 spec/grape/extensions/param_builders/hashie/mash_spec.rb
grape-1.3.2 spec/grape/extensions/param_builders/hashie/mash_spec.rb
grape-1.3.1 spec/grape/extensions/param_builders/hashie/mash_spec.rb
grape-1.3.0 spec/grape/extensions/param_builders/hashie/mash_spec.rb