summaryrefslogtreecommitdiff
path: root/spec/services/clusters/applications/uninstall_service_spec.rb
blob: 16497d752b2fc014bc743ee5886a93f597be5a6b (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
# frozen_string_literal: true

require 'spec_helper'

describe Clusters::Applications::UninstallService, '#execute' do
  let(:application) { create(:clusters_applications_prometheus, :scheduled) }
  let(:service) { described_class.new(application) }
  let(:helm_client) { instance_double(Gitlab::Kubernetes::Helm::Api) }
  let(:worker_class) { Clusters::Applications::WaitForUninstallAppWorker }

  before do
    allow(service).to receive(:helm_api).and_return(helm_client)
  end

  context 'when there are no errors' do
    before do
      expect(helm_client).to receive(:uninstall).with(kind_of(Gitlab::Kubernetes::Helm::DeleteCommand))
      allow(worker_class).to receive(:perform_in).and_return(nil)
    end

    it 'make the application to be uninstalling' do
      expect(application.cluster).not_to be_nil
      service.execute

      expect(application).to be_uninstalling
    end

    it 'schedule async installation status check' do
      expect(worker_class).to receive(:perform_in).once

      service.execute
    end
  end

  context 'when k8s cluster communication fails' do
    let(:error) { Kubeclient::HttpError.new(500, 'system failure', nil) }

    before do
      expect(helm_client).to receive(:uninstall).with(kind_of(Gitlab::Kubernetes::Helm::DeleteCommand)).and_raise(error)
    end

    include_examples 'logs kubernetes errors' do
      let(:error_name) { 'Kubeclient::HttpError' }
      let(:error_message) { 'system failure' }
      let(:error_code) { 500 }
    end

    it 'make the application errored' do
      service.execute

      expect(application).to be_uninstall_errored
      expect(application.status_reason).to match('Kubernetes error: 500')
    end
  end

  context 'a non kubernetes error happens' do
    let(:application) { create(:clusters_applications_prometheus, :scheduled) }
    let(:error) { StandardError.new('something bad happened') }

    before do
      expect(helm_client).to receive(:uninstall).with(kind_of(Gitlab::Kubernetes::Helm::DeleteCommand)).and_raise(error)
    end

    include_examples 'logs kubernetes errors' do
      let(:error_name) { 'StandardError' }
      let(:error_message) { 'something bad happened' }
      let(:error_code) { nil }
    end

    it 'make the application errored' do
      service.execute

      expect(application).to be_uninstall_errored
      expect(application.status_reason).to eq('Failed to uninstall.')
    end
  end
end