2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
module ExclusiveLeaseHelpers
|
|
|
|
def stub_exclusive_lease(key = nil, uuid = 'uuid', renew: false, timeout: nil)
|
2022-11-25 23:54:43 +05:30
|
|
|
prepare_exclusive_lease_stub
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
key ||= instance_of(String)
|
|
|
|
timeout ||= instance_of(Integer)
|
|
|
|
|
|
|
|
lease = instance_double(
|
|
|
|
Gitlab::ExclusiveLease,
|
|
|
|
try_obtain: uuid,
|
|
|
|
exists?: true,
|
2020-05-24 23:13:21 +05:30
|
|
|
renew: renew,
|
|
|
|
cancel: nil,
|
|
|
|
ttl: timeout
|
2018-11-08 19:23:39 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
allow(Gitlab::ExclusiveLease)
|
|
|
|
.to receive(:new)
|
|
|
|
.with(key, timeout: timeout)
|
|
|
|
.and_return(lease)
|
|
|
|
|
|
|
|
lease
|
|
|
|
end
|
|
|
|
|
|
|
|
def stub_exclusive_lease_taken(key = nil, timeout: nil)
|
|
|
|
stub_exclusive_lease(key, nil, timeout: timeout)
|
|
|
|
end
|
|
|
|
|
|
|
|
def expect_to_obtain_exclusive_lease(key, uuid = 'uuid', timeout: nil)
|
|
|
|
lease = stub_exclusive_lease(key, uuid, timeout: timeout)
|
|
|
|
|
|
|
|
expect(lease).to receive(:try_obtain)
|
|
|
|
end
|
|
|
|
|
|
|
|
def expect_to_cancel_exclusive_lease(key, uuid)
|
|
|
|
expect(Gitlab::ExclusiveLease)
|
|
|
|
.to receive(:cancel)
|
|
|
|
.with(key, uuid)
|
|
|
|
end
|
2022-11-25 23:54:43 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# This prepares the stub to be able to stub specific lease keys
|
|
|
|
# while allowing unstubbed lease keys to behave as original.
|
|
|
|
#
|
|
|
|
# allow(Gitlab::ExclusiveLease).to receive(:new).and_call_original
|
|
|
|
# can only be called once to prevent resetting stubs when
|
|
|
|
# `stub_exclusive_lease` is called multiple times.
|
|
|
|
def prepare_exclusive_lease_stub
|
|
|
|
return if @exclusive_lease_allowed_to_call_original
|
|
|
|
|
|
|
|
allow(Gitlab::ExclusiveLease)
|
|
|
|
.to receive(:new).and_call_original
|
|
|
|
|
|
|
|
@exclusive_lease_allowed_to_call_original = true
|
|
|
|
end
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|