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
|
# frozen_string_literal: true
require 'spec_helper'
describe Rack do
it 'correctly populates params from a Tempfile' do
input = Tempfile.new 'rubbish'
begin
app = Class.new(Grape::API) do
format :json
post do
{ params_keys: params.keys }
end
end
input.write({ test: '123' * 10_000 }.to_json)
input.rewind
options = {
input: input,
method: 'POST',
'CONTENT_TYPE' => 'application/json'
}
env = Rack::MockRequest.env_for('/', options)
expect(JSON.parse(read_chunks(app.call(env)[2]).join)['params_keys']).to match_array('test')
ensure
input.close
input.unlink
end
end
context 'when the app is mounted' do
def app
@main_app ||= Class.new(Grape::API) do
get 'ping'
end
end
let!(:base) do
app_to_mount = app
Class.new(Grape::API) do
namespace 'namespace' do
mount app_to_mount
end
end
end
it 'finds the app on the namespace' do
get '/namespace/ping'
expect(last_response.status).to eq 200
end
end
end
|