1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
# 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
describe '#params' do
before do
subject.params do
build_with Grape::Extensions::Hashie::Mash::ParamBuilder # rubocop:disable RSpec/DescribedClass
end
subject.get do
params.class
end
end
it 'is 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) # rubocop:disable RSpec/DescribedClass
end
describe '#params' do
before do
subject.get do
params.class
end
end
it 'is 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 'is 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 # rubocop:disable RSpec/DescribedClass
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
|