-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtest.js
More file actions
562 lines (444 loc) · 17 KB
/
test.js
File metadata and controls
562 lines (444 loc) · 17 KB
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
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
require('./html-domparser');
var chai = require('chai');
var expect = chai.expect;
var parser = require('../index');
var input, output;
describe('vdom-parser', function () {
it('should parse plain text', function () {
input = 'test';
output = parser(input);
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('test');
});
it('should parse html entities', function () {
input = '<div>test</div>';
output = parser(input);
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('<div>test</div>');
});
it('should parse simple node', function () {
input = '<div>test</div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.key).to.be.undefined;
expect(output.namespace).to.be.null;
var children = output.children;
expect(children).to.have.length(1);
expect(children[0].type).to.equal('VirtualText');
expect(children[0].text).to.equal('test');
});
it('should parse whitespace in node', function () {
input = '<div> test </div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
var children = output.children;
expect(children).to.have.length(1);
expect(children[0].type).to.equal('VirtualText');
expect(children[0].text).to.equal(' test ');
});
it('should ignore whitespace around node', function () {
input = ' <div>test</div> ';
// see html-domparser.js comment
// in short, polyfill requires input be trimmed first
// but in most case you should be using dom element so this is not a big deal
if (window.usingDomParserPolyfill) {
input = input.trim()
}
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
var children = output.children;
expect(children).to.have.length(1);
expect(children[0].type).to.equal('VirtualText');
expect(children[0].text).to.equal('test');
});
it('should parse html entities in node', function () {
input = '<div><div>test</div></div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
var children = output.children;
expect(children).to.have.length(1);
expect(children[0].type).to.equal('VirtualText');
expect(children[0].text).to.equal('<div>test</div>');
});
it('should parse empty node', function () {
input = '<div></div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.children).to.be.empty;
});
it('should parse node recursively', function () {
input = '<div><p>test</p></div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
var children = output.children;
expect(children).to.have.length(1);
expect(children[0].type).to.equal('VirtualNode');
expect(children[0].tagName).to.equal('P');
var textChildren = children[0].children;
expect(textChildren).to.have.length(1);
expect(textChildren[0].type).to.equal('VirtualText');
expect(textChildren[0].text).to.equal('test');
});
it('should parse id attribute on node', function () {
input = '<div id="abc">test</div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.properties.id).to.equal('abc');
});
it('should parse class attribute on node', function () {
input = '<div class="abc">test</div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.properties.className).to.equal('abc');
});
it('should parse class attribute on node when there are multiple classes', function () {
input = '<div class="abc def">test</div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.properties.className).to.equal('abc def');
});
it('should preserve camelcase attribute', function () {
input = '<input tabIndex="1">';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('INPUT');
expect(output.properties.tabIndex).to.equal('1');
});
it('should parse multiple attributes on node', function () {
input = '<input tabIndex="1" name="abc" value="123">';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('INPUT');
expect(output.properties.tabIndex).to.equal('1');
expect(output.properties.name).to.equal('abc');
expect(output.properties.value).to.equal('123');
});
it('should parse style attribute on node', function () {
input = '<div style="color: red;" id="abc">test</div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.properties.style).to.eql({
color: 'red'
});
expect(output.properties.id).to.equal('abc');
});
it('should parse complex style attribute on node', function () {
input = '<div style="color:red;width:100px;">test</div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.properties.style).to.eql({
color: 'red'
, width: '100px'
});
});
it('should parse bracket style attribute on node', function () {
var url = 'url(http://example.com/test.jpg)';
input = '<div style="color: red; width: 100px; background: ' + url + '">test</div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.properties.style.color).to.equal('red');
expect(output.properties.style.width).to.equal('100px');
expect(output.properties.style['background-image']).to.equal(url);
});
it('should always parse numeric style properties as string', function () {
input = '<div style="z-index:42">test</div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.properties.style).to.eql({
'z-index': '42'
});
});
it('should parse base64 encoded styles on node', function () {
var url = 'url(data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAkAABAALAAAAAAQABAAAAVVICSOZGlCQAosJ6mu7fiyZeKqNKToQGDsM8hBADgUXoGAiqhSvp5QAnQKGIgUhwFUYLCVDFCrKUE1lBavAViFIDlTImbKC5Gm2hB0SlBCBMQiB0UjIQA7)';
input = '<div style="background: ' + url + '">test</div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.properties.style['background-image']).to.equal(url);
});
it('should parse data attribute on node', function () {
input = '<div data-my-attr="abc">test</div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.properties.attributes['data-my-attr']).to.equal('abc');
});
it('should parse multiple data attribute on node', function () {
input = '<div data-src="http://example.com/" data-src-title="abc">test</div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.properties.attributes['data-src']).to.equal('http://example.com/');
expect(output.properties.attributes['data-src-title']).to.equal('abc');
});
it('should parse aria attribute on node', function () {
input = '<div aria-hidden="true">test</div>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.properties.attributes['aria-hidden']).to.equal('true');
});
it('should parse for attribute on label', function () {
input = '<label for="abc"></label>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('LABEL');
expect(output.properties.htmlFor).to.equal('abc');
expect(output.properties.attributes).to.be.undefined;
});
it('should parse empty label', function () {
input = '<label></label>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('LABEL');
expect(output.properties).to.eql({});
});
it('should parse html entities on attribute', function () {
input = '<input type="text" name="test" value=""test"" placeholder=""test"" alt=""test"" title=""test"">';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('INPUT');
expect(output.properties.placeholder).to.equal('"test"');
expect(output.properties.alt).to.equal('"test"');
expect(output.properties.title).to.equal('"test"');
expect(output.properties.value).to.equal('"test"');
});
it('should parse script tag', function () {
input = '<script>console.log("test")</script>';
output = parser(input);
// IE9 doesn't support innerHTML on head or html, so no polyfill
if (window.usingPolyfillOnIE9) {
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('');
return;
}
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('SCRIPT');
var children = output.children;
expect(children).to.have.length(1);
expect(children[0].type).to.equal('VirtualText');
expect(children[0].text).to.equal('console.log("test")');
});
it('should parse style tag', function () {
input = '<style>h1 {color:red;}</style>';
output = parser(input);
// IE9 doesn't support innerHTML on head or html, so no polyfill
if (window.usingPolyfillOnIE9) {
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('');
return;
}
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('STYLE');
var children = output.children;
expect(children).to.have.length(1);
expect(children[0].type).to.equal('VirtualText');
expect(children[0].text).to.equal('h1 {color:red;}');
});
it('should parse meta tag', function () {
input = '<meta name="abc" content="test">';
output = parser(input);
// IE9 doesn't support innerHTML on head or html, so no polyfill
if (window.usingPolyfillOnIE9) {
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('');
return;
}
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('META');
expect(output.properties.name).to.equal('abc');
expect(output.properties.content).to.equal('test');
});
it('should parse link tag', function () {
input = '<link rel="abc" href="//example.com">';
output = parser(input);
// IE9 doesn't support innerHTML on head or html, so no polyfill
if (window.usingPolyfillOnIE9) {
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('');
return;
}
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('LINK');
expect(output.properties.rel).to.equal('abc');
expect(output.properties.href).to.equal('//example.com');
});
it('should parse title tag', function () {
input = '<title>test</title>';
output = parser(input);
// IE9 doesn't support innerHTML on head or html, so no polyfill
if (window.usingPolyfillOnIE9) {
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('');
return;
}
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('TITLE');
var children = output.children;
expect(children).to.have.length(1);
expect(children[0].type).to.equal('VirtualText');
expect(children[0].text).to.equal('test');
});
it('should parse svg tag', function () {
input = '<svg viewBox="0 0 10 10"></svg>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('svg');
expect(output.namespace).to.equal('http://www.w3.org/2000/svg');
expect(output.properties.viewBox).to.equal('0 0 10 10');
});
it('should parse svg tag with foreign namespace', function () {
input = '<svg class="icon"><use xlink:href="/icon.svg#name"></use></svg>';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('svg');
expect(output.namespace).to.equal('http://www.w3.org/2000/svg');
var children = output.children;
expect(children).to.have.length(1);
var useTag = children[0];
expect(useTag.type).to.equal('VirtualNode');
expect(useTag.tagName).to.equal('use');
expect(output.properties.class).to.equal('icon');
// Opera 12 supports for namespaced attribute is buggy
// Attr.name return href instead of xlink:href
if (useTag.properties.href) {
expect(useTag.properties.href).to.equal('/icon.svg#name');
} else {
expect(useTag.properties['xlink:href'].value).to.equal('/icon.svg#name');
expect(useTag.properties['xlink:href'].namespace).to.equal('http://www.w3.org/1999/xlink');
}
});
it('should handle doctype with fallback', function () {
input = '<!DOCTYPE html>';
output = parser(input);
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('');
});
it('should handle cdata with fallback', function () {
input = '<![CDATA[ hey ]]>';
output = parser(input);
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('');
});
it('should handle html comment with fallback', function () {
input = '<!-- comment -->';
output = parser(input);
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('');
});
it('should handle html tag with fallback', function () {
input = '<html></html>';
output = parser(input);
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('');
});
it('should handle body tag with fallback', function () {
input = '<body></body>';
output = parser(input);
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('');
});
it('should handle head tag with fallback', function () {
input = '<head></head>';
output = parser(input);
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('');
});
it('should handle empty input with fallback', function () {
input = '';
output = parser(input);
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('');
});
it('should handle whitespace input with fallback', function () {
input = ' ';
// see html-domparser.js comment
// in short, polyfill requires input be trimmed first
// but in most case you should be using dom element so this is not a big deal
if (window.usingDomParserPolyfill) {
input = input.trim()
}
output = parser(input);
expect(output.type).to.equal('VirtualText');
expect(output.text).to.equal('');
});
it('should handle dom node input', function () {
input = document.createElement('div');
input.id = 'test';
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.properties.id).to.equal('test');
});
it('should handle document body', function () {
input = document.body;
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('BODY');
});
it('should handle document head', function () {
input = document.head;
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('HEAD');
});
it('should handle document', function () {
input = document.documentElement;
output = parser(input);
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('HTML');
});
it('should throw if input is not supported', function () {
input = [];
expect(function() {
output = parser(input);
}).to.throw(Error);
input = {};
expect(function() {
output = parser(input);
}).to.throw(Error);
});
it('should support optional key lookup', function () {
input = '<div id="example">test</div>';
output = parser(input, 'id');
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.key).to.equal('example');
expect(output.namespace).to.be.null;
expect(output.properties.id).to.equal('example');
});
it('should support optional key lookup, using data attribute', function () {
input = '<div data-id="example">test</div>';
output = parser(input, 'data-id');
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.key).to.equal('example');
expect(output.properties.id).to.be.undefined;
expect(output.properties.attributes['data-id']).to.equal('example');
});
it('should support optional key lookup, recursively', function () {
input = '<div id="abc"><p id="edf">test</p></div>';
output = parser(input, 'id');
expect(output.type).to.equal('VirtualNode');
expect(output.tagName).to.equal('DIV');
expect(output.key).to.equal('abc');
var children = output.children;
expect(children).to.have.length(1);
expect(children[0].type).to.equal('VirtualNode');
expect(children[0].tagName).to.equal('P');
expect(children[0].key).to.equal('edf');
});
});