|
| 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 | +} |
0 commit comments