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

schedule_update_service_spec.rb « applications « clusters « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2cbcb861938e4ada533a136b9df57b65b2948800 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Clusters::Applications::ScheduleUpdateService do
  describe '#execute' do
    let(:project) { create(:project) }

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

    context 'when the application is a Clusters::Integrations::Prometheus' do
      let(:application) { create(:clusters_integrations_prometheus) }

      it 'does nothing' do
        service = described_class.new(application, project)

        expect(::ClusterUpdateAppWorker).not_to receive(:perform_in)
        expect(::ClusterUpdateAppWorker).not_to receive(:perform_async)

        service.execute
      end
    end

    context 'when the application is externally installed' do
      let(:application) { create(:clusters_applications_prometheus, :externally_installed) }

      it 'does nothing' do
        service = described_class.new(application, project)

        expect(::ClusterUpdateAppWorker).not_to receive(:perform_in)
        expect(::ClusterUpdateAppWorker).not_to receive(:perform_async)

        service.execute
      end
    end

    context 'when application is able to be updated' do
      context 'when the application was recently scheduled' do
        it 'schedules worker with a backoff delay' do
          application = create(:clusters_applications_prometheus, :installed, last_update_started_at: Time.current + 5.minutes)
          service = described_class.new(application, project)

          expect(::ClusterUpdateAppWorker).to receive(:perform_in).with(described_class::BACKOFF_DELAY, application.name, application.id, project.id, Time.current).once

          service.execute
        end
      end

      context 'when the application has not been recently updated' do
        it 'schedules worker' do
          application = create(:clusters_applications_prometheus, :installed)
          service = described_class.new(application, project)

          expect(::ClusterUpdateAppWorker).to receive(:perform_async).with(application.name, application.id, project.id, Time.current).once

          service.execute
        end
      end
    end
  end
end