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
|
import * as CSSselect from "../src";
import { DomUtils, 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]]);
});
});
|