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

configuration_spec.rb « watchdog « memory « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9242344ead2f76e3c2572449c7983f1d5409d36b (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# frozen_string_literal: true

require 'fast_spec_helper'
require_dependency 'gitlab/cluster/lifecycle_events'

RSpec.describe Gitlab::Memory::Watchdog::Configuration do
  subject(:configuration) { described_class.new }

  describe '#initialize' do
    it 'initialize monitors' do
      expect(configuration.monitors).to be_an_instance_of(described_class::MonitorStack)
    end
  end

  describe '#handler' do
    context 'when handler is not set' do
      it 'defaults to NullHandler' do
        expect(configuration.handler).to be(Gitlab::Memory::Watchdog::NullHandler.instance)
      end
    end
  end

  describe '#event_reporter' do
    context 'when event reporter is not set' do
      before do
        allow(Gitlab::Metrics).to receive(:counter)
      end

      it 'defaults to EventReporter' do
        expect(configuration.event_reporter).to be_an_instance_of(::Gitlab::Memory::Watchdog::EventReporter)
      end
    end
  end

  describe '#sleep_time_seconds' do
    context 'when sleep_time_seconds is not set' do
      it 'defaults to SLEEP_TIME_SECONDS' do
        expect(configuration.sleep_time_seconds).to eq(described_class::DEFAULT_SLEEP_TIME_SECONDS)
      end
    end
  end

  describe '#monitors' do
    context 'when monitors are configured to be used' do
      let(:monitor_name1) { :monitor1 }
      let(:monitor_name2) { :monitor2 }
      let(:payload1) do
        {
          message: 'monitor_1_text',
          memwd_max_strikes: 5,
          memwd_cur_strikes: 0
        }
      end

      let(:payload2) do
        {
          message: 'monitor_2_text',
          memwd_max_strikes: 0,
          memwd_cur_strikes: 1
        }
      end

      let(:monitor_class_1) do
        Struct.new(:threshold_violated, :payload) do
          def call
            { threshold_violated: !!threshold_violated, payload: payload || {} }
          end

          def self.name
            'Monitor1'
          end
        end
      end

      let(:monitor_class_2) do
        Struct.new(:threshold_violated, :payload) do
          def call
            { threshold_violated: !!threshold_violated, payload: payload || {} }
          end

          def self.name
            'Monitor2'
          end
        end
      end

      context 'when two different monitor class are configured' do
        shared_examples 'executes monitors and returns correct results' do
          it 'calls each monitor and returns correct results', :aggregate_failures do
            payloads = []
            thresholds = []
            strikes = []
            monitor_names = []

            configuration.monitors.call_each do |result|
              payloads << result.payload
              thresholds << result.threshold_violated?
              strikes << result.strikes_exceeded?
              monitor_names << result.monitor_name
            end

            expect(payloads).to eq([payload1, payload2])
            expect(thresholds).to eq([false, true])
            expect(strikes).to eq([false, true])
            expect(monitor_names).to eq([monitor_name1, monitor_name2])
          end

          it 'monitors are not empty' do
            expect(configuration.monitors).not_to be_empty
          end
        end

        context 'when monitors are not configured' do
          it 'monitors are empty' do
            expect(configuration.monitors).to be_empty
          end
        end

        context 'when monitors are configured inline' do
          before do
            configuration.monitors.push monitor_class_1, false, { message: 'monitor_1_text' }, max_strikes: 5
            configuration.monitors.push monitor_class_2, true, { message: 'monitor_2_text' }, max_strikes: 0
          end

          include_examples 'executes monitors and returns correct results'
        end

        context 'when monitors are configured in a block' do
          before do
            configuration.monitors do |stack|
              stack.push monitor_class_1, false, { message: 'monitor_1_text' }, max_strikes: 5
              stack.push monitor_class_2, true, { message: 'monitor_2_text' }, max_strikes: 0
            end
          end

          include_examples 'executes monitors and returns correct results'
        end

        context 'when monitors are configured with monitor name' do
          let(:monitor_name1) { :mon_one }
          let(:monitor_name2) { :mon_two }

          before do
            configuration.monitors do |stack|
              stack.push monitor_class_1, false, { message: 'monitor_1_text' }, max_strikes: 5, monitor_name: :mon_one
              stack.push monitor_class_2, true, { message: 'monitor_2_text' }, max_strikes: 0, monitor_name: :mon_two
            end
          end

          include_examples 'executes monitors and returns correct results'
        end
      end
    end
  end
end