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