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

create_service_spec.rb « integrations « clusters « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cfc0943b6adae1ec9f89ebf38173afb56a378b85 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Clusters::Integrations::CreateService, '#execute' do
  let_it_be(:project) { create(:project) }
  let_it_be_with_reload(:cluster) { create(:cluster, :provided_by_gcp, projects: [project]) }

  let(:params) do
    { application_type: 'prometheus', enabled: true }
  end

  let(:service) do
    described_class.new(container: project, cluster: cluster, current_user: project.owner, params: params)
  end

  it 'creates a new Prometheus instance' do
    expect(service.execute).to be_success

    expect(cluster.integration_prometheus).to be_present
    expect(cluster.integration_prometheus).to be_persisted
    expect(cluster.integration_prometheus).to be_enabled
  end

  context 'enabled param is false' do
    let(:params) do
      { application_type: 'prometheus', enabled: false }
    end

    it 'creates a new uninstalled Prometheus instance' do
      expect(service.execute).to be_success

      expect(cluster.integration_prometheus).to be_present
      expect(cluster.integration_prometheus).to be_persisted
      expect(cluster.integration_prometheus).not_to be_enabled
    end
  end

  context 'unauthorized user' do
    let(:service) do
      unauthorized_user = create(:user)

      described_class.new(container: project, cluster: cluster, current_user: unauthorized_user, params: params)
    end

    it 'does not create a new Prometheus instance' do
      expect(service.execute).to be_error

      expect(cluster.integration_prometheus).to be_nil
    end
  end

  context 'prometheus record exists' do
    before do
      create(:clusters_integrations_prometheus, cluster: cluster)
    end

    it 'updates the Prometheus instance' do
      expect(service.execute).to be_success

      expect(cluster.integration_prometheus).to be_present
      expect(cluster.integration_prometheus).to be_persisted
      expect(cluster.integration_prometheus).to be_enabled
    end

    context 'enabled param is false' do
      let(:params) do
        { application_type: 'prometheus', enabled: false }
      end

      it 'updates the Prometheus instance as uninstalled' do
        expect(service.execute).to be_success

        expect(cluster.integration_prometheus).to be_present
        expect(cluster.integration_prometheus).to be_persisted
        expect(cluster.integration_prometheus).not_to be_enabled
      end
    end
  end

  context 'for an un-supported application type' do
    let(:params) do
      { application_type: 'something_else', enabled: true }
    end

    it 'errors' do
      expect { service.execute}.to raise_error(ArgumentError)
    end
  end
end