Files
gitlab-ce/spec/sidekiq_cluster/sidekiq_cluster_spec.rb
2025-04-07 15:14:18 +00:00

103 lines
3.5 KiB
Ruby

# frozen_string_literal: true
require 'rspec-parameterized'
require_relative '../../sidekiq_cluster/sidekiq_cluster'
RSpec.describe Gitlab::SidekiqCluster do # rubocop:disable RSpec/SpecFilePathFormat
describe '.start' do
it 'starts Sidekiq with the given queues, environment and options' do
process_options = {
pgroup: true,
err: $stderr,
out: $stdout
}
expect(Bundler).to receive(:with_original_env).and_call_original.twice
expect(Process).to receive(:spawn).ordered.with(
{
"ENABLE_SIDEKIQ_CLUSTER" => "1",
"SIDEKIQ_WORKER_ID" => "0"
},
"bundle", "exec", "sidekiq", "-c20", "-eproduction", "-t25", "-gqueues:foo", "-rfoo/bar", "-qfoo,1", process_options
).and_return(1)
expect(Process).to receive(:detach).ordered.with(1)
expect(Process).to receive(:spawn).ordered.with(
{
"ENABLE_SIDEKIQ_CLUSTER" => "1",
"SIDEKIQ_WORKER_ID" => "1"
},
"bundle", "exec", "sidekiq", "-c20", "-eproduction", "-t25", "-gqueues:bar,baz", "-rfoo/bar", "-qbar,1", "-qbaz,1", process_options
).and_return(2)
expect(Process).to receive(:detach).ordered.with(2)
described_class.start([%w[foo], %w[bar baz]], env: :production, directory: 'foo/bar', concurrency: 20)
end
it 'starts Sidekiq with the given queues and sensible default options' do
expected_options = {
env: :development,
directory: an_instance_of(String),
worker_id: an_instance_of(Integer),
timeout: 25,
dryrun: false,
concurrency: 20
}
expect(described_class).to receive(:start_sidekiq).ordered.with(%w[foo bar baz], expected_options)
expect(described_class).to receive(:start_sidekiq).ordered.with(%w[solo], expected_options)
described_class.start([%w[foo bar baz], %w[solo]])
end
end
describe '.start_sidekiq' do
let(:first_worker_id) { 0 }
let(:options) do
{ env: :production, directory: 'foo/bar', worker_id: first_worker_id, timeout: 10, dryrun: false, concurrency: 20 }
end
let(:env) { { "ENABLE_SIDEKIQ_CLUSTER" => "1", "SIDEKIQ_WORKER_ID" => first_worker_id.to_s } }
let(:args) { ['bundle', 'exec', 'sidekiq', anything, '-eproduction', '-t10', *([anything] * 5)] }
let(:waiter_thread) { instance_double('Process::Waiter') }
it 'starts a Sidekiq process' do
allow(Process).to receive(:spawn).and_return(1)
allow(Process).to receive(:detach).with(1).and_return(waiter_thread)
expect(described_class.start_sidekiq(%w[foo], **options)).to eq(waiter_thread)
end
it 'handles duplicate queue names' do
allow(Process)
.to receive(:spawn)
.with(env, *args, anything)
.and_return(1)
allow(Process).to receive(:detach).with(1).and_return(waiter_thread)
expect(described_class.start_sidekiq(%w[foo foo bar baz], **options)).to eq(waiter_thread)
end
it 'runs the sidekiq process in a new process group' do
expect(Process)
.to receive(:spawn)
.with(anything, *args, a_hash_including(pgroup: true))
.and_return(1)
allow(Process).to receive(:detach).with(1).and_return(waiter_thread)
expect(described_class.start_sidekiq(%w[foo bar baz], **options)).to eq(waiter_thread)
end
end
describe '.count_by_queue' do
it 'tallies the queue counts' do
queues = [%w[foo], %w[bar baz], %w[foo]]
expect(described_class.count_by_queue(queues)).to eq(%w[foo] => 2, %w[bar baz] => 1)
end
end
end