summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/rugged_instrumentation_spec.rb
blob: 393bb957abae32e8ed77a4ca84c21e0f838ac4a5 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::RuggedInstrumentation, :request_store do
  subject { described_class }

  describe '.query_time' do
    it 'increments query times' do
      subject.add_query_time(0.4510004)
      subject.add_query_time(0.3220004)

      expect(subject.query_time).to eq(0.773001)
      expect(subject.query_time_ms).to eq(773.0)
    end
  end

  describe '.increment_query_count' do
    it 'tracks query counts' do
      expect(subject.query_count).to eq(0)

      2.times { subject.increment_query_count }

      expect(subject.query_count).to eq(2)
    end
  end
end