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

cli_spec.rb « sidekiq_cluster « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43cbe71dd6b2a24a2302bb808abc9ca4d00e639f (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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
# frozen_string_literal: true

require 'fast_spec_helper'
require 'rspec-parameterized'

RSpec.describe Gitlab::SidekiqCluster::CLI do
  let(:cli) { described_class.new('/dev/null') }
  let(:timeout) { described_class::DEFAULT_SOFT_TIMEOUT_SECONDS }
  let(:default_options) do
    { env: 'test', directory: Dir.pwd, max_concurrency: 50, min_concurrency: 0, dryrun: false, timeout: timeout }
  end

  before do
    stub_env('RAILS_ENV', 'test')
  end

  describe '#run' do
    context 'without any arguments' do
      it 'raises CommandError' do
        expect { cli.run([]) }.to raise_error(described_class::CommandError)
      end
    end

    context 'with arguments' do
      before do
        allow(cli).to receive(:write_pid)
        allow(cli).to receive(:trap_signals)
        allow(cli).to receive(:start_loop)
      end

      it 'starts the Sidekiq workers' do
        expect(Gitlab::SidekiqCluster).to receive(:start)
                                            .with([['foo']], default_options)
                                            .and_return([])

        cli.run(%w(foo))
      end

      it 'allows the special * selector' do
        worker_queues = %w(foo bar baz)

        expect(Gitlab::SidekiqConfig::CliMethods)
          .to receive(:worker_queues).and_return(worker_queues)

        expect(Gitlab::SidekiqCluster)
          .to receive(:start).with([worker_queues], default_options)

        cli.run(%w(*))
      end

      context 'with --negate flag' do
        it 'starts Sidekiq workers for all queues in all_queues.yml except the ones in argv' do
          expect(Gitlab::SidekiqConfig::CliMethods).to receive(:worker_queues).and_return(['baz'])
          expect(Gitlab::SidekiqCluster).to receive(:start)
                                              .with([['baz']], default_options)
                                              .and_return([])

          cli.run(%w(foo -n))
        end
      end

      context 'with --max-concurrency flag' do
        it 'starts Sidekiq workers for specified queues with a max concurrency' do
          expect(Gitlab::SidekiqConfig::CliMethods).to receive(:worker_queues).and_return(%w(foo bar baz))
          expect(Gitlab::SidekiqCluster).to receive(:start)
                                              .with([%w(foo bar baz), %w(solo)], default_options.merge(max_concurrency: 2))
                                              .and_return([])

          cli.run(%w(foo,bar,baz solo -m 2))
        end
      end

      context 'with --min-concurrency flag' do
        it 'starts Sidekiq workers for specified queues with a min concurrency' do
          expect(Gitlab::SidekiqConfig::CliMethods).to receive(:worker_queues).and_return(%w(foo bar baz))
          expect(Gitlab::SidekiqCluster).to receive(:start)
                                              .with([%w(foo bar baz), %w(solo)], default_options.merge(min_concurrency: 2))
                                              .and_return([])

          cli.run(%w(foo,bar,baz solo --min-concurrency 2))
        end
      end

      context '-timeout flag' do
        it 'when given', 'starts Sidekiq workers with given timeout' do
          expect(Gitlab::SidekiqCluster).to receive(:start)
            .with([['foo']], default_options.merge(timeout: 10))

          cli.run(%w(foo --timeout 10))
        end

        it 'when not given', 'starts Sidekiq workers with default timeout' do
          expect(Gitlab::SidekiqCluster).to receive(:start)
            .with([['foo']], default_options.merge(timeout: described_class::DEFAULT_SOFT_TIMEOUT_SECONDS))

          cli.run(%w(foo))
        end
      end

      context 'queue namespace expansion' do
        it 'starts Sidekiq workers for all queues in all_queues.yml with a namespace in argv' do
          expect(Gitlab::SidekiqConfig::CliMethods).to receive(:worker_queues).and_return(['cronjob:foo', 'cronjob:bar'])
          expect(Gitlab::SidekiqCluster).to receive(:start)
                                              .with([['cronjob', 'cronjob:foo', 'cronjob:bar']], default_options)
                                              .and_return([])

          cli.run(%w(cronjob))
        end
      end

      # Remove with https://gitlab.com/gitlab-com/gl-infra/scalability/-/issues/646
      context 'with --queue-selector and --experimental-queue-selector' do
        it 'errors' do
          expect(Gitlab::SidekiqCluster).not_to receive(:start)

          expect { cli.run(%w(--queue-selector name=foo --experimental-queue-selector name=bar)) }
            .to raise_error(described_class::CommandError)
        end
      end

      # Simplify with https://gitlab.com/gitlab-com/gl-infra/scalability/-/issues/646
      ['--queue-selector', '--experimental-queue-selector'].each do |flag|
        context "with #{flag}" do
          where do
            {
              'memory-bound queues' => {
                query: 'resource_boundary=memory',
                included_queues: %w(project_export),
                excluded_queues: %w(merge)
              },
              'memory- or CPU-bound queues' => {
                query: 'resource_boundary=memory,cpu',
                included_queues: %w(auto_merge:auto_merge_process project_export),
                excluded_queues: %w(merge)
              },
              'high urgency CI queues' => {
                query: 'feature_category=continuous_integration&urgency=high',
                included_queues: %w(pipeline_cache:expire_job_cache pipeline_cache:expire_pipeline_cache),
                excluded_queues: %w(merge)
              },
              'CPU-bound high urgency CI queues' => {
                query: 'feature_category=continuous_integration&urgency=high&resource_boundary=cpu',
                included_queues: %w(pipeline_cache:expire_pipeline_cache),
                excluded_queues: %w(pipeline_cache:expire_job_cache merge)
              },
              'CPU-bound high urgency non-CI queues' => {
                query: 'feature_category!=continuous_integration&urgency=high&resource_boundary=cpu',
                included_queues: %w(new_issue),
                excluded_queues: %w(pipeline_cache:expire_pipeline_cache)
              },
              'CI and SCM queues' => {
                query: 'feature_category=continuous_integration|feature_category=source_code_management',
                included_queues: %w(pipeline_cache:expire_job_cache merge),
                excluded_queues: %w(mailers)
              }
            }
          end

          with_them do
            it 'expands queues by attributes' do
              expect(Gitlab::SidekiqCluster).to receive(:start) do |queues, opts|
                expect(opts).to eq(default_options)
                expect(queues.first).to include(*included_queues)
                expect(queues.first).not_to include(*excluded_queues)

                []
              end

              cli.run(%W(#{flag} #{query}))
            end

            it 'works when negated' do
              expect(Gitlab::SidekiqCluster).to receive(:start) do |queues, opts|
                expect(opts).to eq(default_options)
                expect(queues.first).not_to include(*included_queues)
                expect(queues.first).to include(*excluded_queues)

                []
              end

              cli.run(%W(--negate #{flag} #{query}))
            end
          end

          it 'expands multiple queue groups correctly' do
            expect(Gitlab::SidekiqCluster)
              .to receive(:start)
                    .with([['chat_notification'], ['project_export']], default_options)
                    .and_return([])

            cli.run(%W(#{flag} feature_category=chatops&has_external_dependencies=true resource_boundary=memory&feature_category=importers))
          end

          it 'allows the special * selector' do
            worker_queues = %w(foo bar baz)

            expect(Gitlab::SidekiqConfig::CliMethods)
              .to receive(:worker_queues).and_return(worker_queues)

            expect(Gitlab::SidekiqCluster)
              .to receive(:start).with([worker_queues], default_options)

            cli.run(%W(#{flag} *))
          end

          it 'errors when the selector matches no queues' do
            expect(Gitlab::SidekiqCluster).not_to receive(:start)

            expect { cli.run(%W(#{flag} has_external_dependencies=true&has_external_dependencies=false)) }
              .to raise_error(described_class::CommandError)
          end

          it 'errors on an invalid query multiple queue groups correctly' do
            expect(Gitlab::SidekiqCluster).not_to receive(:start)

            expect { cli.run(%W(#{flag} unknown_field=chatops)) }
              .to raise_error(Gitlab::SidekiqConfig::WorkerMatcher::QueryError)
          end
        end
      end
    end
  end

  describe '#write_pid' do
    context 'when a PID is specified' do
      it 'writes the PID to a file' do
        expect(Gitlab::SidekiqCluster).to receive(:write_pid).with('/dev/null')

        cli.option_parser.parse!(%w(-P /dev/null))
        cli.write_pid
      end
    end

    context 'when no PID is specified' do
      it 'does not write a PID' do
        expect(Gitlab::SidekiqCluster).not_to receive(:write_pid)

        cli.write_pid
      end
    end
  end

  describe '#wait_for_termination' do
    it 'waits for termination of all sub-processes and succeeds after 3 checks' do
      expect(Gitlab::SidekiqCluster).to receive(:any_alive?)
        .with(an_instance_of(Array)).and_return(true, true, true, false)

      expect(Gitlab::SidekiqCluster).to receive(:pids_alive)
        .with([]).and_return([])

      expect(Gitlab::SidekiqCluster).to receive(:signal_processes)
        .with([], "-KILL")

      stub_const("Gitlab::SidekiqCluster::CLI::CHECK_TERMINATE_INTERVAL_SECONDS", 0.1)
      allow(cli).to receive(:terminate_timeout_seconds) { 1 }

      cli.wait_for_termination
    end

    context 'with hanging workers' do
      before do
        expect(cli).to receive(:write_pid)
        expect(cli).to receive(:trap_signals)
        expect(cli).to receive(:start_loop)
      end

      it 'hard kills workers after timeout expires' do
        worker_pids = [101, 102, 103]
        expect(Gitlab::SidekiqCluster).to receive(:start)
                                            .with([['foo']], default_options)
                                            .and_return(worker_pids)

        expect(Gitlab::SidekiqCluster).to receive(:any_alive?)
          .with(worker_pids).and_return(true).at_least(10).times

        expect(Gitlab::SidekiqCluster).to receive(:pids_alive)
          .with(worker_pids).and_return([102])

        expect(Gitlab::SidekiqCluster).to receive(:signal_processes)
          .with([102], "-KILL")

        cli.run(%w(foo))

        stub_const("Gitlab::SidekiqCluster::CLI::CHECK_TERMINATE_INTERVAL_SECONDS", 0.1)
        allow(cli).to receive(:terminate_timeout_seconds) { 1 }

        cli.wait_for_termination
      end
    end
  end

  describe '#trap_signals' do
    it 'traps the termination and forwarding signals' do
      expect(Gitlab::SidekiqCluster).to receive(:trap_terminate)
      expect(Gitlab::SidekiqCluster).to receive(:trap_forward)

      cli.trap_signals
    end
  end

  describe '#start_loop' do
    it 'runs until one of the processes has been terminated' do
      allow(cli).to receive(:sleep).with(a_kind_of(Numeric))

      expect(Gitlab::SidekiqCluster).to receive(:all_alive?)
        .with(an_instance_of(Array)).and_return(false)

      expect(Gitlab::SidekiqCluster).to receive(:signal_processes)
        .with(an_instance_of(Array), :TERM)

      cli.start_loop
    end
  end
end