summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/controllers/unique_visits_shared_examples.rb
blob: 3f97c031e27a3e7abfa659bd4d9f09a283e44a40 (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
# frozen_string_literal: true

RSpec.shared_examples 'tracking unique visits' do |method|
  let(:request_params) { {} }

  it 'tracks unique visit if the format is HTML' do
    expect(Gitlab::UsageDataCounters::HLLRedisCounter)
      .to receive(:track_event).with(target_id, values: kind_of(String))

    get method, params: request_params, format: :html
  end

  it 'tracks unique visit if DNT is not enabled' do
    expect(Gitlab::UsageDataCounters::HLLRedisCounter)
      .to receive(:track_event).with(target_id, values: kind_of(String))

    request.headers['DNT'] = '0'

    get method, params: request_params, format: :html
  end

  it 'does not track unique visit if DNT is enabled' do
    expect(Gitlab::UsageDataCounters::HLLRedisCounter).not_to receive(:track_event)
    request.headers['DNT'] = '1'

    get method, params: request_params, format: :html
  end

  it 'does not track unique visit if the format is JSON' do
    expect(Gitlab::UsageDataCounters::HLLRedisCounter).not_to receive(:track_event)

    get method, params: request_params, format: :json
  end
end