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

autolink_filter_spec.rb « markdown « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0bbdc11a9798f6b82c3a7f8632ac63e4f6fe09f8 (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
require 'spec_helper'

module Gitlab::Markdown
  describe AutolinkFilter do
    let(:link) { 'http://about.gitlab.com/' }

    def filter(html, options = {})
      described_class.call(html, options)
    end

    it 'does nothing when :autolink is false' do
      exp = act = link
      expect(filter(act, autolink: false).to_html).to eq exp
    end

    it 'does nothing with non-link text' do
      exp = act = 'This text contains no links to autolink'
      expect(filter(act).to_html).to eq exp
    end

    context 'Rinku schemes' do
      it 'autolinks http' do
        doc = filter("See #{link}")
        expect(doc.at_css('a').text).to eq link
        expect(doc.at_css('a')['href']).to eq link
      end

      it 'autolinks https' do
        link = 'https://google.com/'
        doc = filter("See #{link}")

        expect(doc.at_css('a').text).to eq link
        expect(doc.at_css('a')['href']).to eq link
      end

      it 'autolinks ftp' do
        link = 'ftp://ftp.us.debian.org/debian/'
        doc = filter("See #{link}")

        expect(doc.at_css('a').text).to eq link
        expect(doc.at_css('a')['href']).to eq link
      end

      it 'autolinks short URLs' do
        link = 'http://localhost:3000/'
        doc = filter("See #{link}")

        expect(doc.at_css('a').text).to eq link
        expect(doc.at_css('a')['href']).to eq link
      end

      it 'accepts link_attr options' do
        doc = filter("See #{link}", link_attr: {class: 'custom'})

        expect(doc.at_css('a')['class']).to eq 'custom'
      end

      described_class::IGNORE_PARENTS.each do |elem|
        it "ignores valid links contained inside '#{elem}' element" do
          exp = act = "<#{elem}>See #{link}</#{elem}>"
          expect(filter(act).to_html).to eq exp
        end
      end
    end

    context 'other schemes' do
      let(:link) { 'foo://bar.baz/' }

      it 'autolinks smb' do
        link = 'smb:///Volumes/shared/foo.pdf'
        doc = filter("See #{link}")

        expect(doc.at_css('a').text).to eq link
        expect(doc.at_css('a')['href']).to eq link
      end

      it 'autolinks irc' do
        link = 'irc://irc.freenode.net/git'
        doc = filter("See #{link}")

        expect(doc.at_css('a').text).to eq link
        expect(doc.at_css('a')['href']).to eq link
      end

      it 'does not include trailing punctuation' do
        doc = filter("See #{link}.")
        expect(doc.at_css('a').text).to eq link

        doc = filter("See #{link}, ok?")
        expect(doc.at_css('a').text).to eq link
      end

      it 'accepts link_attr options' do
        doc = filter("See #{link}", link_attr: {class: 'custom'})
        expect(doc.at_css('a')['class']).to eq 'custom'
      end

      described_class::IGNORE_PARENTS.each do |elem|
        it "ignores valid links contained inside '#{elem}' element" do
          exp = act = "<#{elem}>See #{link}</#{elem}>"
          expect(filter(act).to_html).to eq exp
        end
      end
    end
  end
end