debian-mirror-gitlab/spec/lib/gitlab/lograge/custom_options_spec.rb

82 lines
2 KiB
Ruby
Raw Normal View History

2020-04-08 14:13:33 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::Lograge::CustomOptions do
2020-04-08 14:13:33 +05:30
describe '.call' do
let(:params) do
{
'controller' => 'ApplicationController',
'action' => 'show',
'format' => 'html',
'a' => 'b'
}
end
2020-06-23 00:09:42 +05:30
let(:event_payload) do
{
params: params,
user_id: 'test',
cf_ray: SecureRandom.hex,
cf_request_id: SecureRandom.hex,
metadata: { 'meta.user' => 'jane.doe' }
}
2020-04-08 14:13:33 +05:30
end
2020-10-24 23:57:45 +05:30
2020-06-23 00:09:42 +05:30
let(:event) { ActiveSupport::Notifications::Event.new('test', 1, 2, 'transaction_id', event_payload) }
2020-04-08 14:13:33 +05:30
subject { described_class.call(event) }
it 'ignores some parameters' do
param_keys = subject[:params].map { |param| param[:key] }
expect(param_keys).not_to include(*described_class::IGNORE_PARAMS)
end
it 'formats the parameters' do
expect(subject[:params]).to eq([{ key: 'a', value: 'b' }])
end
it 'adds the current time' do
travel_to(5.days.ago) do
expected_time = Time.now.utc.iso8601(3)
expect(subject[:time]).to eq(expected_time)
end
end
it 'adds the user id' do
expect(subject[:user_id]).to eq('test')
end
2020-05-24 23:13:21 +05:30
it 'adds Cloudflare headers' do
expect(subject[:cf_ray]).to eq(event.payload[:cf_ray])
expect(subject[:cf_request_id]).to eq(event.payload[:cf_request_id])
end
it 'adds the metadata' do
expect(subject['meta.user']).to eq('jane.doe')
end
context 'when metadata is missing' do
2020-06-23 00:09:42 +05:30
let(:event_payload) { { params: {} } }
2020-05-24 23:13:21 +05:30
it 'does not break' do
expect { subject }.not_to raise_error
end
end
2020-06-23 00:09:42 +05:30
2020-07-28 23:09:34 +05:30
context 'when correlation_id is overridden' do
2020-06-23 00:09:42 +05:30
let(:correlation_id_key) { Labkit::Correlation::CorrelationId::LOG_KEY }
before do
event_payload[correlation_id_key] = '123456'
end
2020-07-28 23:09:34 +05:30
it 'sets the overridden value' do
2020-06-23 00:09:42 +05:30
expect(subject[correlation_id_key]).to eq('123456')
end
end
2020-04-08 14:13:33 +05:30
end
end