aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/PuerkitoBio/goquery/filter_test.go
blob: f663c08f6577b6b7ff81077dc0a931436ffd8a89 (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
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
198
199
200
201
202
203
204
205
206
package goquery

import (
	"testing"
)

func TestFilter(t *testing.T) {
	sel := Doc().Find(".span12").Filter(".alert")
	assertLength(t, sel.Nodes, 1)
}

func TestFilterNone(t *testing.T) {
	sel := Doc().Find(".span12").Filter(".zzalert")
	assertLength(t, sel.Nodes, 0)
}

func TestFilterInvalid(t *testing.T) {
	sel := Doc().Find(".span12").Filter("")
	assertLength(t, sel.Nodes, 0)
}

func TestFilterRollback(t *testing.T) {
	sel := Doc().Find(".pvk-content")
	sel2 := sel.Filter(".alert").End()
	assertEqual(t, sel, sel2)
}

func TestFilterFunction(t *testing.T) {
	sel := Doc().Find(".pvk-content").FilterFunction(func(i int, s *Selection) bool {
		return i > 0
	})
	assertLength(t, sel.Nodes, 2)
}

func TestFilterFunctionRollback(t *testing.T) {
	sel := Doc().Find(".pvk-content")
	sel2 := sel.FilterFunction(func(i int, s *Selection) bool {
		return i > 0
	}).End()
	assertEqual(t, sel, sel2)
}

func TestFilterNode(t *testing.T) {
	sel := Doc().Find(".pvk-content")
	sel2 := sel.FilterNodes(sel.Nodes[2])
	assertLength(t, sel2.Nodes, 1)
}

func TestFilterNodeRollback(t *testing.T) {
	sel := Doc().Find(".pvk-content")
	sel2 := sel.FilterNodes(sel.Nodes[2]).End()
	assertEqual(t, sel, sel2)
}

func TestFilterSelection(t *testing.T) {
	sel := Doc().Find(".link")
	sel2 := Doc().Find("a[ng-click]")
	sel3 := sel.FilterSelection(sel2)
	assertLength(t, sel3.Nodes, 1)
}

func TestFilterSelectionRollback(t *testing.T) {
	sel := Doc().Find(".link")
	sel2 := Doc().Find("a[ng-click]")
	sel2 = sel.FilterSelection(sel2).End()
	assertEqual(t, sel, sel2)
}

func TestFilterSelectionNil(t *testing.T) {
	var sel2 *Selection

	sel := Doc().Find(".link")
	sel3 := sel.FilterSelection(sel2)
	assertLength(t, sel3.Nodes, 0)
}

func TestNot(t *testing.T) {
	sel := Doc().Find(".span12").Not(".alert")
	assertLength(t, sel.Nodes, 1)
}

func TestNotInvalid(t *testing.T) {
	sel := Doc().Find(".span12").Not("")
	assertLength(t, sel.Nodes, 2)
}

func TestNotRollback(t *testing.T) {
	sel := Doc().Find(".span12")
	sel2 := sel.Not(".alert").End()
	assertEqual(t, sel, sel2)
}

func TestNotNone(t *testing.T) {
	sel := Doc().Find(".span12").Not(".zzalert")
	assertLength(t, sel.Nodes, 2)
}

func TestNotFunction(t *testing.T) {
	sel := Doc().Find(".pvk-content").NotFunction(func(i int, s *Selection) bool {
		return i > 0
	})
	assertLength(t, sel.Nodes, 1)
}

func TestNotFunctionRollback(t *testing.T) {
	sel := Doc().Find(".pvk-content")
	sel2 := sel.NotFunction(func(i int, s *Selection) bool {
		return i > 0
	}).End()
	assertEqual(t, sel, sel2)
}

func TestNotNode(t *testing.T) {
	sel := Doc().Find(".pvk-content")
	sel2 := sel.NotNodes(sel.Nodes[2])
	assertLength(t, sel2.Nodes, 2)
}

func TestNotNodeRollback(t *testing.T) {
	sel := Doc().Find(".pvk-content")
	sel2 := sel.NotNodes(sel.Nodes[2]).End()
	assertEqual(t, sel, sel2)
}

func TestNotSelection(t *testing.T) {
	sel := Doc().Find(".link")
	sel2 := Doc().Find("a[ng-click]")
	sel3 := sel.NotSelection(sel2)
	assertLength(t, sel3.Nodes, 6)
}

func TestNotSelectionRollback(t *testing.T) {
	sel := Doc().Find(".link")
	sel2 := Doc().Find("a[ng-click]")
	sel2 = sel.NotSelection(sel2).End()
	assertEqual(t, sel, sel2)
}

func TestIntersection(t *testing.T) {
	sel := Doc().Find(".pvk-gutter")
	sel2 := Doc().Find("div").Intersection(sel)
	assertLength(t, sel2.Nodes, 6)
}

func TestIntersectionRollback(t *testing.T) {
	sel := Doc().Find(".pvk-gutter")
	sel2 := Doc().Find("div")
	sel2 = sel.Intersection(sel2).End()
	assertEqual(t, sel, sel2)
}

func TestHas(t *testing.T) {
	sel := Doc().Find(".container-fluid").Has(".center-content")
	assertLength(t, sel.Nodes, 2)
	// Has() returns the high-level .container-fluid div, and the one that is the immediate parent of center-content
}

func TestHasInvalid(t *testing.T) {
	sel := Doc().Find(".container-fluid").Has("")
	assertLength(t, sel.Nodes, 0)
}

func TestHasRollback(t *testing.T) {
	sel := Doc().Find(".container-fluid")
	sel2 := sel.Has(".center-content").End()
	assertEqual(t, sel, sel2)
}

func TestHasNodes(t *testing.T) {
	sel := Doc().Find(".container-fluid")
	sel2 := Doc().Find(".center-content")
	sel = sel.HasNodes(sel2.Nodes...)
	assertLength(t, sel.Nodes, 2)
	// Has() returns the high-level .container-fluid div, and the one that is the immediate parent of center-content
}

func TestHasNodesRollback(t *testing.T) {
	sel := Doc().Find(".container-fluid")
	sel2 := Doc().Find(".center-content")
	sel2 = sel.HasNodes(sel2.Nodes...).End()
	assertEqual(t, sel, sel2)
}

func TestHasSelection(t *testing.T) {
	sel := Doc().Find("p")
	sel2 := Doc().Find("small")
	sel = sel.HasSelection(sel2)
	assertLength(t, sel.Nodes, 1)
}

func TestHasSelectionRollback(t *testing.T) {
	sel := Doc().Find("p")
	sel2 := Doc().Find("small")
	sel2 = sel.HasSelection(sel2).End()
	assertEqual(t, sel, sel2)
}

func TestEnd(t *testing.T) {
	sel := Doc().Find("p").Has("small").End()
	assertLength(t, sel.Nodes, 4)
}

func TestEndToTop(t *testing.T) {
	sel := Doc().Find("p").Has("small").End().End().End()
	assertLength(t, sel.Nodes, 0)
}