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