-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpseudo-classes.ts
202 lines (180 loc) · 7 KB
/
pseudo-classes.ts
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
import * as CSSselect from "../src";
import { DomUtils, parseDocument, parseDOM } from "htmlparser2";
import type { AnyNode, Element } from "domhandler";
import type { Adapter } from "../src/types.js";
const dom = parseDOM(
"<div><p>In the end, it doesn't really Matter.</p><div>Indeed-that's a delicate matter.</div>",
) as Element[];
describe(":icontains", () => {
describe("ignore case", () => {
it("should match full string", () => {
let matches = CSSselect.selectAll(
":icontains(indeed-that's a delicate matter.)",
dom,
);
expect(matches).toHaveLength(2);
expect(matches).toStrictEqual([dom[0], dom[0].children[1]]);
matches = CSSselect.selectAll(
":icontains(inDeeD-THAT's a DELICATE matteR.)",
dom,
);
expect(matches).toHaveLength(2);
expect(matches).toStrictEqual([dom[0], dom[0].children[1]]);
});
it("should match substring", () => {
let matches = CSSselect.selectAll(":icontains(indeed)", dom);
expect(matches).toHaveLength(2);
expect(matches).toStrictEqual([dom[0], dom[0].children[1]]);
matches = CSSselect.selectAll(":icontains(inDeeD)", dom);
expect(matches).toHaveLength(2);
expect(matches).toStrictEqual([dom[0], dom[0].children[1]]);
});
it("should match specific element", () => {
let matches = CSSselect.selectAll("p:icontains(matter)", dom);
expect(matches).toHaveLength(1);
expect(matches).toStrictEqual([dom[0].children[0]]);
matches = CSSselect.selectAll("p:icontains(mATter)", dom);
expect(matches).toHaveLength(1);
expect(matches).toStrictEqual([dom[0].children[0]]);
});
it("should match multiple elements", () => {
let matches = CSSselect.selectAll(":icontains(matter)", dom);
expect(matches).toHaveLength(3);
expect(matches).toStrictEqual([
dom[0],
dom[0].children[0],
dom[0].children[1],
]);
matches = CSSselect.selectAll(":icontains(mATter)", dom);
expect(matches).toHaveLength(3);
expect(matches).toStrictEqual([
dom[0],
dom[0].children[0],
dom[0].children[1],
]);
});
it("should match empty string", () => {
const matches = CSSselect.selectAll(":icontains()", dom);
expect(matches).toHaveLength(3);
expect(matches).toStrictEqual([
dom[0],
dom[0].children[0],
dom[0].children[1],
]);
});
it("should match quoted string", () => {
let matches = CSSselect.selectAll(":icontains('')", dom);
expect(matches).toHaveLength(3);
expect(matches).toStrictEqual([
dom[0],
dom[0].children[0],
dom[0].children[1],
]);
matches = CSSselect.selectAll("p:icontains('matter')", dom);
expect(matches).toHaveLength(1);
expect(matches).toStrictEqual([dom[0].children[0]]);
matches = CSSselect.selectAll('p:icontains("matter")', dom);
expect(matches).toHaveLength(1);
expect(matches).toStrictEqual([dom[0].children[0]]);
});
it("should match whitespace", () => {
let matches = CSSselect.selectAll(":icontains( matter)", dom);
expect(matches).toHaveLength(3);
expect(matches).toStrictEqual([
dom[0],
dom[0].children[0],
dom[0].children[1],
]);
matches = CSSselect.selectAll(":icontains( mATter)", dom);
expect(matches).toHaveLength(3);
expect(matches).toStrictEqual([
dom[0],
dom[0].children[0],
dom[0].children[1],
]);
});
});
describe("no matches", () => {
it("should not match", () => {
const matches = CSSselect.selectAll("p:icontains(indeed)", dom);
expect(matches).toHaveLength(0);
});
});
});
describe("unmatched", () => {
it("should throw on unknown pseudo-class (#741)", () => {
expect(() => CSSselect.selectAll(":unmatched(foo)", dom)).toThrow(
"Unknown pseudo-class :unmatched",
);
expect(() => CSSselect.selectAll(":unmatched(foo)", dom)).toThrow(
"Unknown pseudo-class :unmatched",
);
expect(() => CSSselect.selectAll(":host-context(foo)", dom)).toThrow(
"Unknown pseudo-class :host-context",
);
});
});
describe(":first-child", () => {
it("should match", () => {
const matches = CSSselect.selectAll(":first-child", dom);
expect(matches).toHaveLength(2);
expect(matches).toStrictEqual([dom[0], dom[0].children[0]]);
});
it("should work without `prevElementSibling`", () => {
const adapter: Adapter<AnyNode, Element> = { ...DomUtils };
delete adapter.prevElementSibling;
const matches = CSSselect.selectAll(":first-child", dom, { adapter });
expect(matches).toHaveLength(2);
expect(matches).toStrictEqual([dom[0], dom[0].children[0]]);
});
});
describe(":empty", () => {
// Adopted from the example in https://www.w3.org/TR/selectors-4/#the-empty-pseudo
it("should match", () => {
const dom = parseDocument(`
<p></p>
<p>
<p> </p>
<p></p>
`);
const matches = CSSselect.selectAll("p:empty", dom);
expect(matches).toHaveLength(4);
});
it("should not match", () => {
const dom = parseDocument(`
<div>text</div>
<div><p></p></div>
<div> </div>
<div><p>bla</p></div>
<div>this is not <p>:empty</p></div>
`);
const matches = CSSselect.selectAll("div:empty", dom);
expect(matches).toHaveLength(0);
});
});
describe(":has", () => {
it("should cache :has if applicable", () => {
const dom = parseDocument(`
<div>
<div class="a">
<div class="b"></div>
<div class="c"></div>
</div>
<div class="d"></div>
</div>
`);
const compiled = CSSselect.compile(":has(.a .b ~ .c)");
expect(
CSSselect.selectAll<AnyNode, Element>(compiled, dom),
).toHaveLength(2);
(dom.childNodes[1] as any).childNodes[1].attribs.class = "";
// Should not find the element anymore
expect(CSSselect.selectAll<AnyNode, Element>(".a", dom)).toHaveLength(
0,
);
// But as we have cached the results in `compiled`, we should succeed here.
expect(
CSSselect.selectAll<AnyNode, Element>(compiled, dom),
).toHaveLength(2);
});
});