summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/project/alert_management/alert/metrics_dashboard_url_spec.rb
blob: 3417f9529bdcb101b654cd57d2fdf96912f0b9fe (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'getting Alert Management Alert Assignees', feature_category: :incident_management do
  include GraphqlHelpers

  let_it_be(:project) { create(:project) }
  let_it_be(:current_user) { create(:user) }

  let(:fields) do
    <<~QUERY
      nodes {
        iid
        metricsDashboardUrl
      }
    QUERY
  end

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

  let(:alerts) { graphql_data.dig('project', 'alertManagementAlerts', 'nodes') }
  let(:first_alert) { alerts.first }

  before do
    stub_feature_flags(remove_monitor_metrics: false)
    project.add_developer(current_user)
  end

  context 'with self-managed prometheus payload' do
    include_context 'self-managed prometheus alert attributes'

    before do
      create(:alert_management_alert, :prometheus, project: project, payload: payload)
    end

    it 'includes the correct metrics dashboard url' do
      post_graphql(graphql_query, current_user: current_user)

      expect(first_alert).to include('metricsDashboardUrl' => dashboard_url_for_alert)
    end

    context 'when metrics dashboard feature is unavailable' do
      before do
        stub_feature_flags(remove_monitor_metrics: true)
      end

      it 'returns nil' do
        post_graphql(graphql_query, current_user: current_user)
        expect(first_alert['metricsDashboardUrl']).to be_nil
      end
    end
  end

  context 'with gitlab-managed prometheus payload' do
    include_context 'gitlab-managed prometheus alert attributes'

    before do
      create(:alert_management_alert, :prometheus, project: project, payload: payload, prometheus_alert: prometheus_alert)
    end

    it 'includes the correct metrics dashboard url' do
      post_graphql(graphql_query, current_user: current_user)

      expect(first_alert).to include('metricsDashboardUrl' => dashboard_url_for_alert)
    end

    context 'when metrics dashboard feature is unavailable' do
      before do
        stub_feature_flags(remove_monitor_metrics: true)
      end

      it 'returns nil' do
        post_graphql(graphql_query, current_user: current_user)
        expect(first_alert['metricsDashboardUrl']).to be_nil
      end
    end
  end
end