2016-03-10 06:52:19 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Gitlab::ExclusiveLease do
|
2016-03-10 06:55:06 -05:00
|
|
|
it 'cannot obtain twice before the lease has expired' do
|
2016-03-10 06:52:19 -05:00
|
|
|
lease = Gitlab::ExclusiveLease.new(unique_key, timeout: 3600)
|
|
|
|
expect(lease.try_obtain).to eq(true)
|
|
|
|
expect(lease.try_obtain).to eq(false)
|
|
|
|
end
|
|
|
|
|
2016-03-10 06:55:06 -05:00
|
|
|
it 'can obtain after the lease has expired' do
|
2016-03-10 06:52:19 -05:00
|
|
|
timeout = 1
|
|
|
|
lease = Gitlab::ExclusiveLease.new(unique_key, timeout: timeout)
|
2016-03-10 06:55:06 -05:00
|
|
|
lease.try_obtain # start the lease
|
|
|
|
sleep(2 * timeout) # lease should have expired now
|
2016-03-10 06:52:19 -05:00
|
|
|
expect(lease.try_obtain).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
def unique_key
|
|
|
|
SecureRandom.hex(10)
|
|
|
|
end
|
|
|
|
end
|