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

metrics_spec.rb « import « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0799d19fcef426a92550f776fcaa71f74720b092 (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
55
56
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Import::Metrics do
  let(:importer_stub) do
    Class.new do
      prepend Gitlab::Import::Metrics

      Gitlab::Import::Metrics.measure :execute, metrics: {
        importer_counter:   {
          type: :counter,
          description: 'description'
        },
        importer_histogram: {
          type: :histogram,
          labels: { importer: 'importer' },
          description: 'description'
        }
      }

      def execute
        true
      end
    end
  end

  subject { importer_stub.new.execute }

  describe '#execute' do
    let(:counter) { double(:counter) }
    let(:histogram) { double(:histogram) }

    it 'increments counter metric' do
      expect(Gitlab::Metrics)
        .to receive(:counter)
              .with(:importer_counter, 'description')
              .and_return(counter)

      expect(counter).to receive(:increment)

      subject
    end

    it 'measures method duration and reports histogram metric' do
      expect(Gitlab::Metrics)
        .to receive(:histogram)
              .with(:importer_histogram, 'description')
              .and_return(histogram)

      expect(histogram).to receive(:observe).with({ importer: 'importer' }, anything)

      subject
    end
  end
end