53 lines
1.9 KiB
Ruby
53 lines
1.9 KiB
Ruby
require 'spec_helper'
|
|
require 'grape/middleware/logger'
|
|
|
|
describe Grape::Middleware::Logger, type: :integration do
|
|
let(:app) { build :app }
|
|
let(:options) { { filter: build(:param_filter), logger: Logger.new(Tempfile.new('logger')) } }
|
|
|
|
subject { described_class.new(app, options) }
|
|
|
|
let(:app_response) { build :app_response }
|
|
let(:grape_request) { build :grape_request }
|
|
let(:grape_endpoint) { build(:grape_endpoint) }
|
|
let(:env) { build(:expected_env, grape_endpoint: grape_endpoint) }
|
|
|
|
it 'logs all parts of the request' do
|
|
expect(subject.logger).to receive(:info).with ''
|
|
expect(subject.logger).to receive(:info).with %Q(Started POST "/api/1.0/users" at #{subject.start_time})
|
|
expect(subject.logger).to receive(:info).with %Q(Processing by TestAPI#users)
|
|
expect(subject.logger).to receive(:info).with %Q( Parameters: {"id"=>"101001", "name"=>"foo", "password"=>"[FILTERED]"})
|
|
expect(subject.logger).to receive(:info).with /Completed 200 in \d.\d+ms/
|
|
expect(subject.logger).to receive(:info).with ''
|
|
subject.call!(env)
|
|
end
|
|
|
|
describe 'the "processing by" section' do
|
|
before { subject.call!(env) }
|
|
|
|
context 'namespacing' do
|
|
let(:grape_endpoint) { build(:namespaced_endpoint) }
|
|
|
|
it 'designates the namespace with a slash' do
|
|
expect(subject.processed_by).to eq 'TestAPI/admin#users'
|
|
end
|
|
|
|
context 'with more complex route' do
|
|
let(:grape_endpoint) { build(:namespaced_endpoint, :complex) }
|
|
|
|
it 'only escapes the first slash and leaves the rest of the untouched' do
|
|
expect(subject.processed_by).to eq 'TestAPI/admin#users/:name/profile'
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'with more complex route' do
|
|
let(:grape_endpoint) { build(:grape_endpoint, :complex) }
|
|
|
|
it 'only escapes the first slash and leaves the rest of the untouched' do
|
|
expect(subject.processed_by).to eq 'TestAPI#users/:name/profile'
|
|
end
|
|
end
|
|
end
|
|
end
|