summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/runner/metrics_spec.rb
blob: 3c459271092060d802f0b629291ce6815fe07b32 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Ci::Runner::Metrics, :prometheus do
  subject { described_class.new }

  describe '#increment_runner_authentication_success_counter' do
    it 'increments count for same type' do
      expect { subject.increment_runner_authentication_success_counter(runner_type: 'instance_type') }
        .to change { described_class.runner_authentication_success_counter.get(runner_type: 'instance_type') }.by(1)
    end

    it 'does not increment count for different type' do
      expect { subject.increment_runner_authentication_success_counter(runner_type: 'group_type') }
        .to not_change { described_class.runner_authentication_success_counter.get(runner_type: 'project_type') }
    end

    it 'does not increment failure count' do
      expect { subject.increment_runner_authentication_success_counter(runner_type: 'project_type') }
        .to not_change { described_class.runner_authentication_failure_counter.get }
    end

    it 'throws ArgumentError for invalid runner type' do
      expect { subject.increment_runner_authentication_success_counter(runner_type: 'unknown_type') }
        .to raise_error(ArgumentError, 'unknown runner type: unknown_type')
    end
  end

  describe '#increment_runner_authentication_failure_counter' do
    it 'increments count' do
      expect { subject.increment_runner_authentication_failure_counter }
        .to change { described_class.runner_authentication_failure_counter.get }.by(1)
    end

    it 'does not increment success count' do
      expect { subject.increment_runner_authentication_failure_counter }
        .to not_change { described_class.runner_authentication_success_counter.get(runner_type: 'instance_type') }
    end
  end
end