-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathexternal_link_filter_test.go
42 lines (35 loc) · 1.46 KB
/
external_link_filter_test.go
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
package pipeline
import (
"testing"
"github.com/stretchr/testify/assert"
)
func Test_ExternalLInkFilter(t *testing.T) {
pipe := NewPipeline([]Filter{
ExternalLinkFilter{
IgnoreHosts: []string{"ruby-china.org", "*.ruby-china.com"},
},
})
html := `
<p>Hello <a href="https://ruby-china.com/foo/bar">Link</a></p>
<p>Hello <a href="https://www.ruby-china.com/foo/bar">Link</a></p>
<p>Hello <a href="https://fooo.ruby-china.com/foo/bar">Link</a></p>
<p>Hello <a href="https://ruby-china.org/foo/bar">Link</a></p>
<p>Hello <a href="https://www.ruby-china.org/foo/bar">Link</a></p>
<p>Hello <a href="https://l.ruby-china.org/foo/bar">Link</a></p>
<p>Hello <a href="https://file.github.com/foo/bar">Link</a></p>
<p>Hello <a href="https://f.google.com/foo/bar">Link</a></p>
`
expected := `
<p>Hello <a href="https://ruby-china.com/foo/bar">Link</a></p>
<p>Hello <a href="https://www.ruby-china.com/foo/bar">Link</a></p>
<p>Hello <a href="https://fooo.ruby-china.com/foo/bar">Link</a></p>
<p>Hello <a href="https://ruby-china.org/foo/bar">Link</a></p>
<p>Hello <a href="https://www.ruby-china.org/foo/bar">Link</a></p>
<p>Hello <a href="https://l.ruby-china.org/foo/bar">Link</a></p>
<p>Hello <a href="https://file.github.com/foo/bar" rel="nofollow" target="_blank">Link</a></p>
<p>Hello <a href="https://f.google.com/foo/bar" rel="nofollow" target="_blank">Link</a></p>
`
out, err := pipe.Call(html)
assert.NoError(t, err)
assertHTMLEqual(t, expected, out)
}