Welcome to mirror list, hosted at ThFree Co, Russian Federation.

job_waiter_spec.rb « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b4c2e954b6e74c0b126c805194a5d4e166eaf39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::JobWaiter, :redis, feature_category: :shared do
  describe '.notify' do
    let(:key) { described_class.new.key }

    it 'pushes the jid to the named queue', :freeze_time do
      described_class.notify(key, 123)

      Gitlab::Redis::SharedState.with do |redis|
        expect(redis.ttl(key)).to eq(described_class::DEFAULT_TTL)
      end
    end

    it 'can be passed a custom TTL', :freeze_time do
      described_class.notify(key, 123, ttl: 5.minutes)

      Gitlab::Redis::SharedState.with do |redis|
        expect(redis.ttl(key)).to eq(5.minutes.to_i)
      end
    end
  end

  describe '.generate_key' do
    it 'generates and return a new key' do
      key = described_class.generate_key

      expect(key).to include('gitlab:job_waiter:')
    end
  end

  describe '.delete_key' do
    let(:key) { described_class.generate_key }

    it 'deletes the key' do
      described_class.notify(key, '1')
      described_class.delete_key(key)

      Gitlab::Redis::SharedState.with do |redis|
        expect(redis.llen(key)).to eq(0)
      end
    end

    context 'when key is not a JobWaiter key' do
      let(:key) { 'foo' }

      it 'does not delete the key' do
        described_class.notify(key, '1')
        described_class.delete_key(key)

        Gitlab::Redis::SharedState.with do |redis|
          expect(redis.llen(key)).to eq(1)
        end
      end
    end
  end

  describe '#wait' do
    let(:waiter) { described_class.new(2) }

    before do
      allow_any_instance_of(described_class).to receive(:wait).and_call_original
    end

    it 'returns when all jobs have been completed' do
      described_class.notify(waiter.key, 'a')
      described_class.notify(waiter.key, 'b')

      result = nil
      expect { Timeout.timeout(1) { result = waiter.wait(2) } }.not_to raise_error

      expect(result).to contain_exactly('a', 'b')
    end

    it 'times out if not all jobs complete' do
      described_class.notify(waiter.key, 'a')

      result = nil
      expect { Timeout.timeout(2) { result = waiter.wait(1) } }.not_to raise_error

      expect(result).to contain_exactly('a')
    end
  end
end