snippet_reference_filter_spec.rb 3.6 KB
Newer Older
R
Robert Speicher 已提交
1 2 3 4
require 'spec_helper'

module Gitlab::Markdown
  describe SnippetReferenceFilter do
5
    include FilterSpecHelper
R
Robert Speicher 已提交
6 7 8

    let(:project)   { create(:empty_project) }
    let(:snippet)   { create(:project_snippet, project: project) }
9
    let(:reference) { snippet.to_reference }
R
Robert Speicher 已提交
10 11

    it 'requires project context' do
12
      expect { described_class.call('') }.to raise_error(ArgumentError, /:project/)
R
Robert Speicher 已提交
13 14 15 16 17 18 19 20 21
    end

    %w(pre code a style).each do |elem|
      it "ignores valid references contained inside '#{elem}' element" do
        exp = act = "<#{elem}>Snippet #{reference}</#{elem}>"
        expect(filter(act).to_html).to eq exp
      end
    end

22 23 24
    context 'internal reference' do
      it 'links to a valid reference' do
        doc = filter("See #{reference}")
R
Robert Speicher 已提交
25

26 27 28
        expect(doc.css('a').first.attr('href')).to eq urls.
          namespace_project_snippet_url(project.namespace, project, snippet)
      end
R
Robert Speicher 已提交
29

30 31 32 33
      it 'links with adjacent text' do
        doc = filter("Snippet (#{reference}.)")
        expect(doc.to_html).to match(/\(<a.+>#{Regexp.escape(reference)}<\/a>\.\)/)
      end
R
Robert Speicher 已提交
34

35
      it 'ignores invalid snippet IDs' do
36
        exp = act = "Snippet #{invalidate_reference(reference)}"
R
Robert Speicher 已提交
37

38 39
        expect(filter(act).to_html).to eq exp
      end
R
Robert Speicher 已提交
40

41 42 43 44
      it 'includes a title attribute' do
        doc = filter("Snippet #{reference}")
        expect(doc.css('a').first.attr('title')).to eq "Snippet: #{snippet.title}"
      end
R
Robert Speicher 已提交
45

46 47 48 49 50 51 52
      it 'escapes the title attribute' do
        snippet.update_attribute(:title, %{"></a>whatever<a title="})

        doc = filter("Snippet #{reference}")
        expect(doc.text).to eq "Snippet #{reference}"
      end

53 54 55 56
      it 'includes default classes' do
        doc = filter("Snippet #{reference}")
        expect(doc.css('a').first.attr('class')).to eq 'gfm gfm-snippet'
      end
R
Robert Speicher 已提交
57

58 59 60 61 62 63 64 65
      it 'includes a data-project-id attribute' do
        doc = filter("Snippet #{reference}")
        link = doc.css('a').first

        expect(link).to have_attribute('data-project-id')
        expect(link.attr('data-project-id')).to eq project.id.to_s
      end

66 67 68 69 70 71 72
      it 'supports an :only_path context' do
        doc = filter("Snippet #{reference}", only_path: true)
        link = doc.css('a').first.attr('href')

        expect(link).not_to match %r(https?://)
        expect(link).to eq urls.namespace_project_snippet_url(project.namespace, project, snippet, only_path: true)
      end
73 74 75 76 77

      it 'adds to the results hash' do
        result = pipeline_result("Snippet #{reference}")
        expect(result[:references][:snippet]).to eq [snippet]
      end
R
Robert Speicher 已提交
78 79
    end

80 81 82 83
    context 'cross-project reference' do
      let(:namespace) { create(:namespace, name: 'cross-reference') }
      let(:project2)  { create(:empty_project, namespace: namespace) }
      let(:snippet)   { create(:project_snippet, project: project2) }
84
      let(:reference) { snippet.to_reference(project) }
85

86 87
      it 'links to a valid reference' do
        doc = filter("See #{reference}")
88

89 90 91
        expect(doc.css('a').first.attr('href')).
          to eq urls.namespace_project_snippet_url(project2.namespace, project2, snippet)
      end
92

93 94 95
      it 'links with adjacent text' do
        doc = filter("See (#{reference}.)")
        expect(doc.to_html).to match(/\(<a.+>#{Regexp.escape(reference)}<\/a>\.\)/)
96 97
      end

98 99
      it 'ignores invalid snippet IDs on the referenced project' do
        exp = act = "See #{invalidate_reference(reference)}"
100

101 102
        expect(filter(act).to_html).to eq exp
      end
103

104 105 106
      it 'adds to the results hash' do
        result = pipeline_result("Snippet #{reference}")
        expect(result[:references][:snippet]).to eq [snippet]
107
      end
R
Robert Speicher 已提交
108 109 110
    end
  end
end