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: eb1006ce8e00eb8b8fa147931ff179cb4e9470d8 (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
# frozen_string_literal: true

require 'spec_helper'

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

    around do |example|
      Timecop.freeze { example.run }
    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