summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/metrics/sidekiq_middleware_spec.rb
blob: ae1d8b47fe93e370efef54728428f04efbb43ffd (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
require 'spec_helper'

describe Gitlab::Metrics::SidekiqMiddleware do
  let(:middleware) { described_class.new }
  let(:message) { { 'args' => ['test'], 'enqueued_at' => Time.new(2016, 6, 23, 6, 59).to_f } }

  describe '#call' do
    it 'tracks the transaction' do
      worker = double(:worker, class: double(:class, name: 'TestWorker'))

      expect(Gitlab::Metrics::BackgroundTransaction).to receive(:new)
        .with(worker.class)
        .and_call_original

      expect_any_instance_of(Gitlab::Metrics::Transaction).to receive(:set)
        .with(:sidekiq_queue_duration, instance_of(Float))

      expect_any_instance_of(Gitlab::Metrics::Transaction).to receive(:finish)

      middleware.call(worker, message, :test) { nil }
    end

    it 'tracks the transaction (for messages without `enqueued_at`)' do
      worker = double(:worker, class: double(:class, name: 'TestWorker'))

      expect(Gitlab::Metrics::BackgroundTransaction).to receive(:new)
        .with(worker.class)
        .and_call_original

      expect_any_instance_of(Gitlab::Metrics::Transaction).to receive(:set)
        .with(:sidekiq_queue_duration, instance_of(Float))

      expect_any_instance_of(Gitlab::Metrics::Transaction).to receive(:finish)

      middleware.call(worker, {}, :test) { nil }
    end

    it 'tracks any raised exceptions' do
      worker = double(:worker, class: double(:class, name: 'TestWorker'))

      expect_any_instance_of(Gitlab::Metrics::Transaction)
        .to receive(:run).and_raise(RuntimeError)

      expect_any_instance_of(Gitlab::Metrics::Transaction)
        .to receive(:add_event).with(:sidekiq_exception)

      expect_any_instance_of(Gitlab::Metrics::Transaction)
        .to receive(:finish)

      expect { middleware.call(worker, message, :test) }
        .to raise_error(RuntimeError)
    end
  end
end