summaryrefslogtreecommitdiff
path: root/spec/support/snowplow.rb
blob: 58812b8f4e69573c45610778eb990d0ad6507e13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

RSpec.configure do |config|
  config.before(:each, :snowplow) do
    # Using a high buffer size to not cause early flushes
    buffer_size = 100
    # WebMock is set up to allow requests to `localhost`
    host = 'localhost'

    allow(Gitlab::Tracking)
      .to receive(:emitter)
      .and_return(SnowplowTracker::Emitter.new(host, buffer_size: buffer_size))

    stub_application_setting(snowplow_enabled: true)

    allow(Gitlab::Tracking).to receive(:event).and_call_original
  end

  config.after(:each, :snowplow) do
    Gitlab::Tracking.send(:snowplow).flush
  end
end