2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Reenqueuer do
|
2020-03-13 15:44:24 +05:30
|
|
|
include ExclusiveLeaseHelpers
|
|
|
|
|
|
|
|
let_it_be(:worker_class) do
|
|
|
|
Class.new do
|
|
|
|
def self.name
|
|
|
|
'Gitlab::Foo::Bar::DummyWorker'
|
|
|
|
end
|
|
|
|
|
|
|
|
include ApplicationWorker
|
|
|
|
prepend Reenqueuer
|
|
|
|
|
|
|
|
attr_reader :performed_args
|
|
|
|
|
|
|
|
def perform(*args)
|
|
|
|
@performed_args = args
|
|
|
|
|
|
|
|
success? # for stubbing
|
|
|
|
end
|
|
|
|
|
|
|
|
def success?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def lease_timeout
|
|
|
|
30.seconds
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
subject(:job) { worker_class.new }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(job).to receive(:sleep) # faster tests
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'reenqueuer'
|
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
it_behaves_like '#perform is rate limited to 1 call per', 5.seconds
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
it 'disables Sidekiq retries' do
|
|
|
|
expect(job.sidekiq_options_hash).to include('retry' => false)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#perform', :clean_gitlab_redis_shared_state do
|
|
|
|
let(:arbitrary_args) { [:foo, 'bar', { a: 1 }] }
|
|
|
|
|
|
|
|
context 'when the lease is available' do
|
|
|
|
it 'does perform' do
|
|
|
|
job.perform(*arbitrary_args)
|
|
|
|
|
|
|
|
expect(job.performed_args).to eq(arbitrary_args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the lease is taken' do
|
|
|
|
before do
|
|
|
|
stub_exclusive_lease_taken(job.lease_key)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not perform' do
|
|
|
|
job.perform(*arbitrary_args)
|
|
|
|
|
|
|
|
expect(job.performed_args).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when #perform returns truthy' do
|
|
|
|
before do
|
|
|
|
allow(job).to receive(:success?).and_return(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'reenqueues the worker' do
|
|
|
|
expect(worker_class).to receive(:perform_async)
|
|
|
|
|
|
|
|
job.perform
|
|
|
|
end
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
it 'returns the original value from #perform' do
|
|
|
|
expect(job.perform).to eq(true)
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when #perform returns falsey' do
|
|
|
|
it 'does not reenqueue the worker' do
|
|
|
|
expect(worker_class).not_to receive(:perform_async)
|
|
|
|
|
|
|
|
job.perform
|
|
|
|
end
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
it 'returns the original value from #perform' do
|
|
|
|
expect(job.perform).to eq(false)
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Reenqueuer::ReenqueuerSleeper do
|
2020-03-13 15:44:24 +05:30
|
|
|
let_it_be(:dummy_class) do
|
|
|
|
Class.new do
|
|
|
|
include Reenqueuer::ReenqueuerSleeper
|
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
def perform
|
2020-03-13 15:44:24 +05:30
|
|
|
ensure_minimum_duration(11.seconds) do
|
|
|
|
# do work
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
subject(:dummy) { dummy_class.new }
|
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
# Slightly higher-level test of ensure_minimum_duration since we conveniently
|
|
|
|
# already have this shared example anyway.
|
|
|
|
it_behaves_like '#perform is rate limited to 1 call per', 11.seconds
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
# Unit test ensure_minimum_duration
|
2020-03-13 15:44:24 +05:30
|
|
|
describe '#ensure_minimum_duration' do
|
|
|
|
around do |example|
|
|
|
|
# Allow Timecop.travel without the block form
|
|
|
|
Timecop.safe_mode = false
|
|
|
|
|
|
|
|
Timecop.freeze do
|
|
|
|
example.run
|
|
|
|
end
|
|
|
|
|
|
|
|
Timecop.safe_mode = true
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:minimum_duration) { 4.seconds }
|
|
|
|
|
|
|
|
context 'when the block completes well before the minimum duration' do
|
|
|
|
let(:time_left) { 3.seconds }
|
|
|
|
|
|
|
|
it 'sleeps until the minimum duration' do
|
|
|
|
expect(dummy).to receive(:sleep).with(a_value_within(0.01).of(time_left))
|
|
|
|
|
|
|
|
dummy.ensure_minimum_duration(minimum_duration) do
|
|
|
|
Timecop.travel(minimum_duration - time_left)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the block completes just before the minimum duration' do
|
|
|
|
let(:time_left) { 0.1.seconds }
|
|
|
|
|
|
|
|
it 'sleeps until the minimum duration' do
|
|
|
|
expect(dummy).to receive(:sleep).with(a_value_within(0.01).of(time_left))
|
|
|
|
|
|
|
|
dummy.ensure_minimum_duration(minimum_duration) do
|
|
|
|
Timecop.travel(minimum_duration - time_left)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the block completes just after the minimum duration' do
|
|
|
|
let(:time_over) { 0.1.seconds }
|
|
|
|
|
|
|
|
it 'does not sleep' do
|
|
|
|
expect(dummy).not_to receive(:sleep)
|
|
|
|
|
|
|
|
dummy.ensure_minimum_duration(minimum_duration) do
|
|
|
|
Timecop.travel(minimum_duration + time_over)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the block completes well after the minimum duration' do
|
|
|
|
let(:time_over) { 10.seconds }
|
|
|
|
|
|
|
|
it 'does not sleep' do
|
|
|
|
expect(dummy).not_to receive(:sleep)
|
|
|
|
|
|
|
|
dummy.ensure_minimum_duration(minimum_duration) do
|
|
|
|
Timecop.travel(minimum_duration + time_over)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|