summaryrefslogtreecommitdiff
path: root/spec/services/alert_management/http_integrations/create_service_spec.rb
blob: bced09044eb8e33db1fb4c61c0ae58d064c32f29 (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
91
92
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe AlertManagement::HttpIntegrations::CreateService, feature_category: :incident_management do
  let_it_be(:user_with_permissions) { create(:user) }
  let_it_be(:user_without_permissions) { create(:user) }
  let_it_be_with_reload(:project) { create(:project) }

  let(:current_user) { user_with_permissions }
  let(:params) { {} }

  let(:service) { described_class.new(project, current_user, params) }

  before_all do
    project.add_maintainer(user_with_permissions)
  end

  describe '#execute' do
    shared_examples 'error response' do |message|
      it 'has an informative message' do
        expect(response).to be_error
        expect(response.message).to eq(message)
      end
    end

    subject(:response) { service.execute }

    context 'when the current_user is anonymous' do
      let(:current_user) { nil }

      it_behaves_like 'error response', 'You have insufficient permissions to create an HTTP integration for this project'
    end

    context 'when current_user does not have permission to create integrations' do
      let(:current_user) { user_without_permissions }

      it_behaves_like 'error response', 'You have insufficient permissions to create an HTTP integration for this project'
    end

    context 'when an error occurs during update' do
      it_behaves_like 'error response', "Name can't be blank"
    end

    context 'with valid params' do
      let(:params) { { name: 'New HTTP Integration', active: true } }

      it 'successfully creates an integration' do
        expect(response).to be_success

        integration = response.payload[:integration]
        expect(integration).to be_a(::AlertManagement::HttpIntegration)
        expect(integration.name).to eq('New HTTP Integration')
        expect(integration).to be_active
        expect(integration.token).to be_present
        expect(integration.endpoint_identifier).to be_present
      end

      context 'with an existing HTTP integration' do
        let_it_be(:http_integration) { create(:alert_management_http_integration, project: project) }

        it_behaves_like 'error response', 'Multiple integrations of a single type are not supported for this project'

        context 'when creating a different type of integration' do
          let(:params) { { type_identifier: :prometheus, name: 'Prometheus' } }

          it 'is successful' do
            expect(response).to be_success
            expect(response.payload[:integration]).to be_a(::AlertManagement::HttpIntegration)
          end
        end
      end

      context 'with an existing Prometheus integration' do
        let_it_be(:http_integration) { create(:alert_management_prometheus_integration, project: project) }

        context 'when creating a different type of integration' do
          it 'is successful' do
            expect(response).to be_success
            expect(response.payload[:integration]).to be_a(::AlertManagement::HttpIntegration)
          end
        end

        context 'when creating the same time of integration' do
          let(:params) { { type_identifier: :prometheus, name: 'Prometheus' } }

          it_behaves_like 'error response', 'Multiple integrations of a single type are not supported for this project'
        end
      end
    end
  end
end