-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathstringmanip_test.go
104 lines (88 loc) · 2.44 KB
/
stringmanip_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
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
package utils
import (
"bytes"
"reflect"
"testing"
)
func TestExtractKW1(t *testing.T) {
_, kwMap := ExtractKeywords([]byte(`<!--
title: test
theme: fest
-->
# Headline
text
`), []string{"title", "theme", "beard"})
if !bytes.Equal(kwMap["title"], []byte("test")) {
t.Errorf("Expected 'test', got '%s'", kwMap["title"])
}
if !bytes.Equal(kwMap["theme"], []byte("fest")) {
t.Errorf("Expected 'fest', got '%s'", kwMap["theme"])
}
if _, ok := kwMap["beard"]; ok {
t.Errorf("Expected 'beard' key to be absent, but it exists.")
}
if kwMap["beard"] != nil && len(kwMap["beard"]) != 0 {
t.Errorf("Expected empty byte slice, got '%s'", kwMap["beard"])
}
}
func TestExtractKW2(t *testing.T) {
data := `
% Best Title
<!--
weather: nice
-->
<!-- boat: missing -->
<!-- horse: ignored -->
# Page contents goes here
And also here, but this should be ignored:
title: nope
weather: nope
boat: nope
All done.
`
_, kwMap := ExtractKeywords([]byte(data), []string{"title", "weather", "boat"})
if !bytes.Equal(kwMap["title"], []byte("Best Title")) {
t.Errorf("Expected 'Best Title', got '%s'", kwMap["title"])
}
if !bytes.Equal(kwMap["weather"], []byte("nice")) {
t.Errorf("Expected 'nice', got '%s'", kwMap["weather"])
}
if !bytes.Equal(kwMap["boat"], []byte("missing")) {
t.Errorf("Expected 'missing', got '%s'", kwMap["boat"])
}
if _, ok := kwMap["horse"]; ok {
t.Errorf("Expected 'horse' key to be absent, but it exists.")
}
if kwMap["horse"] != nil && len(kwMap["horse"]) != 0 {
t.Errorf("Expected empty byte slice, got '%s'", kwMap["horse"])
}
}
func TestExtractLocalImagePaths(t *testing.T) {
tests := []struct {
html string
expected []string
}{
{
html: `<img src="local1.jpg"> <img src="http://remote.com/remote1.jpg"> <img src="local2.png"> <img src="https://remote.com/remote2.png">`,
expected: []string{"local1.jpg", "local2.png"},
},
{
html: `<img src="/path/to/image.jpg"> <img src="anotherLocalImage.png">`,
expected: []string{"/path/to/image.jpg", "anotherLocalImage.png"},
},
{
html: `<img src="https://remote.com/image.jpg">`,
expected: []string{},
},
{
html: `<img src="localWithoutExtension">`,
expected: []string{"localWithoutExtension"},
},
}
for _, test := range tests {
result := ExtractLocalImagePaths(test.html)
if !reflect.DeepEqual(result, test.expected) {
t.Errorf("For HTML %q, expected %#v but got %#v", test.html, test.expected, result)
}
}
}