-
Notifications
You must be signed in to change notification settings - Fork 1
/
parseLink.test.ts
64 lines (63 loc) · 1.54 KB
/
parseLink.test.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
import { parseLink } from "./parseLink.ts";
import { assertEquals } from "./deps/testing.ts";
Deno.test("external link", () => {
assertEquals(
parseLink({
pathType: "root",
href: "/project/title#61b5253a1280f00000003d6b5e",
}),
{
project: "project",
title: "title",
hash: "61b5253a1280f00000003d6b5e",
},
);
assertEquals(
parseLink({ pathType: "root", href: "/project/title#invalidId" }),
{
project: "project",
title: "title#invalidId",
},
);
assertEquals(parseLink({ pathType: "root", href: "/project/title" }), {
project: "project",
title: "title",
});
assertEquals(parseLink({ pathType: "root", href: "/project/" }), {
project: "project",
});
assertEquals(parseLink({ pathType: "root", href: "/project" }), {
project: "project",
});
assertEquals(
parseLink({ pathType: "root", href: "/project/#title-with-#" }),
{
project: "project",
title: "#title-with-#",
},
);
});
Deno.test("internal link", () => {
assertEquals(
parseLink({
pathType: "relative",
href: "title#61b5253a1280f00000003d6b5e",
}),
{
title: "title",
hash: "61b5253a1280f00000003d6b5e",
},
);
assertEquals(
parseLink({ pathType: "relative", href: "title#invalidId" }),
{
title: "title#invalidId",
},
);
assertEquals(parseLink({ pathType: "relative", href: "title" }), {
title: "title",
});
assertEquals(parseLink({ pathType: "relative", href: "title/with#/" }), {
title: "title/with#/",
});
});