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

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

require 'spec_helper'

RSpec.describe Gitlab::PerformanceBar::Stats do
  describe '#process' do
    let(:request) { fixture_file('lib/gitlab/performance_bar/peek_data.json') }
    let(:redis) { double(Gitlab::Redis::SharedState) }
    let(:logger) { double(Gitlab::PerformanceBar::Logger) }
    let(:request_id) { 'foo' }
    let(:stats) { described_class.new(redis) }

    describe '#process' do
      subject(:process) { stats.process(request_id) }

      before do
        allow(stats).to receive(:logger).and_return(logger)
      end

      it 'logs each SQL query including its duration' do
        allow(redis).to receive(:get).and_return(request)

        expect(logger).to receive(:info)
          .with({ duration_ms: 1.096, filename: 'lib/gitlab/pagination/offset_pagination.rb',
                  filenum: 53, method: 'add_pagination_headers', request_id: 'foo', type: :sql })
        expect(logger).to receive(:info)
          .with({ duration_ms: 0.817, filename: 'lib/api/helpers.rb',
                  filenum: 112, method: 'find_project', request_id: 'foo', type: :sql }).twice

        subject
      end

      it 'logs an error when the request could not be processed' do
        allow(redis).to receive(:get).and_return(nil)

        expect(logger).to receive(:error).with(message: anything)

        subject
      end
    end
  end
end