summaryrefslogtreecommitdiff
path: root/spec/lib/banzai/filter/inline_observability_filter_spec.rb
blob: 69a9dc96c2c77b44aa0e6548d0e6c9ed5efa7977 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Banzai::Filter::InlineObservabilityFilter do
  include FilterSpecHelper

  let(:input) { %(<a href="#{url}">example</a>) }
  let(:doc) { filter(input) }
  let(:group) { create(:group) }
  let(:user) { create(:user) }

  describe '#filter?' do
    context 'when the document has an external link' do
      let(:url) { 'https://foo.com' }

      it 'leaves regular non-observability links unchanged' do
        expect(doc.to_s).to eq(input)
      end
    end

    context 'when the document contains an embeddable observability link' do
      let(:url) { 'https://observe.gitlab.com/12345' }

      it 'leaves the original link unchanged' do
        expect(doc.at_css('a').to_s).to eq(input)
      end

      it 'appends an observability charts placeholder' do
        node = doc.at_css('.js-render-observability')

        expect(node).to be_present
        expect(node.attribute('data-frame-url').to_s).to eq(url)
      end
    end

    context 'when the document contains an embeddable observability link with redirect' do
      let(:url) { 'https://observe.gitlab.com@example.com/12345' }

      it 'leaves the original link unchanged' do
        expect(doc.at_css('a').to_s).to eq(input)
      end

      it 'does not append an observability charts placeholder' do
        node = doc.at_css('.js-render-observability')

        expect(node).not_to be_present
      end
    end

    context 'when the document contains an embeddable observability link with different port' do
      let(:url) { 'https://observe.gitlab.com:3000/12345' }
      let(:observe_url) { 'https://observe.gitlab.com:3001' }

      before do
        stub_env('OVERRIDE_OBSERVABILITY_URL', observe_url)
      end

      it 'leaves the original link unchanged' do
        expect(doc.at_css('a').to_s).to eq(input)
      end

      it 'does not append an observability charts placeholder' do
        node = doc.at_css('.js-render-observability')

        expect(node).not_to be_present
      end
    end

    context 'when the document contains an embeddable observability link with auth/start' do
      let(:url) { 'https://observe.gitlab.com/auth/start' }
      let(:observe_url) { 'https://observe.gitlab.com' }

      before do
        stub_env('OVERRIDE_OBSERVABILITY_URL', observe_url)
      end

      it 'leaves the original link unchanged' do
        expect(doc.at_css('a').to_s).to eq(input)
      end

      it 'does not append an observability charts placeholder' do
        node = doc.at_css('.js-render-observability')

        expect(node).not_to be_present
      end
    end

    context 'when feature flag is disabled' do
      let(:url) { 'https://observe.gitlab.com/12345' }

      before do
        stub_feature_flags(observability_group_tab: false)
      end

      it 'leaves the original link unchanged' do
        expect(doc.at_css('a').to_s).to eq(input)
      end

      it 'does not append an observability charts placeholder' do
        node = doc.at_css('.js-render-observability')

        expect(node).not_to be_present
      end
    end
  end
end