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

prometheus_metrics_spec.rb « v1 « yml « transformers « dashboard « metrics « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3af8b51c889fd3cda9b6aebbd550aec126db14e6 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Metrics::Dashboard::Transformers::Yml::V1::PrometheusMetrics do
  include MetricsDashboardHelpers

  describe '#execute' do
    subject { described_class.new(dashboard_hash) }

    context 'valid dashboard' do
      let_it_be(:dashboard_hash) do
        {
          panel_groups: [{
            panels: [
              {
                title: 'Panel 1 title',
                y_label: 'Panel 1 y_label',
                metrics: [
                  {
                    query_range: 'Panel 1 metric 1 query_range',
                    unit: 'Panel 1 metric 1 unit',
                    label: 'Panel 1 metric 1 label',
                    id: 'Panel 1 metric 1 id'
                  },
                  {
                    query: 'Panel 1 metric 2 query',
                    unit: 'Panel 1 metric 2 unit',
                    label: 'Panel 1 metric 2 label',
                    id: 'Panel 1 metric 2 id'
                  }
                ]
              },
              {
                title: 'Panel 2 title',
                y_label: 'Panel 2 y_label',
                metrics: [{
                  query_range: 'Panel 2 metric 1 query_range',
                  unit: 'Panel 2 metric 1 unit',
                  label: 'Panel 2 metric 1 label',
                  id: 'Panel 2 metric 1 id'
                }]
              }
            ]
          }]
        }
      end

      let(:expected_metrics) do
        [
          {
            title: 'Panel 1 title',
            y_label: 'Panel 1 y_label',
            query: "Panel 1 metric 1 query_range",
            unit: 'Panel 1 metric 1 unit',
            legend: 'Panel 1 metric 1 label',
            identifier: 'Panel 1 metric 1 id',
            group: 3,
            common: false
          },
          {
            title: 'Panel 1 title',
            y_label: 'Panel 1 y_label',
            query: 'Panel 1 metric 2 query',
            unit: 'Panel 1 metric 2 unit',
            legend: 'Panel 1 metric 2 label',
            identifier: 'Panel 1 metric 2 id',
            group: 3,
            common: false
          },
          {
            title: 'Panel 2 title',
            y_label: 'Panel 2 y_label',
            query: 'Panel 2 metric 1 query_range',
            unit: 'Panel 2 metric 1 unit',
            legend: 'Panel 2 metric 1 label',
            identifier: 'Panel 2 metric 1 id',
            group: 3,
            common: false
          }
        ]
      end

      it 'returns collection of metrics with correct attributes' do
        expect(subject.execute).to match_array(expected_metrics)
      end
    end

    context 'invalid dashboard' do
      let(:dashboard_hash) { {} }

      it 'raises missing attribute error' do
        expect { subject.execute }.to raise_error(
          ::Gitlab::Metrics::Dashboard::Transformers::Errors::MissingAttribute, "Missing attribute: 'panel_groups'"
        )
      end
    end
  end
end