summaryrefslogtreecommitdiff
path: root/spec/services/clusters/applications/schedule_installation_service_spec.rb
blob: 21797edd5333cdbcae020219b8aaafb43cfdbb91 (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
require 'spec_helper'

describe Clusters::Applications::ScheduleInstallationService do
  def count_scheduled
    application&.class&.with_status(:scheduled)&.count || 0
  end

  shared_examples 'a failing service' do
    it 'raise an exception' do
      expect(ClusterInstallAppWorker).not_to receive(:perform_async)
      count_before = count_scheduled

      expect { service.execute }.to raise_error(StandardError)
      expect(count_scheduled).to eq(count_before)
    end
  end

  describe '#execute' do
    let(:service) { described_class.new(application) }

    context 'when application is installable' do
      let(:application) { create(:clusters_applications_helm, :installable) }

      it 'make the application scheduled' do
        expect(ClusterInstallAppWorker).to receive(:perform_async).with(application.name, kind_of(Numeric)).once

        expect { service.execute }.to change { application.class.with_status(:scheduled).count }.by(1)
      end
    end

    context 'when installation is already in progress' do
      let(:application) { create(:clusters_applications_helm, :installing) }

      it_behaves_like 'a failing service'
    end

    context 'when application is nil' do
      let(:application) { nil }

      it_behaves_like 'a failing service'
    end

    context 'when application cannot be persisted' do
      let(:application) { create(:clusters_applications_helm) }

      before do
        expect(application).to receive(:make_scheduled!).once.and_raise(ActiveRecord::RecordInvalid)
      end

      it_behaves_like 'a failing service'
    end
  end
end