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

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

require 'spec_helper'

RSpec.describe Gitlab::SidekiqMiddleware::SkipJobs, feature_category: :scalability do
  let(:job) { { 'jid' => 123, 'args' => [456] } }
  let(:queue) { 'test_queue' }
  let(:worker) do
    Class.new do
      def self.name
        'TestWorker'
      end
      include ApplicationWorker
    end
  end

  subject { described_class.new }

  before do
    stub_const('TestWorker', worker)
    stub_feature_flags("drop_sidekiq_jobs_#{TestWorker.name}": false)
  end

  describe '#call' do
    context 'with worker not opted for database health check' do
      describe "with all combinations of drop and defer FFs" do
        using RSpec::Parameterized::TableSyntax

        let(:metric) { instance_double(Prometheus::Client::Counter, increment: true) }

        shared_examples 'runs the job normally' do
          it 'yields control' do
            expect { |b| subject.call(TestWorker.new, job, queue, &b) }.to yield_control
          end

          it 'does not increment any metric counter' do
            expect(metric).not_to receive(:increment)

            subject.call(TestWorker.new, job, queue) { nil }
          end

          it 'does not increment deferred_count' do
            subject.call(TestWorker.new, job, queue) { nil }

            expect(job).not_to include('deferred_count')
          end
        end

        shared_examples 'drops the job' do
          it 'does not yield control' do
            expect { |b| subject.call(TestWorker.new, job, queue, &b) }.not_to yield_control
          end

          it 'increments counter' do
            expect(metric).to receive(:increment).with({ worker: "TestWorker", action: "dropped" })

            subject.call(TestWorker.new, job, queue) { nil }
          end

          it 'does not increment deferred_count' do
            subject.call(TestWorker.new, job, queue) { nil }

            expect(job).not_to include('deferred_count')
          end

          it 'has dropped field in job equal to true' do
            subject.call(TestWorker.new, job, queue) { nil }

            expect(job).to include({ 'dropped' => true })
          end
        end

        shared_examples 'defers the job' do
          it 'does not yield control' do
            expect { |b| subject.call(TestWorker.new, job, queue, &b) }.not_to yield_control
          end

          it 'delays the job' do
            expect(TestWorker).to receive(:perform_in).with(described_class::DELAY, *job['args'])

            subject.call(TestWorker.new, job, queue) { nil }
          end

          it 'increments counter' do
            expect(metric).to receive(:increment).with({ worker: "TestWorker", action: "deferred" })

            subject.call(TestWorker.new, job, queue) { nil }
          end

          it 'has deferred related fields in job payload' do
            subject.call(TestWorker.new, job, queue) { nil }

            expect(job).to include({ 'deferred' => true, 'deferred_by' => :feature_flag, 'deferred_count' => 1 })
          end
        end

        before do
          stub_feature_flags("drop_sidekiq_jobs_#{TestWorker.name}": drop_ff)
          stub_feature_flags("run_sidekiq_jobs_#{TestWorker.name}": run_ff)
          allow(Gitlab::Metrics).to receive(:counter).and_call_original
          allow(Gitlab::Metrics).to receive(:counter).with(described_class::COUNTER, anything).and_return(metric)
        end

        where(:drop_ff, :run_ff, :resulting_behavior) do
          false | true  | "runs the job normally"
          true  | true  | "drops the job"
          false | false | "defers the job"
          true  | false | "drops the job"
        end

        with_them do
          it_behaves_like params[:resulting_behavior]
        end
      end
    end

    context 'with worker opted for database health check' do
      let(:health_signal_attrs) { { gitlab_schema: :gitlab_main, tables: [:users], delay: 1.minute } }

      around do |example|
        with_sidekiq_server_middleware do |chain|
          chain.add described_class
          Sidekiq::Testing.inline! { example.run }
        end
      end

      before do
        TestWorker.defer_on_database_health_signal(*health_signal_attrs.values)
      end

      context 'without any stop signal from database health check' do
        it 'runs the job normally' do
          expect { |b| subject.call(TestWorker.new, job, queue, &b) }.to yield_control
        end
      end

      context 'with stop signal from database health check' do
        before do
          stop_signal = instance_double("Gitlab::Database::HealthStatus::Signals::Stop", stop?: true)
          allow(Gitlab::Database::HealthStatus).to receive(:evaluate).and_return([stop_signal])
        end

        it 'defers the job by set time' do
          expect(TestWorker).to receive(:perform_in).with(health_signal_attrs[:delay], *job['args'])

          TestWorker.perform_async(*job['args'])
        end
      end
    end
  end
end