2019-08-28 02:52:14 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 14:09:03 -04:00
|
|
|
RSpec.describe Gitlab::Tracking do
|
2021-11-09 01:13:00 -05:00
|
|
|
include StubENV
|
|
|
|
|
2019-08-28 02:52:14 -04:00
|
|
|
before do
|
|
|
|
stub_application_setting(snowplow_enabled: true)
|
|
|
|
stub_application_setting(snowplow_collector_hostname: 'gitfoo.com')
|
|
|
|
stub_application_setting(snowplow_cookie_domain: '.gitfoo.com')
|
2019-11-08 16:06:38 -05:00
|
|
|
stub_application_setting(snowplow_app_id: '_abc123_')
|
2020-11-04 10:08:41 -05:00
|
|
|
|
|
|
|
described_class.instance_variable_set("@snowplow", nil)
|
2019-08-28 02:52:14 -04:00
|
|
|
end
|
|
|
|
|
2021-09-09 08:09:09 -04:00
|
|
|
describe '.options' do
|
2021-11-09 01:13:00 -05:00
|
|
|
shared_examples 'delegates to destination' do |klass|
|
|
|
|
before do
|
|
|
|
allow_next_instance_of(klass) do |instance|
|
|
|
|
allow(instance).to receive(:options).and_call_original
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "delegates to #{klass} destination" do
|
|
|
|
expect_next_instance_of(klass) do |instance|
|
|
|
|
expect(instance).to receive(:options)
|
|
|
|
end
|
|
|
|
|
|
|
|
subject.options(nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when destination is Snowplow' do
|
|
|
|
it_behaves_like 'delegates to destination', Gitlab::Tracking::Destinations::Snowplow
|
|
|
|
|
|
|
|
it 'returns useful client options' do
|
|
|
|
expected_fields = {
|
|
|
|
namespace: 'gl',
|
|
|
|
hostname: 'gitfoo.com',
|
|
|
|
cookieDomain: '.gitfoo.com',
|
|
|
|
appId: '_abc123_',
|
|
|
|
formTracking: true,
|
|
|
|
linkClickTracking: true
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(subject.options(nil)).to match(expected_fields)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when destination is SnowplowMicro' do
|
|
|
|
before do
|
|
|
|
stub_env('SNOWPLOW_MICRO_ENABLE', '1')
|
|
|
|
allow(Rails.env).to receive(:development?).and_return(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'delegates to destination', Gitlab::Tracking::Destinations::SnowplowMicro
|
|
|
|
|
|
|
|
it 'returns useful client options' do
|
|
|
|
expected_fields = {
|
|
|
|
namespace: 'gl',
|
|
|
|
hostname: 'localhost:9090',
|
|
|
|
cookieDomain: '.gitlab.com',
|
|
|
|
appId: '_abc123_',
|
|
|
|
protocol: 'http',
|
|
|
|
port: 9090,
|
2021-11-22 22:12:38 -05:00
|
|
|
forceSecureTracker: false,
|
2021-11-09 01:13:00 -05:00
|
|
|
formTracking: true,
|
|
|
|
linkClickTracking: true
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(subject.options(nil)).to match(expected_fields)
|
|
|
|
end
|
2019-08-28 02:52:14 -04:00
|
|
|
end
|
|
|
|
|
2020-05-29 14:08:26 -04:00
|
|
|
it 'when feature flag is disabled' do
|
|
|
|
stub_feature_flags(additional_snowplow_tracking: false)
|
|
|
|
|
2021-09-09 08:09:09 -04:00
|
|
|
expect(subject.options(nil)).to include(
|
2019-09-18 10:02:45 -04:00
|
|
|
formTracking: false,
|
|
|
|
linkClickTracking: false
|
2020-05-29 14:08:26 -04:00
|
|
|
)
|
2019-08-28 02:52:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-04 10:08:41 -05:00
|
|
|
describe '.event' do
|
2021-04-26 17:10:25 -04:00
|
|
|
let(:namespace) { create(:namespace) }
|
|
|
|
|
2021-01-14 22:10:30 -05:00
|
|
|
shared_examples 'delegates to destination' do |klass|
|
2021-03-17 08:09:19 -04:00
|
|
|
before do
|
|
|
|
allow_any_instance_of(Gitlab::Tracking::Destinations::Snowplow).to receive(:event)
|
|
|
|
end
|
|
|
|
|
2021-02-11 16:09:00 -05:00
|
|
|
it "delegates to #{klass} destination" do
|
|
|
|
other_context = double(:context)
|
2019-08-28 02:52:14 -04:00
|
|
|
|
2021-08-20 11:10:24 -04:00
|
|
|
project = build_stubbed(:project)
|
2021-10-06 11:11:48 -04:00
|
|
|
user = build_stubbed(:user)
|
2020-11-21 01:09:33 -05:00
|
|
|
|
2021-02-11 16:09:00 -05:00
|
|
|
expect(Gitlab::Tracking::StandardContext)
|
|
|
|
.to receive(:new)
|
2021-04-01 08:08:56 -04:00
|
|
|
.with(project: project, user: user, namespace: namespace, extra_key_1: 'extra value 1', extra_key_2: 'extra value 2')
|
2021-02-11 16:09:00 -05:00
|
|
|
.and_call_original
|
2020-11-21 01:09:33 -05:00
|
|
|
|
2021-02-11 16:09:00 -05:00
|
|
|
expect_any_instance_of(klass).to receive(:event) do |_, category, action, args|
|
|
|
|
expect(category).to eq('category')
|
|
|
|
expect(action).to eq('action')
|
|
|
|
expect(args[:label]).to eq('label')
|
|
|
|
expect(args[:property]).to eq('property')
|
|
|
|
expect(args[:value]).to eq(1.5)
|
|
|
|
expect(args[:context].length).to eq(2)
|
2021-03-12 10:09:33 -05:00
|
|
|
expect(args[:context].first.to_json[:schema]).to eq(Gitlab::Tracking::StandardContext::GITLAB_STANDARD_SCHEMA_URL)
|
|
|
|
expect(args[:context].last).to eq(other_context)
|
2021-01-14 22:10:30 -05:00
|
|
|
end
|
2021-02-11 16:09:00 -05:00
|
|
|
|
|
|
|
described_class.event('category', 'action', label: 'label', property: 'property', value: 1.5,
|
2021-04-01 08:08:56 -04:00
|
|
|
context: [other_context], project: project, user: user, namespace: namespace,
|
|
|
|
extra_key_1: 'extra value 1', extra_key_2: 'extra value 2')
|
2021-01-14 22:10:30 -05:00
|
|
|
end
|
2020-11-21 01:09:33 -05:00
|
|
|
end
|
2021-01-14 22:10:30 -05:00
|
|
|
|
2021-11-09 01:13:00 -05:00
|
|
|
context 'when destination is Snowplow' do
|
|
|
|
before do
|
|
|
|
stub_env('SNOWPLOW_MICRO_ENABLE', '0')
|
|
|
|
allow(Rails.env).to receive(:development?).and_return(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'delegates to destination', Gitlab::Tracking::Destinations::Snowplow
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when destination is SnowplowMicro' do
|
|
|
|
before do
|
|
|
|
stub_env('SNOWPLOW_MICRO_ENABLE', '1')
|
|
|
|
allow(Rails.env).to receive(:development?).and_return(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'delegates to destination', Gitlab::Tracking::Destinations::SnowplowMicro
|
|
|
|
end
|
2021-03-17 08:09:19 -04:00
|
|
|
|
|
|
|
it 'tracks errors' do
|
|
|
|
expect(Gitlab::ErrorTracking).to receive(:track_and_raise_for_dev_exception).with(
|
|
|
|
an_instance_of(ContractError),
|
|
|
|
snowplow_category: nil, snowplow_action: 'some_action'
|
|
|
|
)
|
|
|
|
|
|
|
|
described_class.event(nil, 'some_action')
|
|
|
|
end
|
2020-11-04 10:08:41 -05:00
|
|
|
end
|
2019-08-28 02:52:14 -04:00
|
|
|
end
|