-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfirst_test.go
197 lines (177 loc) · 5.4 KB
/
first_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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
package scrappy
import (
"golang.org/x/net/html"
"strings"
"testing"
)
func TestF_Index(t *testing.T) {
s := New()
i := 5
f := s.F.Index(i)
if f.index != 5 {
t.Fatal("Unexpected error", f.index, "instead", i)
}
doc, err := html.Parse(strings.NewReader(sibling))
if err != nil {
t.Fatal("Unexpected error", err)
}
node := doc.FirstChild.FirstChild.NextSibling.FirstChild.FirstChild.NextSibling
result := s.F.Index(2).NextSibling(node, Value("xs"))
if result.FirstChild.Data != "5" {
t.Fatal("Unexpected error, wrong node")
}
}
func TestF_Parent(t *testing.T) {
s := New()
doc, err := html.Parse(strings.NewReader(document))
if err != nil {
t.Fatal("Unexpected error", err)
}
node := doc.FirstChild.NextSibling.FirstChild.NextSibling.NextSibling.FirstChild.NextSibling.FirstChild.NextSibling
result := s.F.Parent(node, Tag("body"))
if result == nil {
t.Fatal("Unexpected error, node missed")
}
result = s.F.Parent(node, Tag("html"), Attr("onload"))
if result == nil {
t.Fatal("Unexpected error, node missed")
}
}
func TestF_Depth(t *testing.T) {
s := New()
doc, err := html.Parse(strings.NewReader(document))
if err != nil {
t.Fatal("Unexpected error", err)
}
// test with tag
result := s.F.Depth(doc, Tag("p"))
if result.FirstChild.Data != "a" {
t.Fatal("Unexpected error wrong node")
}
// test with tag, attr and value
result = s.F.Depth(doc, Tag("a"), Attr("href"), Value("scrappy"))
if result.FirstChild.Data != "content" {
t.Fatal("Unexpected error wrong node")
}
// test with a valid tag, attr and a non valid value
result = s.F.Depth(doc, Tag("a"), Attr("href"), Value("scrapp"))
if result != nil {
t.Fatal("Unexpected node")
}
// test with tag, attr and value
result = s.F.Depth(doc, Tag("a"), Attr("href"), ContainsValue("scrapp"))
if result == nil {
t.Fatal("Unexpected error")
}
// test with content
result = s.F.Depth(doc, Tag("a"), Attr("href"), ContainsValue("scrapp"))
if result == nil {
t.Fatal("Unexpected error")
}
}
func TestF_Breadth(t *testing.T) {
s := New()
doc, err := html.Parse(strings.NewReader(document))
if err != nil {
t.Fatal("Unexpected error", err)
}
// test with tag
result := s.F.Breadth(doc, Tag("strong"))
if result.FirstChild.Data != "breadth" {
t.Fatal("Unexpected error, wrong node")
}
// test with another tag
result = s.F.Breadth(doc, Tag("p"))
if !strings.Contains(result.FirstChild.Data, "more") {
t.Fatal("Unexpected error, wrong node", result.FirstChild.Data)
}
}
func TestF_FirstChild(t *testing.T) {
s := New()
doc, err := html.Parse(strings.NewReader(document))
if err != nil {
t.Fatal("Unexpected error", err)
}
node := doc.FirstChild.NextSibling.FirstChild.NextSibling.NextSibling.FirstChild.NextSibling.FirstChild.NextSibling
result := s.F.FirstChild(node, Tag("ul"))
if result == nil {
t.Fatal("Unexpected error, node missed")
}
node = doc.FirstChild.NextSibling.FirstChild.NextSibling.NextSibling.FirstChild.NextSibling
result = s.F.FirstChild(node, Tag("section"), Value("xs"))
if result.Attr[0].Val != "xs" || len(result.Attr) != 1 {
t.Fatal("Unexpected error, wrong node")
}
}
func TestF_LastChild(t *testing.T) {
s := New()
doc, err := html.Parse(strings.NewReader(document))
if err != nil {
t.Fatal("Unexpected error", err)
}
node := doc.FirstChild.NextSibling.FirstChild.NextSibling.NextSibling.FirstChild.NextSibling
result := s.F.LastChild(node, Tag("section"), Value("xs"))
if result.Attr[0].Val != "xs" && len(result.Attr) != 2 {
t.Fatal("Unexpected error, wrong node")
}
}
func TestF_FirstSibling(t *testing.T) {
s := New()
doc, err := html.Parse(strings.NewReader(sibling))
if err != nil {
t.Fatal("Unexpected error", err)
}
node := doc.FirstChild.FirstChild.NextSibling.FirstChild.FirstChild.NextSibling.NextSibling.NextSibling.NextSibling.NextSibling.NextSibling.NextSibling.NextSibling.NextSibling.NextSibling.NextSibling
result := s.F.FirstSibling(node, Value("md"))
if result.FirstChild.Data != "2" {
t.Fatal("Unexpected error, wrong node")
}
result = s.F.FirstSibling(node, Value("lg"))
if result != nil {
t.Fatal("Unexpected error")
}
result = s.F.FirstSibling(node, Value("xs"))
if result.FirstChild.Data != "1" {
t.Fatal("Unexpected error, wrong node")
}
}
func TestF_LastSibling(t *testing.T) {
s := New()
doc, err := html.Parse(strings.NewReader(sibling))
if err != nil {
t.Fatal("Unexpected error", err)
}
node := doc.FirstChild.FirstChild.NextSibling.FirstChild.FirstChild.NextSibling
result := s.F.LastSibling(node, Value("xs"))
if result.FirstChild.Data != "7" {
t.Fatal("Unexpected error, wrong node")
}
}
func TestF_NextSibling(t *testing.T) {
s := New()
doc, err := html.Parse(strings.NewReader(sibling))
if err != nil {
t.Fatal("Unexpected error", err)
}
node := doc.FirstChild.FirstChild.NextSibling.FirstChild.FirstChild.NextSibling
result := s.F.NextSibling(node, Value("xs"))
if result.FirstChild.Data != "3" {
t.Fatal("Unexpected error, wrong node")
}
}
func TestF_PrevSibling(t *testing.T) {
s := New()
doc, err := html.Parse(strings.NewReader(sibling))
if err != nil {
t.Fatal("Unexpected error", err)
}
node := doc.FirstChild.FirstChild.NextSibling.FirstChild.FirstChild.NextSibling
result := s.F.NextSibling(node, Value("xs"))
if result.FirstChild.Data != "3" {
t.Fatal("Unexpected error, wrong node")
}
result = s.F.PrevSibling(result, Value("xs"))
if result.FirstChild.Data != "1" {
t.Fatal("Unexpected error, wrong node")
}
}