2020-01-03 10:08:33 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 05:08:32 -04:00
|
|
|
RSpec.describe Gitlab::ApplicationContext do
|
2020-01-03 10:08:33 -05:00
|
|
|
describe '.with_context' do
|
|
|
|
it 'yields the block' do
|
|
|
|
expect { |b| described_class.with_context({}, &b) }.to yield_control
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'passes the expected context on to labkit' do
|
2020-04-01 11:07:45 -04:00
|
|
|
user = build(:user)
|
|
|
|
project = build(:project)
|
2020-01-03 10:08:33 -05:00
|
|
|
fake_proc = duck_type(:call)
|
|
|
|
expected_context = hash_including(user: fake_proc, project: fake_proc, root_namespace: fake_proc)
|
|
|
|
|
|
|
|
expect(Labkit::Context).to receive(:with_context).with(expected_context)
|
|
|
|
|
|
|
|
described_class.with_context(
|
2020-04-01 11:07:45 -04:00
|
|
|
user: user,
|
|
|
|
project: project,
|
2020-01-03 10:08:33 -05:00
|
|
|
namespace: build(:namespace)) {}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an error when passing invalid options' do
|
|
|
|
expect { described_class.with_context(no: 'option') {} }.to raise_error(ArgumentError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-03-16 17:11:53 -04:00
|
|
|
describe '.with_raw_context' do
|
|
|
|
it 'yields the block' do
|
|
|
|
expect { |b| described_class.with_raw_context({}, &b) }.to yield_control
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'passes the attributes unaltered on to labkit' do
|
|
|
|
attrs = { foo: :bar }
|
|
|
|
|
|
|
|
expect(Labkit::Context).to receive(:with_context).with(attrs)
|
|
|
|
|
|
|
|
described_class.with_raw_context(attrs) {}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-03 10:08:33 -05:00
|
|
|
describe '.push' do
|
|
|
|
it 'passes the expected context on to labkit' do
|
|
|
|
fake_proc = duck_type(:call)
|
2021-03-11 19:09:18 -05:00
|
|
|
expected_context = { user: fake_proc, client_id: fake_proc }
|
2020-01-03 10:08:33 -05:00
|
|
|
|
|
|
|
expect(Labkit::Context).to receive(:push).with(expected_context)
|
|
|
|
|
|
|
|
described_class.push(user: build(:user))
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an error when passing invalid options' do
|
|
|
|
expect { described_class.push(no: 'option')}.to raise_error(ArgumentError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-15 14:09:36 -04:00
|
|
|
describe '.current_context_include?' do
|
|
|
|
it 'returns true if the key was present in the context' do
|
|
|
|
described_class.with_context(caller_id: "Hello") do
|
|
|
|
expect(described_class.current_context_include?(:caller_id)).to be(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if the key was not present in the current context' do
|
|
|
|
expect(described_class.current_context_include?(:caller_id)).to be(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-06-08 17:10:05 -04:00
|
|
|
describe '.current_context_attribute' do
|
|
|
|
it 'returns the raw attribute value' do
|
|
|
|
described_class.with_context(caller_id: "Hello") do
|
|
|
|
expect(described_class.current_context_attribute(:caller_id)).to be('Hello')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the attribute value with meta prefix' do
|
|
|
|
described_class.with_context(feature_category: "secure") do
|
|
|
|
expect(described_class.current_context_attribute('meta.feature_category')).to be('secure')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil if the key was not present in the current context' do
|
|
|
|
expect(described_class.current_context_attribute(:caller_id)).to be(nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-03 10:08:33 -05:00
|
|
|
describe '#to_lazy_hash' do
|
2020-05-15 14:07:52 -04:00
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:project) { create(:project) }
|
|
|
|
let_it_be(:namespace) { create(:group) }
|
|
|
|
let_it_be(:subgroup) { create(:group, parent: namespace) }
|
2020-01-03 10:08:33 -05:00
|
|
|
|
|
|
|
def result(context)
|
2020-01-23 10:08:46 -05:00
|
|
|
context.to_lazy_hash.transform_values { |v| v.respond_to?(:call) ? v.call : v }
|
2020-01-03 10:08:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not call the attributes until needed' do
|
|
|
|
fake_proc = double('Proc')
|
|
|
|
|
|
|
|
expect(fake_proc).not_to receive(:call)
|
|
|
|
|
|
|
|
described_class.new(user: fake_proc, project: fake_proc, namespace: fake_proc).to_lazy_hash
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'correctly loads the expected values when they are wrapped in a block' do
|
|
|
|
context = described_class.new(user: -> { user }, project: -> { project }, namespace: -> { subgroup })
|
|
|
|
|
|
|
|
expect(result(context))
|
|
|
|
.to include(user: user.username, project: project.full_path, root_namespace: namespace.full_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'correctly loads the expected values when passed directly' do
|
|
|
|
context = described_class.new(user: user, project: project, namespace: subgroup)
|
|
|
|
|
|
|
|
expect(result(context))
|
|
|
|
.to include(user: user.username, project: project.full_path, root_namespace: namespace.full_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'falls back to a projects namespace when a project is passed but no namespace' do
|
|
|
|
context = described_class.new(project: project)
|
|
|
|
|
|
|
|
expect(result(context))
|
|
|
|
.to include(project: project.full_path, root_namespace: project.full_path_components.first)
|
|
|
|
end
|
2021-03-11 19:09:18 -05:00
|
|
|
|
|
|
|
describe 'setting the client' do
|
|
|
|
let_it_be(:remote_ip) { '127.0.0.1' }
|
|
|
|
let_it_be(:runner) { create(:ci_runner) }
|
|
|
|
let_it_be(:options) { { remote_ip: remote_ip, runner: runner, user: user } }
|
|
|
|
|
|
|
|
using RSpec::Parameterized::TableSyntax
|
|
|
|
|
|
|
|
where(:provided_options, :client) do
|
|
|
|
[:remote_ip] | :remote_ip
|
|
|
|
[:remote_ip, :runner] | :runner
|
|
|
|
[:remote_ip, :runner, :user] | :user
|
|
|
|
end
|
|
|
|
|
|
|
|
with_them do
|
|
|
|
it 'sets the client_id to the expected value' do
|
|
|
|
context = described_class.new(**options.slice(*provided_options))
|
|
|
|
|
|
|
|
client_id = case client
|
|
|
|
when :remote_ip then "ip/#{remote_ip}"
|
|
|
|
when :runner then "runner/#{runner.id}"
|
|
|
|
when :user then "user/#{user.id}"
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(result(context)[:client_id]).to eq(client_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-01-03 10:08:33 -05:00
|
|
|
end
|
2020-01-24 07:09:01 -05:00
|
|
|
|
|
|
|
describe '#use' do
|
|
|
|
let(:context) { described_class.new(user: build(:user)) }
|
|
|
|
|
|
|
|
it 'yields control' do
|
|
|
|
expect { |b| context.use(&b) }.to yield_control
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'passes the expected context on to labkit' do
|
|
|
|
expect(Labkit::Context).to receive(:with_context).with(a_hash_including(user: duck_type(:call)))
|
|
|
|
|
|
|
|
context.use {}
|
|
|
|
end
|
2020-05-15 14:07:52 -04:00
|
|
|
|
|
|
|
it 'does not cause queries' do
|
|
|
|
context = described_class.new(project: create(:project), namespace: create(:group, :nested), user: create(:user))
|
|
|
|
|
2021-03-16 17:11:53 -04:00
|
|
|
expect { context.use { Gitlab::ApplicationContext.current } }.not_to exceed_query_limit(0)
|
2020-05-15 14:07:52 -04:00
|
|
|
end
|
2020-01-24 07:09:01 -05:00
|
|
|
end
|
2020-01-03 10:08:33 -05:00
|
|
|
end
|