summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/exclusive_lease_spec.rb
blob: fbdb7ea34ac531311240eb53ea0c7c1c833dd607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'spec_helper'

describe Gitlab::ExclusiveLease do
  it 'cannot obtain twice before the lease has expired' 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 'can obtain after the lease has expired' do
    timeout = 1
    lease = Gitlab::ExclusiveLease.new(unique_key, timeout: timeout)
    lease.try_obtain # start the lease
    sleep(2 * timeout) # lease should have expired now
    expect(lease.try_obtain).to eq(true)
  end

  def unique_key
    SecureRandom.hex(10)
  end
end