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

observability_spec.rb « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7af2daea11ca2fe4fad7034bbd2caef642211802 (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::Observability, feature_category: :error_tracking do
  let_it_be(:group) { create(:group) }
  let_it_be(:project) { create(:project, group: group) }

  describe '.observability_url' do
    let(:gitlab_url) { 'https://example.com' }

    subject { described_class.observability_url }

    before do
      stub_config_setting(url: gitlab_url)
    end

    it { is_expected.to eq('https://observe.gitlab.com') }

    context 'when on staging.gitlab.com' do
      let(:gitlab_url) { Gitlab::Saas.staging_com_url }

      it { is_expected.to eq('https://observe.staging.gitlab.com') }
    end

    context 'when overriden via ENV' do
      let(:observe_url) { 'https://example.net' }

      before do
        stub_env('OVERRIDE_OBSERVABILITY_URL', observe_url)
      end

      it { is_expected.to eq(observe_url) }
    end
  end

  describe '.oauth_url' do
    subject { described_class.oauth_url }

    it { is_expected.to eq("#{described_class.observability_url}/v1/auth/start") }
  end

  describe '.provisioning_url' do
    subject { described_class.provisioning_url(project) }

    it { is_expected.to eq("#{described_class.observability_url}/v3/tenant/#{project.id}") }
  end

  describe '.should_enable_observability_auth_scopes?' do
    subject { described_class.should_enable_observability_auth_scopes?(resource) }

    let(:parent) { build_stubbed(:group) }
    let(:resource) do
      build_stubbed(:group, parent: parent).tap do |g|
        g.namespace_settings = build_stubbed(:namespace_settings, namespace: g)
      end
    end

    before do
      stub_feature_flags(observability_tracing: parent)
    end

    describe 'when resource is group' do
      context 'if observability_tracing FF enabled' do
        it { is_expected.to be true }
      end

      context 'if observability_tracing FF disabled' do
        before do
          stub_feature_flags(observability_tracing: false)
        end

        it { is_expected.to be false }
      end
    end

    describe 'when resource is project' do
      let(:resource) { build_stubbed(:project, namespace: parent) }

      context 'if observability_tracing FF enabled' do
        it { is_expected.to be true }
      end

      context 'if observability_tracing FF disabled' do
        before do
          stub_feature_flags(observability_tracing: false)
        end

        it { is_expected.to be false }
      end
    end

    describe 'when resource is not a group or project' do
      let(:resource) { build_stubbed(:user) }

      it { is_expected.to be false }
    end
  end
end