forked from thesephist/torus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjdom.js
532 lines (452 loc) · 14.2 KB
/
jdom.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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
describe('jdom template tag', () => {
const isObject = o => typeof o === 'object' && o !== null;
const normalizeJDOM = jdom => {
if (isObject(jdom)) {
if (!('attrs' in jdom)) {
jdom.attrs = {};
}
if (!('events' in jdom)) {
jdom.events = {};
}
if (!('children' in jdom)) {
jdom.children = [];
}
for (const c of jdom.children) {
normalizeJDOM(c);
}
}
return jdom;
}
const compare = (title, expression, result) => {
normalizeJDOM(expression);
normalizeJDOM(result);
it(title, () => {
expect(expression,
`\n${
JSON.stringify(expression, true, '\t')
}\n\t^ should have been ...\n${
JSON.stringify(result, null, '\t')
}\n`)
.to.deep.equal(result);
});
}
compare(
'empty string',
jdom``,
null
);
compare(
'text node',
jdom`torus`,
'torus'
);
// Test exists because we take a shortcut path for de-templating short strings <16chars-ish
compare(
'long text node',
jdom`This is a very long text node, which probably only appears in very long template strings`,
'This is a very long text node, which probably only appears in very long template strings'
);
compare(
'comment',
jdom`<!--- some comment that should be ignored -->`,
null
);
const tn = document.createElement('video');
compare(
'literal Node',
jdom`${tn}`,
tn
);
compare(
'cached templates with different variables should output different results (pt 1)',
jdom`<h1>${'Hello, World'}</h1>`,
{tag: 'h1', children: ['Hello, World']}
);
compare(
'cached templates with different variables should output different results (pt 2)',
jdom`<h1>${'Goodbye, World'}</h1>`,
{tag: 'h1', children: ['Goodbye, World']}
);
describe('tags', () => {
compare(
'self-closing tag',
jdom`<input/>`,
{tag: 'input'}
);
compare(
'self-closing tag with whitespace',
jdom`< input / >`,
{tag: 'input'}
);
compare(
'<div> </div>',
jdom`<div> </div>`,
{tag: 'div'}
);
compare(
'<div>\\n</div> (with a newline)',
jdom`<div>\n</div>`,
{tag: 'div'}
);
compare(
'whitespace around input',
jdom` <input /> \n ${' '} `,
{tag: 'input'}
);
compare(
'dynamic tag name',
jdom`<${'div'}></div>`,
{tag: 'div'}
);
compare(
'general closing tags',
jdom`<div>Hi<ul></></>`,
{tag: 'div', children: [
'Hi',
{tag: 'ul'},
]}
);
});
describe('attrs', () => {
compare(
'parse a single attribute correctly',
jdom`<input type="text"/>`,
{tag: 'input', attrs: {type: 'text'}}
);
compare(
'parse HTML data attributes',
jdom`<button data-color="red"></button>`,
{tag: 'button', attrs: {'data-color': 'red'}}
);
compare(
'parse attributes without quotes',
jdom`<input type=text/>`,
{tag: 'input', attrs: {type: 'text'}}
);
compare(
'classes into an array in JDOM',
jdom`<div class="a b class "></div>`,
{tag: 'div', attrs: {
class: ['a', 'b', 'class'],
}}
);
compare(
'styles in to a styles JDOM object',
jdom`<div style=" display: flex;flex-direction
:column; transition: opacity .9s"></div>`,
{tag: 'div', attrs: {style: {
'display': 'flex',
'flexDirection': 'column',
'transition': 'opacity .9s',
}}}
);
compare(
'styles in to a styles JDOM object with semicolon ending',
jdom`<div style=" display: flex;flex-direction
:column; transition: opacity .9s; "></div>`,
{tag: 'div', attrs: {style: {
'display': 'flex',
'flexDirection': 'column',
'transition': 'opacity .9s',
}}}
);
compare(
'URLs in self-closing tags with /',
jdom`<img src="/static/img.png"/>`,
{tag: 'img', attrs: {
src: '/static/img.png',
}}
);
compare(
'escape with backslash',
jdom`<button type="my\\"type"`,
{tag: 'button', attrs: {
type: 'my"type',
}}
);
compare(
'equals sign in quotes should be treated like normal',
jdom`<button data-prop="ab=cd"/>`,
{tag: 'button', attrs: {
'data-prop': 'ab=cd',
}}
);
compare(
'multiple attributes',
jdom`<input type="text" name="username" />`,
{tag: 'input', attrs: {type: 'text', name: 'username'}}
);
compare(
'attributes without value',
jdom`<button disabled></button>`,
{tag: 'button', attrs: {disabled: true}}
);
compare(
'attributes with an empty value',
jdom`<div class=""></div>`,
{tag: 'div'}
);
compare(
'mixed IDL and valued attributes',
jdom`<button disabled data-color="blue"></button>`,
{tag: 'button', attrs: {disabled: true, 'data-color': 'blue'}}
);
compare(
'whitespaces distributed in the input',
jdom`<button \n disabled data-color \n = "blue"></button>`,
{tag: 'button', attrs: {disabled: true, 'data-color': 'blue'}}
);
compare(
'interpolate mixed values to a string',
jdom`<img data-prop="first ${{a: 'b'}}"`,
{tag: 'img', attrs: {'data-prop': 'first [object Object]'}}
);
compare(
'multiple interpolated template values in a single attribute',
jdom`<img data-prop="first${1}second${2}" />`,
{tag: 'img', attrs: {'data-prop': 'first1second2'}}
);
compare(
'quoted attributes with no space',
jdom`<div type="a"kind="b></div>`,
{tag: 'div', attrs: {type: 'a', kind: 'b'}}
);
compare(
'complex multi-attribute input',
jdom`< div class ="hi
jinja name" disabled
color =
"${{object: 'black'}}" taste
= content list="what${{same: 'difference'}}
test ${{much: 9}}" > </div>`,
{tag: 'div', attrs: {
class: ['hi', 'jinja', 'name'],
disabled: true,
color: {object: 'black'},
taste: 'content',
list: 'what[object Object] test [object Object]',
}}
);
});
describe('events', () => {
const fnA = () => 'a';
const fnB = () => 'b';
compare(
'correctly parse one event listener',
jdom`<button onclick=${fnA}></button>`,
{tag: 'button', events: {click: [fnA]}}
);
compare(
'two different events',
jdom`<button onclick="${fnA}"onblur="${fnB}"></button>`,
{tag: 'button', events: {click: [fnA], blur: [fnB]}}
);
compare(
'preserve case of event name',
jdom`<button onDOMContentLoaded=${fnA}></button>`,
{tag: 'button', events: {DOMContentLoaded: [fnA]}}
);
});
describe('children', () => {
const tmpNode = document.createElement('img');
const tmp2 = document.createElement('article');
compare(
'children as markup',
jdom`<ul><li>Text</li></ul>`,
{tag: 'ul', children: [
{tag: 'li', children: ['Text']},
]}
);
compare(
'children as Node',
jdom`<li>
${tmpNode}
</li>`,
{tag: 'li', children: [
tmpNode,
]}
);
compare(
'children as JDOM',
jdom`<ul>${
jdom`<li>Text</li>`
}</ul>`,
{tag: 'ul', children: [
{tag: 'li', children: ['Text']},
]}
);
compare(
'children as array of JDOM',
jdom`<ul>${[
jdom`<li>Text 1</li>`,
jdom`<li>Text 2</li>`,
]}</ul>`,
{tag: 'ul', children: [
{tag: 'li', children: ['Text 1']},
{tag: 'li', children: ['Text 2']},
]}
);
const fnA = () => {};
compare(
'deeply nested template variables',
jdom`<ul><li><button onclick="${fnA}">${{b: 'a'}}</button>${'test'}</li></ul>`,
{tag: 'ul', children: [
{tag: 'li', children: [
{tag: 'button', events: {
click: [fnA],
}, children: [{b: 'a'}]},
'test',
]},
]}
);
compare(
'jdom inside jdom with falsy template values (regression)',
jdom`<div>${jdom`<div>${0}</div>`}</div>`,
{tag: 'div', children: [
{tag: 'div', children: [
0,
]},
]}
);
compare(
'HTML entities in children',
jdom`<span><test></span>`,
{tag: 'span', children: ['<test>']}
);
compare(
'heterogeneous children',
jdom`<div>
First
${42}
<li>Second</li>
${tmpNode}
last
</div>`,
{tag: 'div', children: [
' First ', 42, ' ',
{tag: 'li', children: ['Second']},
' ',
tmpNode,
' last ',
]}
);
compare(
'array of literal elements',
jdom`<main>${[tmpNode, tmp2]}</main>`,
{tag: 'main', children: [tmpNode, tmp2]}
);
compare(
'deep nesting',
jdom`<main><article><section class="mySection c2"><h1>hi</h1></section></article></main>`,
{tag: 'main', children: [
{tag: 'article', children: [
{tag: 'section', attrs: {class: ['mySection', 'c2']}, children: [
{tag: 'h1', children: ['hi']},
]},
]},
]}
);
compare(
'non-tag parts outside of the root node should be treated as top-level children',
jdom`<div>hello</div>hi`,
{tag: 'div', children: ['hello']}
);
compare(
'nesting same tags',
jdom`<div>
<div>
<div>hi</div>
</div>
<div></div>
</div>`,
{tag: 'div', children: [
{tag: 'div', children: [
{tag: 'div', children: ['hi']},
]},
{tag: 'div'},
]}
);
compare(
'HTML markup injected into JDOM template parameters should be escaped, not parsed as JS or HTML (security risk)',
jdom`<div>${'<h1>Hi</h1>'}</div>`,
{tag: 'div', children: [
'<h1>Hi</h1>',
]}
);
compare(
'JS code injected into JDOM template parameters should be escaped, not parsed as JS or HTML (security risk)',
jdom`<script>${'</script>console.log("alert")'}</script>`,
{tag: 'script', children: [
'</script>console.log("alert")',
]}
);
});
describe('graceful failure', () => {
const noThrow = (title, fn) => {
it(title, () => expect(fn).to.not.throw());
}
noThrow(
'empty string',
() => jdom``
);
noThrow(
'unclosed tags',
() => jdom`<div `
);
noThrow(
'newline inside of a closing tag',
() => jdom`<div\n></\ndiv\n>`
);
noThrow(
'mismatched tags',
() => jdom`<div><p></div>`
);
noThrow(
'broken attributes',
() => jdom`<img src=/>`
);
noThrow(
'attempt to backslash-escape in attributes',
() => jdom`<img src=\\*abc\\ />`
);
noThrow(
'quotes in attributes',
() => jdom`<img src=source"url />`
);
noThrow(
'quoted attribute labels',
() => jdom`<img src="source_url" "testdata" />`
);
noThrow(
'broken and incomplete quoted attributes',
() => jdom`<img srcset=source_set" src="source_url""/>`
);
noThrow(
'broken tag',
() => jdom`<div>di>`
);
noThrow(
'invalid attributes',
() => jdom`<div ${{santa: 'claus'}}></div>`
);
noThrow(
'invalid JDOM into children',
() => jdom`<div>${{
tag: 'div',
name: ['1', {
name2: 'thing',
}, [{
name3: 'thing',
}]],
}}</div>`
);
noThrow(
'mismatched quotes',
() => jdom`<img src="url ab c/>`
);
noThrow(
'script tag that closes itself inside its contents',
() => jdom`<script>console.log('</script>');</script>`
);
});
});