summaryrefslogtreecommitdiff
path: root/spec/workers/project_cache_worker_spec.rb
blob: 855c28b584e0ee3a2297b608757c3598b9a45b9a (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
require 'spec_helper'

describe ProjectCacheWorker do
  let(:project) { create(:project) }
  let(:worker) { described_class.new }

  describe '#perform' do
    before do
      allow_any_instance_of(Gitlab::ExclusiveLease).to receive(:try_obtain).
        and_return(true)
    end

    context 'with a non-existing project' do
      it 'does nothing' do
        expect(worker).not_to receive(:update_repository_size)

        worker.perform(-1)
      end
    end

    context 'with an existing project without a repository' do
      it 'does nothing' do
        allow_any_instance_of(Repository).to receive(:exists?).and_return(false)

        expect(worker).not_to receive(:update_repository_size)

        worker.perform(project.id)
      end
    end

    context 'with an existing project' do
      it 'updates the repository size' do
        expect(worker).to receive(:update_repository_size).and_call_original

        worker.perform(project.id)
      end

      it 'updates the commit count' do
        expect_any_instance_of(Project).to receive(:update_commit_count).
          and_call_original

        worker.perform(project.id)
      end

      it 'refreshes the method caches' do
        expect_any_instance_of(Repository).to receive(:refresh_method_caches).
          with(%i(readme)).
          and_call_original

        worker.perform(project.id, %i(readme))
      end
    end
  end

  describe '#update_repository_size' do
    context 'when a lease could not be obtained' do
      it 'does not update the repository size' do
        allow(worker).to receive(:try_obtain_lease_for).
          with(project.id, :update_repository_size).
          and_return(false)

        expect(project).not_to receive(:update_repository_size)

        worker.update_repository_size(project)
      end
    end

    context 'when a lease could be obtained' do
      it 'updates the repository size' do
        allow(worker).to receive(:try_obtain_lease_for).
          with(project.id, :update_repository_size).
          and_return(true)

        expect(project).to receive(:update_repository_size).and_call_original

        worker.update_repository_size(project)
      end
    end
  end
end