blob: 13ff138c9f6152254610deb540228e0f8e853253 (
plain) (
blame)
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
|
import { describe, it, expect } from "bun:test";
import { gcTick } from "./gc";
describe("escapeHTML", () => {
it("works", () => {
expect(escapeHTML("<script>alert(1)</script>")).toBe(
"<script>alert(1)</script>"
);
expect(escapeHTML("<")).toBe("<");
expect(escapeHTML(">")).toBe(">");
expect(escapeHTML("&")).toBe("&");
expect(escapeHTML("'")).toBe("'");
expect(escapeHTML('"')).toBe(""");
expect(escapeHTML("\n")).toBe("\n");
expect(escapeHTML("\r")).toBe("\r");
expect(escapeHTML("\t")).toBe("\t");
expect(escapeHTML("\f")).toBe("\f");
expect(escapeHTML("\v")).toBe("\v");
expect(escapeHTML("\b")).toBe("\b");
expect(escapeHTML("\u00A0")).toBe("\u00A0");
// The matrix of cases we need to test for:
// 1. Works with short strings
// 2. Works with long strings
// 3. Works with latin1 strings
// 4. Works with utf16 strings
// 5. Works when the text to escape is somewhere in the middle
// 6. Works when the text to escape is in the beginning
// 7. Works when the text to escape is in the end
// 8. Returns the same string when there's no need to escape
expect(escapeHTML("lalala" + "<script>alert(1)</script>" + "lalala")).toBe(
"lalala<script>alert(1)</script>lalala"
);
expect(escapeHTML("<script>alert(1)</script>" + "lalala")).toBe(
"<script>alert(1)</script>lalala"
);
expect(escapeHTML("lalala" + "<script>alert(1)</script>")).toBe(
"lalala" + "<script>alert(1)</script>"
);
expect(
escapeHTML(
("lalala" + "<script>alert(1)</script>" + "lalala").repeat(900)
)
).toBe("lalala<script>alert(1)</script>lalala".repeat(900));
expect(
escapeHTML(("<script>alert(1)</script>" + "lalala").repeat(900))
).toBe("<script>alert(1)</script>lalala".repeat(900));
expect(
escapeHTML(("lalala" + "<script>alert(1)</script>").repeat(900))
).toBe(("lalala" + "<script>alert(1)</script>").repeat(900));
});
});
|