summaryrefslogtreecommitdiff
path: root/spec/workers/cluster_update_app_worker_spec.rb
blob: 8f61ee17162ae2423fe63d1dd1800794a9224276 (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ClusterUpdateAppWorker do
  include ExclusiveLeaseHelpers

  let_it_be(:project) { create(:project) }

  let(:prometheus_update_service) { spy }

  subject { described_class.new }

  around do |example|
    freeze_time { example.run }
  end

  before do
    allow(::Clusters::Applications::PrometheusUpdateService).to receive(:new).and_return(prometheus_update_service)
  end

  describe '#perform' do
    context 'when the application last_update_started_at is higher than the time the job was scheduled in' do
      it 'does nothing' do
        application = create(:clusters_applications_prometheus, :updated, last_update_started_at: Time.current)

        expect(prometheus_update_service).not_to receive(:execute)

        expect(subject.perform(application.name, application.id, project.id, Time.current - 5.minutes)).to be_nil
      end
    end

    context 'when another worker is already running' do
      it 'returns nil' do
        application = create(:clusters_applications_prometheus, :updating)

        expect(subject.perform(application.name, application.id, project.id, Time.current)).to be_nil
      end
    end

    it 'executes PrometheusUpdateService' do
      application = create(:clusters_applications_prometheus, :installed)

      expect(prometheus_update_service).to receive(:execute)

      subject.perform(application.name, application.id, project.id, Time.current)
    end

    context 'application is externally installed' do
      it 'does not execute PrometheusUpdateService' do
        application = create(:clusters_applications_prometheus, :externally_installed)

        expect(prometheus_update_service).not_to receive(:execute)

        subject.perform(application.name, application.id, project.id, Time.current)
      end
    end

    context 'with exclusive lease' do
      let_it_be(:user) { create(:user) }

      let(:application) { create(:clusters_applications_prometheus, :installed) }
      let(:lease_key) { "#{described_class.name.underscore}-#{application.id}" }

      before do
        # update_highest_role uses exclusive key too:
        allow(Gitlab::ExclusiveLease).to receive(:new).and_call_original
        stub_exclusive_lease_taken(lease_key)
      end

      it 'does not allow same app to be updated concurrently by same project' do
        expect(Clusters::Applications::PrometheusUpdateService).not_to receive(:new)

        subject.perform(application.name, application.id, project.id, Time.current)
      end

      it 'does not allow same app to be updated concurrently by different project', :aggregate_failures do
        project1 = create(:project, namespace: create(:namespace, owner: user))

        expect(Clusters::Applications::PrometheusUpdateService).not_to receive(:new)

        subject.perform(application.name, application.id, project1.id, Time.current)
      end

      it 'allows different app to be updated concurrently by same project' do
        application2 = create(:clusters_applications_prometheus, :installed)
        lease_key2 = "#{described_class.name.underscore}-#{application2.id}"

        stub_exclusive_lease(lease_key2)

        expect(Clusters::Applications::PrometheusUpdateService).to receive(:new)
          .with(application2, project)

        subject.perform(application2.name, application2.id, project.id, Time.current)
      end

      it 'allows different app to be updated by different project', :aggregate_failures do
        application2 = create(:clusters_applications_prometheus, :installed)
        lease_key2 = "#{described_class.name.underscore}-#{application2.id}"

        project2 = create(:project, namespace: create(:namespace, owner: user))

        stub_exclusive_lease(lease_key2)

        expect(Clusters::Applications::PrometheusUpdateService).to receive(:new)
          .with(application2, project2)

        subject.perform(application2.name, application2.id, project2.id, Time.current)
      end
    end
  end
end