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

prometheus_metric_spec.rb « performance_monitoring « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83f687aa90ee6e8d16a8c0dfceb4693791960b71 (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
# frozen_string_literal: true

require 'spec_helper'

describe PerformanceMonitoring::PrometheusMetric do
  let(:json_content) do
    {
      "id" => "metric_of_ages",
      "unit" => "count",
      "label" => "Metric of Ages",
      "query_range" => "http_requests_total"
    }
  end

  describe '.from_json' do
    subject { described_class.from_json(json_content) }

    it 'creates a PrometheusMetric object' do
      expect(subject).to be_a PerformanceMonitoring::PrometheusMetric
      expect(subject.id).to eq(json_content['id'])
      expect(subject.unit).to eq(json_content['unit'])
      expect(subject.label).to eq(json_content['label'])
      expect(subject.query_range).to eq(json_content['query_range'])
    end

    describe 'validations' do
      context 'json_content is not a hash' do
        let(:json_content) { nil }

        subject { described_class.from_json(json_content) }

        it { expect { subject }.to raise_error(ActiveModel::ValidationError) }
      end

      context 'when unit is missing' do
        before do
          json_content['unit'] = nil
        end

        subject { described_class.from_json(json_content) }

        it { expect { subject }.to raise_error(ActiveModel::ValidationError) }
      end

      context 'when query and query_range is missing' do
        before do
          json_content['query_range'] = nil
        end

        subject { described_class.from_json(json_content) }

        it { expect { subject }.to raise_error(ActiveModel::ValidationError) }
      end

      context 'when query_range is missing but query is available' do
        before do
          json_content['query_range'] = nil
          json_content['query'] = 'http_requests_total'
        end

        subject { described_class.from_json(json_content) }

        it { is_expected.to be_valid }
      end
    end
  end
end