This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathProgram.js
192 lines (153 loc) · 4.8 KB
/
Program.js
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
import { Component, h, render } from "preact";
import Main from "./Main.js";
global.requestIdleCallback = (callback) => callback();
global.scrollTo = jest.fn();
class $Main extends Component {
render() {
return h("div", {}, "TEST");
}
}
class $Global extends Component {
_persist() {}
render() {
return h("span", {}, "GLOBAL");
}
}
class $Link extends Component {
render() {
return h(
"div",
{},
h("a", { href: "/user/5" }),
h("a", { href: "/blah" }),
h("a", { href: "https://www.google.com/" }),
h("a", {
href: "/user/5",
onClick: (event) => {
event.preventDefault();
},
}),
h("a", {
href: "/user/asd",
}),
h("a", { href: "#hash", name: "hash" })
);
}
}
const { program, navigate, Decoder } = Main;
const route = {
path: "/user/:id",
handler: jest.fn(),
decoders: [Decoder.number],
mapping: ["id"],
};
const linkRoute = {
path: "/user/:id",
handler: jest.fn(),
decoders: [Decoder.number],
mapping: ["id"],
};
const indexRoute = {
path: "*",
handler: jest.fn(),
mapping: [],
};
afterEach(() => {
jest.resetAllMocks();
});
describe("handling links", () => {
test("it does not navigate to local link that does not have a route", () => {
let event = new window.Event("click", { bubbles: true });
program.routes = [linkRoute];
program.render($Link);
program.root.querySelector("a:nth-child(2)").dispatchEvent(event);
expect(linkRoute.handler.mock.calls.length).toBe(0);
});
test("it does not navigate to different origin", () => {
let event = new window.Event("click", { bubbles: true });
program.routes = [linkRoute];
program.render($Link);
program.root.querySelector("a:nth-child(3)").dispatchEvent(event);
expect(linkRoute.handler.mock.calls.length).toBe(0);
});
test("it does not navigate if default is prevented already", () => {
let event = new window.Event("click", { bubbles: true, cancelable: true });
program.routes = [linkRoute];
program.render($Link);
program.root.querySelector("a:nth-child(4)").dispatchEvent(event);
expect(linkRoute.handler.mock.calls.length).toBe(0);
});
test("it does not if ctrl key is pressed", () => {
let event = new window.MouseEvent("click", {
bubbles: true,
ctrlKey: true,
});
program.routes = [linkRoute];
program.render($Link);
program.root.querySelector("a:nth-child(1)").dispatchEvent(event);
expect(linkRoute.handler.mock.calls.length).toBe(0);
});
test("it does not navigates if param type is different", () => {
let event = new window.Event("click", { bubbles: true });
program.routes = [linkRoute];
program.render($Link);
program.root.querySelector("a:nth-child(5)").dispatchEvent(event);
expect(linkRoute.handler.mock.calls.length).toBe(0);
});
test("it navigates to local link", () => {
let event = new window.Event("click", { bubbles: true });
program.routes = [linkRoute];
program.render($Link);
program.root.querySelector("a").dispatchEvent(event);
expect(linkRoute.handler.mock.calls.length).toBe(1);
expect(linkRoute.handler.mock.calls[0][0]).toBe(5);
});
test("it does not prevent native hash behavior", () => {
let event = new window.Event("click", { bubbles: true });
program.routes = [indexRoute];
program.render($Link);
program.root.querySelector("a:nth-child(6)").dispatchEvent(event);
expect(linkRoute.handler.mock.calls.length).toBe(0);
});
});
describe("handling navigation", () => {
test("handles popstate event", () => {
window.dispatchEvent(new PopStateEvent("popstate"));
});
test("calls the handler with proper parameters if matches", () => {
program.routes = [route];
navigate("/user/1");
expect(route.handler.mock.calls.length).toBe(1);
expect(route.handler.mock.calls[0][0]).toBe(1);
});
test("if it does not match it does nothing", () => {
program.routes = [route];
navigate("/blah");
});
test("handles index route", () => {
program.routes = [indexRoute];
navigate("/user/2");
expect(indexRoute.handler.mock.calls.length).toBe(1);
});
});
describe("adding routes", () => {
test("adds routes", () => {
program.routes = [];
program.addRoutes([route]);
expect(program.routes[0]).toBe(route);
});
});
describe("render", () => {
test("it does nothing if there is no main component", () => {
program.render();
});
test("it renders the main component", () => {
program.render($Main);
expect(program.root.querySelector("div").textContent).toBe("TEST");
});
test("it renders globals component", (done) => {
program.render($Main, { A: $Global });
expect(program.root.querySelector("span").textContent).toBe("GLOBAL");
requestAnimationFrame(() => done());
});
});