Skip to content

Commit 4b0dedb

Browse files
committed
Write tests for router
1 parent 7234191 commit 4b0dedb

File tree

2 files changed

+71
-0
lines changed

2 files changed

+71
-0
lines changed

src/router_test.tsx

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
// Tests for the router component.
2+
import { h, render, rerender } from "preact";
3+
import { testBrowser } from "../tools/tester";
4+
import { push, Router } from "./router";
5+
import { assertEqual } from "./util";
6+
7+
const matchedProps = new Map<string, any>();
8+
9+
interface ComponentProps {
10+
id: string;
11+
matches?: any;
12+
path?: string;
13+
}
14+
// tslint:disable-next-line:variable-name
15+
const Test = (props: ComponentProps) => {
16+
matchedProps.set(props.id, props.matches);
17+
return (
18+
<div id={props.id} class="test" />
19+
);
20+
};
21+
22+
testBrowser(async function router() {
23+
document.body.innerHTML = "";
24+
render(
25+
<Router>
26+
<Test id="p1" path="/" />
27+
<Test id="p2" path="/test" />
28+
<Test id="p3" path="/page/:v" />
29+
<Test id="p4" path="/test/:v" />
30+
<Test id="404" />
31+
</Router>
32+
, document.body);
33+
// .slice(1) is to remove # from the location.hash.
34+
const path = () => document.location.hash.slice(1);
35+
const activePage = () => {
36+
const rendered = document.querySelectorAll(".test");
37+
// We must render only one component at each moment.
38+
assertEqual(rendered.length, 1);
39+
return rendered[0].id;
40+
};
41+
// Rest path.
42+
window.location.hash = "/";
43+
await flush();
44+
// Initial page.
45+
assertEqual(path(), "/");
46+
assertEqual(activePage(), "p1");
47+
// 404 page.
48+
push("/propel");
49+
await flush();
50+
assertEqual(path(), "/propel");
51+
assertEqual(activePage(), "404");
52+
// We must not render p2 in this case.
53+
push("/test/12345");
54+
await flush();
55+
assertEqual(path(), "/test/12345");
56+
assertEqual(activePage(), "p4");
57+
assertEqual(matchedProps.get("p4").v, "12345");
58+
// Go to a page with some argument.
59+
push("/page/345");
60+
await flush();
61+
assertEqual(path(), "/page/345");
62+
assertEqual(activePage(), "p3");
63+
assertEqual(matchedProps.get("p3").v, "345");
64+
});
65+
66+
// Call this to ensure that the DOM has been updated after events.
67+
function flush(): Promise<void> {
68+
rerender();
69+
return Promise.resolve();
70+
}

src/test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ import "./fetch_test";
33
import "./inspector_test";
44
import "./nb_test";
55
import "./nb_transpiler_test";
6+
import "./router_test";
67
import "./rpc_test";

0 commit comments

Comments
 (0)