summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/sidekiq_throttler_spec.rb
blob: ac4a64c0f43d9af7217480c73c6912613545ecf7 (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
require 'spec_helper'

describe Gitlab::SidekiqThrottler do
  before do
    Sidekiq.options[:concurrency] = 35

    stub_application_setting(
      sidekiq_throttling_enabled: true,
      sidekiq_throttling_factor: 0.1,
      sidekiq_throttling_queues: %w[build project_cache]
    )
  end

  describe '#set_limit' do
    it 'returns the correct limit' do
      expect(Gitlab::SidekiqThrottler.send(:set_limit)).to eq 4
    end
  end

  describe '#execute!' do
    it 'sets limits on the selected queues' do
      Gitlab::SidekiqThrottler.execute!

      expect(Sidekiq::Queue['build'].limit).to eq 4
      expect(Sidekiq::Queue['project_cache'].limit).to eq 4
    end

    it 'does not set limits on other queues' do
      Gitlab::SidekiqThrottler.execute!

      expect(Sidekiq::Queue['merge'].limit).to be_nil
    end
  end
end