Welcome to mirror list, hosted at ThFree Co, Russian Federation.

snowplow_event_tracking_examples.rb « controllers « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 98fc52add5174d744958b1f430e1cb6898587185 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true
#
# Requires a context containing:
# - subject
# - project
# - feature_flag_name
# - category
# - action
# - namespace
# - user

shared_examples 'Snowplow event tracking' do
  let(:label) { nil }

  it 'is not emitted if FF is disabled' do
    stub_feature_flags(feature_flag_name => false)

    subject

    expect_no_snowplow_event
  end

  it 'is emitted' do
    params = {
      category: category,
      action: action,
      namespace: namespace,
      user: user,
      project: project,
      label: label
    }.compact

    subject

    expect_snowplow_event(**params)
  end
end