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

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

require 'spec_helper'

RSpec.describe Gitlab::Database::HealthStatus::Signals, feature_category: :database do
  shared_examples 'health status signal' do |subclass, stop_signal, log_signal|
    let(:indicator) { instance_double('Gitlab::Database::HealthStatus::Indicators::PatroniApdex') }
    let(:reason) { 'Test reason' }

    subject { subclass.new(indicator, reason: reason) }

    describe '#log_info?' do
      it 'returns the log signal' do
        expect(subject.log_info?).to eq(log_signal)
      end
    end

    describe '#stop?' do
      it 'returns the stop signal' do
        expect(subject.stop?).to eq(stop_signal)
      end
    end
  end

  context 'with Stop signal it should stop and log' do
    it_behaves_like 'health status signal', described_class::Stop, true, true
  end

  context 'with Normal signal it should not stop and log' do
    it_behaves_like 'health status signal', described_class::Normal, false, false
  end

  context 'with NotAvailable signal it should not stop and log' do
    it_behaves_like 'health status signal', described_class::NotAvailable, false, false
  end

  context 'with Unknown signal it should only log and not stop' do
    it_behaves_like 'health status signal', described_class::Unknown, false, true
  end
end