2021-03-08 18:12:59 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe Gitlab::Tracking::StandardContext do
|
|
|
|
let_it_be(:project) { create(:project) }
|
|
|
|
let_it_be(:namespace) { create(:namespace) }
|
2021-11-18 22:05:49 +05:30
|
|
|
let_it_be(:user) { create(:user) }
|
2021-03-08 18:12:59 +05:30
|
|
|
|
|
|
|
let(:snowplow_context) { subject.to_context }
|
|
|
|
|
|
|
|
describe '#to_context' do
|
2021-03-11 19:13:27 +05:30
|
|
|
context 'environment' do
|
|
|
|
shared_examples 'contains environment' do |expected_environment|
|
|
|
|
it 'contains environment' do
|
|
|
|
expect(snowplow_context.to_json.dig(:data, :environment)).to eq(expected_environment)
|
2021-03-08 18:12:59 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
context 'development or test' do
|
|
|
|
include_examples 'contains environment', 'development'
|
2021-03-08 18:12:59 +05:30
|
|
|
end
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
context 'staging' do
|
|
|
|
before do
|
2021-09-04 01:27:46 +05:30
|
|
|
stub_config_setting(url: Gitlab::Saas.staging_com_url)
|
2021-03-11 19:13:27 +05:30
|
|
|
end
|
2021-03-08 18:12:59 +05:30
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
include_examples 'contains environment', 'staging'
|
2021-03-08 18:12:59 +05:30
|
|
|
end
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
context 'production' do
|
|
|
|
before do
|
2021-09-04 01:27:46 +05:30
|
|
|
stub_config_setting(url: Gitlab::Saas.com_url)
|
2021-03-11 19:13:27 +05:30
|
|
|
end
|
2021-03-08 18:12:59 +05:30
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
include_examples 'contains environment', 'production'
|
2021-03-08 18:12:59 +05:30
|
|
|
end
|
2021-04-17 20:07:23 +05:30
|
|
|
|
|
|
|
context 'org' do
|
|
|
|
before do
|
2021-09-04 01:27:46 +05:30
|
|
|
stub_config_setting(url: Gitlab::Saas.dev_url)
|
2021-04-17 20:07:23 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
include_examples 'contains environment', 'org'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'other self-managed instance' do
|
|
|
|
before do
|
|
|
|
stub_rails_env('production')
|
|
|
|
end
|
|
|
|
|
|
|
|
include_examples 'contains environment', 'self-managed'
|
|
|
|
end
|
2021-03-08 18:12:59 +05:30
|
|
|
end
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
it 'contains source' do
|
|
|
|
expect(snowplow_context.to_json.dig(:data, :source)).to eq(described_class::GITLAB_RAILS_SOURCE)
|
|
|
|
end
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
it 'contains context_generated_at timestamp', :freeze_time do
|
|
|
|
expect(snowplow_context.to_json.dig(:data, :context_generated_at)).to eq(Time.current)
|
|
|
|
end
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
context 'plan' do
|
|
|
|
context 'when namespace is not available' do
|
|
|
|
it 'is nil' do
|
|
|
|
expect(snowplow_context.to_json.dig(:data, :plan)).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when namespace is available' do
|
|
|
|
subject { described_class.new(namespace: create(:namespace)) }
|
|
|
|
|
|
|
|
it 'contains plan name' do
|
|
|
|
expect(snowplow_context.to_json.dig(:data, :plan)).to eq(Plan::DEFAULT)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
context 'with extra data' do
|
2021-04-29 21:17:54 +05:30
|
|
|
subject { described_class.new(extra_key_1: 'extra value 1', extra_key_2: 'extra value 2') }
|
2021-03-08 18:12:59 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
it 'includes extra data in `extra` hash' do
|
|
|
|
expect(snowplow_context.to_json.dig(:data, :extra)).to eq(extra_key_1: 'extra value 1', extra_key_2: 'extra value 2')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without extra data' do
|
|
|
|
it 'contains an empty `extra` hash' do
|
|
|
|
expect(snowplow_context.to_json.dig(:data, :extra)).to be_empty
|
2021-03-08 18:12:59 +05:30
|
|
|
end
|
|
|
|
end
|
2021-03-11 19:13:27 +05:30
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
it 'contains user id' do
|
|
|
|
expect(snowplow_context.to_json[:data].keys).to include(:user_id)
|
2021-11-11 11:23:49 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains namespace and project ids' do
|
|
|
|
expect(snowplow_context.to_json[:data].keys).to include(:project_id, :namespace_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts just project id as integer' do
|
|
|
|
expect { described_class.new(project: 1).to_context }.not_to raise_error
|
|
|
|
end
|
2021-03-08 18:12:59 +05:30
|
|
|
end
|
|
|
|
end
|