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

integrations_spec.rb « alert_management « project « graphql « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b13805a61ce3c5e2af324f16682b8b023f648033 (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
# frozen_string_literal: true
require 'spec_helper'

RSpec.describe 'getting Alert Management Integrations' do
  include ::Gitlab::Routing
  include GraphqlHelpers

  let_it_be(:project) { create(:project, :repository) }
  let_it_be(:current_user) { create(:user) }
  let_it_be(:prometheus_service) { create(:prometheus_service, project: project) }
  let_it_be(:project_alerting_setting) { create(:project_alerting_setting, project: project) }
  let_it_be(:active_http_integration) { create(:alert_management_http_integration, project: project) }
  let_it_be(:inactive_http_integration) { create(:alert_management_http_integration, :inactive, project: project) }
  let_it_be(:other_project_http_integration) { create(:alert_management_http_integration) }

  let(:fields) do
    <<~QUERY
      nodes {
        #{all_graphql_fields_for('AlertManagementIntegration')}
      }
    QUERY
  end

  let(:query) do
    graphql_query_for(
      'project',
      { 'fullPath' => project.full_path },
      query_graphql_field('alertManagementIntegrations', {}, fields)
    )
  end

  context 'with integrations' do
    let(:integrations) { graphql_data.dig('project', 'alertManagementIntegrations', 'nodes') }

    context 'without project permissions' do
      let(:user) { create(:user) }

      before do
        post_graphql(query, current_user: current_user)
      end

      it_behaves_like 'a working graphql query'

      it { expect(integrations).to be_nil }
    end

    context 'with project permissions' do
      before do
        project.add_maintainer(current_user)
        post_graphql(query, current_user: current_user)
      end

      let(:http_integration) { integrations.first }
      let(:prometheus_integration) { integrations.second }

      it_behaves_like 'a working graphql query'

      it { expect(integrations.size).to eq(2) }

      it 'returns the correct properties of the integrations' do
        expect(http_integration).to include(
          'id' => GitlabSchema.id_from_object(active_http_integration).to_s,
          'type' => 'HTTP',
          'name' => active_http_integration.name,
          'active' => active_http_integration.active,
          'token' => active_http_integration.token,
          'url' => active_http_integration.url,
          'apiUrl' => nil
        )

        expect(prometheus_integration).to include(
          'id' => GitlabSchema.id_from_object(prometheus_service).to_s,
          'type' => 'PROMETHEUS',
          'name' => 'Prometheus',
          'active' => prometheus_service.manual_configuration?,
          'token' => project_alerting_setting.token,
          'url' => "http://localhost/#{project.full_path}/prometheus/alerts/notify.json",
          'apiUrl' => prometheus_service.api_url
        )
      end
    end
  end
end