summaryrefslogtreecommitdiff
path: root/spec/requests/projects/metrics/dashboards/builder_spec.rb
blob: e59ed591f638b1eae302d0c2cc96385c87bee5ba (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Projects::Metrics::Dashboards::BuilderController' do
  let_it_be(:project) { create(:project) }
  let_it_be(:environment) { create(:environment, project: project) }
  let_it_be(:user) { create(:user) }
  let_it_be(:valid_panel_yml) do
    <<~YML
    ---
    title: "Super Chart A1"
    type: "area-chart"
    y_label: "y_label"
    weight: 1
    max_value: 1
    metrics:
    - id: metric_a1
      query_range: |+
        avg(
          sum(
            container_memory_usage_bytes{
              container_name!="POD",
              pod_name=~"^{{ci_environment_slug}}-(.*)",
              namespace="{{kube_namespace}}",
              user_def_variable="{{user_def_variable}}"
            }
          ) by (job)
        ) without (job)
        /1024/1024/1024
      unit: unit
      label: Legend Label
    YML
  end
  let_it_be(:invalid_panel_yml) do
    <<~YML
    ---
    title: "Super Chart A1"
    type: "area-chart"
    y_label: "y_label"
    weight: 1
    max_value: 1
    YML
  end

  def send_request(params = {})
    post namespace_project_metrics_dashboards_builder_path(namespace_id: project.namespace, project_id: project, format: :json, **params)
  end

  describe 'POST /:namespace/:project/-/metrics/dashboards/builder' do
    context 'as anonymous user' do
      it 'redirects user to sign in page' do
        send_request

        expect(response).to redirect_to(new_user_session_path)
      end
    end

    context 'as user with guest access' do
      before do
        project.add_guest(user)
        login_as(user)
      end

      it 'returns not found' do
        send_request

        expect(response).to have_gitlab_http_status(:not_found)
      end
    end

    context 'as logged in user' do
      before do
        project.add_developer(user)
        login_as(user)
      end

      context 'valid yaml panel is supplied' do
        it 'returns success' do
          send_request(panel_yaml: valid_panel_yml)

          expect(response).to have_gitlab_http_status(:ok)
          expect(json_response).to include('title' => 'Super Chart A1', 'type' => 'area-chart')
        end
      end

      context 'invalid yaml panel is supplied' do
        it 'returns unprocessable entity' do
          send_request(panel_yaml: invalid_panel_yml)

          expect(response).to have_gitlab_http_status(:unprocessable_entity)
          expect(json_response['message']).to eq('Each "panel" must define an array :metrics')
        end
      end

      context 'invalid panel_yaml is not a yaml string' do
        it 'returns unprocessable entity' do
          send_request(panel_yaml: 1)

          expect(response).to have_gitlab_http_status(:unprocessable_entity)
          expect(json_response['message']).to eq('Invalid configuration format')
        end
      end
    end
  end
end