summaryrefslogtreecommitdiff
path: root/spec/graphql/types/alert_management/prometheus_integration_type_spec.rb
blob: d057afb331cf535324942f2de16293f404bb6ff0 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['AlertManagementPrometheusIntegration'] do
  include GraphqlHelpers

  specify { expect(described_class.graphql_name).to eq('AlertManagementPrometheusIntegration') }
  specify { expect(described_class).to require_graphql_authorizations(:admin_project) }

  describe 'resolvers' do
    shared_examples_for 'has field with value' do |field_name|
      it 'correctly renders the field' do
        result = resolve_field(field_name, integration, current_user: user)

        expect(result).to eq(value)
      end
    end

    let_it_be_with_reload(:integration) { create(:prometheus_service) }
    let_it_be(:user) { create(:user, maintainer_projects: [integration.project]) }

    it_behaves_like 'has field with value', 'name' do
      let(:value) { integration.title }
    end

    it_behaves_like 'has field with value', 'type' do
      let(:value) { :prometheus }
    end

    it_behaves_like 'has field with value', 'token' do
      let(:value) { nil }
    end

    it_behaves_like 'has field with value', 'url' do
      let(:value) { "http://localhost/#{integration.project.full_path}/prometheus/alerts/notify.json" }
    end

    it_behaves_like 'has field with value', 'active' do
      let(:value) { integration.manual_configuration? }
    end

    context 'with alerting setting' do
      let_it_be(:alerting_setting) { create(:project_alerting_setting, project: integration.project) }

      it_behaves_like 'has field with value', 'token' do
        let(:value) { alerting_setting.token }
      end
    end

    describe 'a group integration' do
      let_it_be(:group) { create(:group) }
      let_it_be(:integration) { create(:prometheus_service, project: nil, group: group) }

      # Since it is impossible to authorize the parent here, given that the
      # project is nil, all fields should be redacted:

      described_class.fields.each_key do |field_name|
        context "field: #{field_name}" do
          it 'is redacted' do
            expect do
              resolve_field(field_name, integration, current_user: user)
            end.to raise_error(GraphqlHelpers::UnauthorizedObject)
          end
        end
      end
    end
  end
end