gitlab-org--gitlab-foss/spec/lib/gitlab/exclusive_lease_spec.rb

22 lines
484 B
Ruby
Raw Normal View History

2016-03-10 11:52:19 +00:00
require 'spec_helper'
describe Gitlab::ExclusiveLease do
it 'is exclusive' do
lease = Gitlab::ExclusiveLease.new(unique_key, timeout: 3600)
expect(lease.try_obtain).to eq(true)
expect(lease.try_obtain).to eq(false)
end
it 'expires' do
timeout = 1
lease = Gitlab::ExclusiveLease.new(unique_key, timeout: timeout)
lease.try_obtain
sleep(2 * timeout)
expect(lease.try_obtain).to eq(true)
end
def unique_key
SecureRandom.hex(10)
end
end