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

metrics_dashboard_yml_spec.rb « blob_viewer « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84dfc5186a8e2f257d0439675aa364dcc04d92d9 (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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe BlobViewer::MetricsDashboardYml do
  include FakeBlobHelpers
  include RepoHelpers

  let_it_be(:project) { create(:project, :repository) }
  let(:blob) { fake_blob(path: '.gitlab/dashboards/custom-dashboard.yml', data: data) }
  let(:sha) { sample_commit.id }
  let(:data) { fixture_file('lib/gitlab/metrics/dashboard/sample_dashboard.yml') }

  subject(:viewer) { described_class.new(blob) }

  context 'with metrics_dashboard_exhaustive_validations feature flag on' do
    before do
      stub_feature_flags(metrics_dashboard_exhaustive_validations: true)
    end

    context 'when the definition is valid' do
      before do
        allow(Gitlab::Metrics::Dashboard::Validator).to receive(:errors).and_return([])
      end

      describe '#valid?' do
        it 'calls prepare! on the viewer' do
          expect(viewer).to receive(:prepare!)

          viewer.valid?
        end

        it 'processes dashboard yaml and returns true', :aggregate_failures do
          yml = ::Gitlab::Config::Loader::Yaml.new(data).load_raw!

          expect_next_instance_of(::Gitlab::Config::Loader::Yaml, data) do |loader|
            expect(loader).to receive(:load_raw!).and_call_original
          end
          expect(Gitlab::Metrics::Dashboard::Validator)
            .to receive(:errors)
            .with(yml, dashboard_path: '.gitlab/dashboards/custom-dashboard.yml', project: project)
            .and_call_original
          expect(viewer.valid?).to be true
        end
      end

      describe '#errors' do
        it 'returns empty array' do
          expect(viewer.errors).to eq []
        end
      end
    end

    context 'when definition is invalid' do
      let(:error) { ::Gitlab::Metrics::Dashboard::Validator::Errors::SchemaValidationError.new }
      let(:data) do
        <<~YAML
          dashboard:
        YAML
      end

      before do
        allow(Gitlab::Metrics::Dashboard::Validator).to receive(:errors).and_return([error])
      end

      describe '#valid?' do
        it 'returns false' do
          expect(viewer.valid?).to be false
        end
      end

      describe '#errors' do
        it 'returns validation errors' do
          expect(viewer.errors).to eq ["Dashboard failed schema validation"]
        end
      end
    end

    context 'when YAML syntax is invalid' do
      let(:data) do
        <<~YAML
          dashboard: 'empty metrics'
           panel_groups:
          - group: 'Group Title'
        YAML
      end

      describe '#valid?' do
        it 'returns false' do
          expect(Gitlab::Metrics::Dashboard::Validator).not_to receive(:errors)
          expect(viewer.valid?).to be false
        end
      end

      describe '#errors' do
        it 'returns validation errors' do
          expect(viewer.errors).to all be_kind_of String
        end
      end
    end

    context 'when YAML loader raises error' do
      let(:data) do
        <<~YAML
          large yaml file
        YAML
      end

      before do
        allow(::Gitlab::Config::Loader::Yaml).to receive(:new)
          .and_raise(::Gitlab::Config::Loader::Yaml::DataTooLargeError, 'The parsed YAML is too big')
      end

      it 'is invalid' do
        expect(Gitlab::Metrics::Dashboard::Validator).not_to receive(:errors)
        expect(viewer.valid?).to be false
      end

      it 'returns validation errors' do
        expect(viewer.errors).to eq ['The parsed YAML is too big']
      end
    end
  end

  context 'with metrics_dashboard_exhaustive_validations feature flag off' do
    before do
      stub_feature_flags(metrics_dashboard_exhaustive_validations: false)
    end

    context 'when the definition is valid' do
      describe '#valid?' do
        before do
          allow(PerformanceMonitoring::PrometheusDashboard).to receive(:from_json)
        end

        it 'calls prepare! on the viewer' do
          expect(viewer).to receive(:prepare!)

          viewer.valid?
        end

        it 'processes dashboard yaml and returns true', :aggregate_failures do
          yml = ::Gitlab::Config::Loader::Yaml.new(data).load_raw!

          expect_next_instance_of(::Gitlab::Config::Loader::Yaml, data) do |loader|
            expect(loader).to receive(:load_raw!).and_call_original
          end
          expect(PerformanceMonitoring::PrometheusDashboard)
            .to receive(:from_json)
                  .with(yml)
                  .and_call_original
          expect(viewer.valid?).to be true
        end
      end

      describe '#errors' do
        it 'returns empty array' do
          expect(viewer.errors).to eq []
        end
      end
    end

    context 'when definition is invalid' do
      let(:error) { ActiveModel::ValidationError.new(PerformanceMonitoring::PrometheusDashboard.new.tap(&:validate)) }
      let(:data) do
        <<~YAML
        dashboard:
        YAML
      end

      describe '#valid?' do
        it 'returns false' do
          expect(PerformanceMonitoring::PrometheusDashboard)
            .to receive(:from_json).and_raise(error)

          expect(viewer.valid?).to be false
        end
      end

      describe '#errors' do
        it 'returns validation errors' do
          allow(PerformanceMonitoring::PrometheusDashboard)
            .to receive(:from_json).and_raise(error)

          expect(viewer.errors).to eq error.model.errors.messages.map { |messages| messages.join(': ') }
        end
      end
    end

    context 'when YAML syntax is invalid' do
      let(:data) do
        <<~YAML
        dashboard: 'empty metrics'
         panel_groups:
        - group: 'Group Title'
        YAML
      end

      describe '#valid?' do
        it 'returns false' do
          expect(PerformanceMonitoring::PrometheusDashboard).not_to receive(:from_json)
          expect(viewer.valid?).to be false
        end
      end

      describe '#errors' do
        it 'returns validation errors' do
          expect(viewer.errors).to eq ["YAML syntax: (<unknown>): did not find expected key while parsing a block mapping at line 1 column 1"]
        end
      end
    end

    context 'when YAML loader raises error' do
      let(:data) do
        <<~YAML
        large yaml file
        YAML
      end

      before do
        allow(::Gitlab::Config::Loader::Yaml).to(
          receive(:new).and_raise(::Gitlab::Config::Loader::Yaml::DataTooLargeError, 'The parsed YAML is too big')
        )
      end

      it 'is invalid' do
        expect(PerformanceMonitoring::PrometheusDashboard).not_to receive(:from_json)
        expect(viewer.valid?).to be false
      end

      it 'returns validation errors' do
        expect(viewer.errors).to eq ["YAML syntax: The parsed YAML is too big"]
      end
    end
  end
end