summaryrefslogtreecommitdiff
path: root/spec/gitlab_metrics_spec.rb
blob: 07be6708a9f79269a4f7e80a0de9f8810ad70ac5 (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
require_relative 'spec_helper'
require_relative '../lib/gitlab_metrics'

describe GitlabMetrics do
  describe '.measure' do
    it 'returns the return value of the block' do
      val = described_class.measure('foo') { 10 }

      expect(val).to eq(10)
    end

    it 'writes the metrics data to a log file' do
      expect(described_class.logger).to receive(:debug).
        with(/metrics: name=\"foo\" wall_time=\d+ cpu_time=\d+/)

      described_class.measure('foo') { 10 }
    end

    it 'calls proper measure methods' do
      expect(described_class::System).to receive(:monotonic_time).twice.and_call_original
      expect(described_class::System).to receive(:cpu_time).twice.and_call_original

      described_class.measure('foo') { 10 }
    end
  end
end