__tests__/h3.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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 |
const h3 = require("../h3.js").default; describe("h3", () => { beforeEach(() => { jest .spyOn(window, "requestAnimationFrame") .mockImplementation((cb) => cb()); }); afterEach(() => { window.requestAnimationFrame.mockRestore(); }); it("should support a way to discriminate functions and objects", () => { const v1 = h3("div", { onclick: () => true }); const v2 = h3("div", { onclick: () => true }); const v3 = h3("div", { onclick: () => false }); const v4 = h3("div"); expect(v1.equal(v2)).toEqual(true); expect(v1.equal(v3)).toEqual(false); expect(v4.equal({ type: "div" })).toEqual(false); expect(v1.equal(null, null)).toEqual(true); expect(v1.equal(null, undefined)).toEqual(false); }); it("should support the creation of empty virtual node elements", () => { expect(h3("div")).toEqual({ type: "div", children: [], attributes: {}, classList: [], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, value: undefined, }); }); it("should throw an error when invalid arguments are supplied", () => { const empty = () => h3(); const invalid1st = () => h3(1); const invalid1st2 = () => h3(1, {}); const invalid1st3 = () => h3(1, {}, []); const invalid1st1 = () => h3(() => ({ type: "#text", value: "test" })); const invalid1st1b = () => h3({ a: 2 }); const invalid2nd = () => h3("div", 1); const invalid2nd2 = () => h3("div", true, []); const invalid2nd3 = () => h3("div", null, []); const invalidChildren = () => h3("div", ["test", 1, 2]); const tooManyArgs = () => h3("div", { id: "test" }, "test", "aaa"); expect(empty).toThrowError(/No arguments passed/); expect(invalid1st).toThrowError(/Invalid first argument/); expect(invalid1st2).toThrowError(/Invalid first argument/); expect(invalid1st3).toThrowError(/Invalid first argument/); expect(invalid1st1).toThrowError(/does not return a VNode/); expect(invalid1st1b).toThrowError(/Invalid first argument/); expect(invalid2nd).toThrowError(/second argument of a VNode constructor/); expect(invalid2nd2).toThrowError(/Invalid second argument/); expect(invalid2nd3).toThrowError(/Invalid second argument/); expect(invalidChildren).toThrowError(/not a VNode: 1/); expect(tooManyArgs).toThrowError(/Too many arguments/); }); it("should support the creation of elements with a single, non-array child", () => { const vnode1 = h3("div", () => "test"); const vnode2 = h3("div", () => h3("span")); expect(vnode1.children[0].value).toEqual("test"); expect(vnode2.children[0].type).toEqual("span"); }); it("should remove null/false/undefined children", () => { const v1 = h3("div", [false, "test", undefined, null, ""]); expect(v1.children).toEqual([ h3({ type: "#text", value: "test" }), h3({ type: "#text", value: "" }), ]); }); it("should support the creation of nodes with a single child node", () => { const result = { type: "div", children: [ { type: "#text", children: [], attributes: {}, classList: [], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, value: "test", }, ], attributes: {}, classList: [], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, value: undefined, }; expect(h3("div", "test")).toEqual(result); const failing = () => h3("***"); expect(failing).toThrowError(/Invalid selector/); }); it("should support the creation of virtual node elements with classes", () => { const a = h3("div.a.b.c"); const b = h3("div", { classList: ["a", "b", "c"] }); expect(a).toEqual({ type: "div", children: [], attributes: {}, classList: ["a", "b", "c"], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, type: "div", value: undefined, }); expect(a).toEqual(b); }); it("should support the creation of virtual node elements with attributes and classes", () => { expect(h3("div.test1.test2", { id: "test" })).toEqual({ type: "div", children: [], classList: ["test1", "test2"], data: {}, attributes: {}, eventListeners: {}, id: "test", $html: undefined, style: undefined, type: "div", value: undefined, }); }); it("should support the creation of virtual node elements with text children and classes", () => { expect(h3("div.test", ["a", "b"])).toEqual({ type: "div", children: [ { attributes: {}, children: [], classList: [], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, type: "#text", value: "a", }, { attributes: {}, children: [], classList: [], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, type: "#text", value: "b", }, ], attributes: {}, classList: ["test"], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, value: undefined, }); }); it("should support the creation of virtual node elements with text children, attributes, and classes", () => { expect( h3("div.test", { title: "Test...", id: "test" }, ["a", "b"]) ).toEqual({ type: "div", children: [ { attributes: {}, children: [], classList: [], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, type: "#text", value: "a", }, { attributes: {}, children: [], classList: [], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, type: "#text", value: "b", }, ], data: {}, eventListeners: {}, id: "test", $html: undefined, style: undefined, value: undefined, attributes: { title: "Test..." }, classList: ["test"], }); }); it("should support the creation of virtual node elements with attributes", () => { expect(h3("input", { type: "text", value: "AAA" })).toEqual({ type: "input", children: [], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, value: "AAA", attributes: { type: "text" }, classList: [], }); }); it("should support the creation of virtual node elements with event handlers", () => { const fn = () => true; expect(h3("button", { onclick: fn })).toEqual({ type: "button", children: [], data: {}, eventListeners: { click: fn, }, id: undefined, $html: undefined, style: undefined, value: undefined, attributes: {}, classList: [], }); expect(() => h3("span", { onclick: "something" })).toThrowError( /onclick event is not a function/ ); }); it("should support the creation of virtual node elements with element children and classes", () => { expect( h3("div.test", ["a", h3("span", ["test1"]), () => h3("span", ["test2"])]) ).toEqual({ attributes: {}, type: "div", children: [ { attributes: {}, children: [], classList: [], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, type: "#text", value: "a", }, { type: "span", children: [ { attributes: {}, children: [], classList: [], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, type: "#text", value: "test1", }, ], attributes: {}, classList: [], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, value: undefined, }, { type: "span", children: [ { attributes: {}, children: [], classList: [], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, type: "#text", value: "test2", }, ], attributes: {}, classList: [], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, value: undefined, }, ], classList: ["test"], data: {}, eventListeners: {}, id: undefined, $html: undefined, style: undefined, value: undefined, }); }); it("should not allow certain methods and properties to be called/accessed before initialization", () => { const route = () => h3.route; const state = () => h3.state; const redraw = () => h3.redraw(); const dispatch = () => h3.dispatch(); const on = () => h3.on(); const navigateTo = () => h3.navigateTo(); expect(route).toThrowError(/No application initialized/); expect(state).toThrowError(/No application initialized/); expect(redraw).toThrowError(/No application initialized/); expect(dispatch).toThrowError(/No application initialized/); expect(on).toThrowError(/No application initialized/); expect(navigateTo).toThrowError(/No application initialized/); }); it("should provide an init method to initialize a SPA with a single component", async () => { const c = () => h3("div", "Hello, World!"); const body = document.body; const appendChild = jest.spyOn(body, "appendChild"); await h3.init(c); expect(appendChild).toHaveBeenCalled(); expect(body.childNodes[0].childNodes[0].data).toEqual("Hello, World!"); }); it("should provide some validation at initialization time", async () => { try { await h3.init({ element: "INVALID", routes: {} }); } catch (e) { expect(e.message).toMatch(/Invalid element/); } try { await h3.init({ element: document.body }); } catch (e) { expect(e.message).toMatch(/not a valid configuration object/); } try { await h3.init({ element: document.body, routes: {} }); } catch (e) { expect(e.message).toMatch(/No routes/); } }); it("should expose a redraw method", async () => { const vnode = h3("div"); await h3.init(() => vnode); jest.spyOn(vnode, "redraw"); h3.redraw(); expect(vnode.redraw).toHaveBeenCalled(); h3.redraw(true); h3.redraw(); h3.redraw(); expect(vnode.redraw).toHaveBeenCalledTimes(2); }); }); |