summaryrefslogtreecommitdiff
path: root/spec/services/clusters/applications/schedule_update_service_spec.rb
blob: f559fb1b7aa939f595a09b9def7d5ec79023f079 (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'

RSpec.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