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

  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 a 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
end