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
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
|
var msg = decodeURIComponent(location.hash.substr(1));
var log = [];
function check_true(actual, msg) {
if (actual !== true) {
log.push(msg);
return false;
}
return true;
}
function check_Blob(msg, input, port, expect_File, orig_input) {
expect_File = !!expect_File;
orig_input = orig_input || input;
try {
var expected;
switch (msg) {
case 'Blob basic':
case 'File basic':
expected = [0x66, 0x6F, 0x6F];
expected.type = 'text/x-bar';
if (expect_File) {
expected.name = 'bar';
expected.lastModified = 42;
}
break;
case 'Blob unpaired high surrogate (invalid utf-8)':
expected = [0xED, 0xA0, 0x80];
expected.type = '';
break;
case 'Blob unpaired low surrogate (invalid utf-8)':
expected = [0xED, 0xB0, 0x80];
expected.type = '';
break;
case 'Blob paired surrogates (invalid utf-8)':
expected = [0xED, 0xA0, 0x80, 0xED, 0xB0, 0x80];
expected.type = '';
break;
case 'Blob empty':
expected = [];
expected.type = '';
break;
case 'Blob NUL':
var expected = [0x00];
expected.type = '';
break;
default:
check_true(false, 'check_Blob: unknown test');
return;
break;
}
if (check_true(input instanceof Blob, 'input instanceof Blob') &&
check_true((input instanceof File) == expect_File, '(input instanceof File) == expect_File') &&
check_true(input.size === expected.length, 'input.size === expected.length') &&
check_true(input.type === expected.type, 'input.type === expected.type')) {
if (!expect_File || (check_true(input.name === expected.name, 'input.name === expected.name') &&
check_true(input.lastModified === expected.lastModified))) {
var reader = new FileReader();
var read_done = function() {
try {
var result = reader.result;
check_true(result.byteLength === expected.length, 'result.byteLength === expected.length')
var view = new DataView(result);
for (var i = 0; i < result.byteLength; ++i) {
check_true(view.getUint8(i) === expected[i], 'view.getUint8('+i+') === expected['+i+']')
}
if (log.length === 0) {
port.postMessage(orig_input);
} else {
port.postMessage('FAIL '+log);
}
close();
} catch(ex) {
postMessage('FAIL '+ex);
close();
}
}
var read_error = function() { port.postMessage('FAIL (got FileReader error)'); close(); };
reader.readAsArrayBuffer(input);
reader.onload = read_done;
reader.onabort = reader.onerror = read_error;
}
} else {
port.postMessage('FAIL '+log);
close();
}
} catch(ex) {
postMessage('FAIL '+ex);
close();
}
}
function check_ImageData(input, expected) {
if (check_true(input instanceof ImageData, 'input instanceof ImageData') &&
check_true(input.width === expected.width, 'input.width === '+expected.width) &&
check_true(input.height === expected.height, 'input.height === '+expected.height) &&
check_true(input.data instanceof Uint8ClampedArray, 'input.data instanceof Uint8ClampedArray') &&
check_true(input.data.length === expected.data.length, 'input.data.length === '+expected.data.length) &&
check_true(!('CanvasPixelArray' in self), "!('CanvasPixelArray' in self)")) {
for (var i = 0; i < input.length; ++i) {
if (!(check_true(input.data[i] === expected.data[i], 'input.data['+i+'] === '+expected.data[i]))) {
return false;
}
}
return true;
}
return false;
}
function check_ImageBitmap(input, expected) {
return check_true(input instanceof ImageBitmap, 'input instanceof ImageBitmap');
// XXX paint it on a proxy canvas and check the data
}
function check_RegExp(msg, input) {
// XXX ES6 spec doesn't define exact serialization for `source` (it allows several ways to escape)
switch (msg) {
case 'RegExp flags and lastIndex':
return check_true(input instanceof RegExp, "input instanceof RegExp") &&
check_true(input.source === 'foo', "input.source === 'foo'") &&
check_true(input.global === true, "input.global === true") &&
check_true(input.ignoreCase === true, "input.ignoreCase === true") &&
check_true(input.multiline === true, "input.multiline === true") &&
check_true(input.lastIndex === 0, "input.lastIndex === 0");
break;
case 'RegExp sticky flag':
return check_true(input instanceof RegExp, "input instanceof RegExp") &&
check_true(input.source === 'foo', "input.source === 'foo'") &&
check_true(input.global === false, "input.global === false") &&
check_true(input.ignoreCase === false, "input.ignoreCase === false") &&
check_true(input.multiline === false, "input.multiline === false") &&
check_true(input.sticky === true, "input.sticky === true") &&
check_true(input.unicode === false, "input.unicode === false") &&
check_true(input.lastIndex === 0, "input.lastIndex === 0");
break;
case 'RegExp unicode flag':
return check_true(input instanceof RegExp, "input instanceof RegExp") &&
check_true(input.source === 'foo', "input.source === 'foo'") &&
check_true(input.global === false, "input.global === false") &&
check_true(input.ignoreCase === false, "input.ignoreCase === false") &&
check_true(input.multiline === false, "input.multiline === false") &&
check_true(input.sticky === false, "input.sticky === false") &&
check_true(input.unicode === true, "input.unicode === true") &&
check_true(input.lastIndex === 0, "input.lastIndex === 0");
break;
case 'RegExp empty':
return check_true(input instanceof RegExp, "input instanceof RegExp") &&
check_true(input.source === '(?:)', "input.source === '(?:)'") &&
check_true(input.global === false, "input.global === false") &&
check_true(input.ignoreCase === false, "input.ignoreCase === false") &&
check_true(input.multiline === false, "input.multiline === false") &&
check_true(input.lastIndex === 0, "input.lastIndex === 0");
break;
case 'RegExp slash':
return check_true(input instanceof RegExp, "input instanceof RegExp") &&
check_true(input.source === '\\/', "input.source === '\\\\/'") &&
check_true(input.global === false, "input.global === false") &&
check_true(input.ignoreCase === false, "input.ignoreCase === false") &&
check_true(input.multiline === false, "input.multiline === false") &&
check_true(input.lastIndex === 0, "input.lastIndex === 0");
break;
case 'RegExp new line':
return check_true(input instanceof RegExp, "input instanceof RegExp") &&
check_true(input.source === '\\n', "input.source === '\\\\n'") &&
check_true(input.global === false, "input.global === false") &&
check_true(input.ignoreCase === false, "input.ignoreCase === false") &&
check_true(input.multiline === false, "input.multiline === false") &&
check_true(input.lastIndex === 0, "input.lastIndex === 0");
break;
default:
check_true(false, 'check_RegExp: unknown test');
return false;
break;
}
}
function check_FileList(msg, input) {
try {
return check_true(input instanceof FileList, 'input instanceof FileList') &&
check_true(input.length === 0, 'input.length === 0');
} catch(ex) {
return check_true(false, ex);
}
}
function check(input, port) {
try {
switch (msg) {
case 'primitive undefined':
if (check_true(input === undefined, 'input === undefined')) {
port.postMessage(input);
close();
}
break;
case 'primitive null':
if (check_true(input === null, 'input === null')) {
port.postMessage(input);
close();
}
break;
case 'primitive true':
if (check_true(input === true, 'input === true')) {
port.postMessage(input);
close();
}
break;
case 'primitive false':
if (check_true(input === false, 'input === false')) {
port.postMessage(input);
close();
}
break;
case 'primitive string, empty string':
if (check_true(input === '', "input === ''")) {
port.postMessage(input);
close();
}
break;
case 'primitive string, lone high surrogate':
if (check_true(input === '\uD800', "input === '\uD800'")) {
port.postMessage(input);
close();
}
break;
case 'primitive string, lone low surrogate':
if (check_true(input === '\uDC00', "input === '\uDC00'")) {
port.postMessage(input);
close();
}
break;
case 'primitive string, NUL':
if (check_true(input === '\u0000', "input === '\u0000'")) {
port.postMessage(input);
close();
}
break;
case 'primitive string, astral character':
if (check_true(input === '\uDBFF\uDFFD', "input === '\uDBFF\uDFFD'")) {
port.postMessage(input);
close();
}
break;
case 'primitive number, 0.2':
if (check_true(input === 0.2, "input === 0.2")) {
port.postMessage(input);
close();
}
break;
case 'primitive number, 0':
if (check_true(input === 0, "input === 0") &&
check_true(1/input === Infinity, "1/input === Infinity")) {
port.postMessage(input);
close();
}
break;
case 'primitive number, -0':
if (check_true(input === 0, "input === 0") &&
check_true(1/input === -Infinity, "1/input === -Infinity")) {
port.postMessage(input);
close();
}
break;
case 'primitive number, NaN':
if (check_true(input !== input, "input !== input")) {
port.postMessage(input);
close();
}
break;
case 'primitive number, Infinity':
if (check_true(input === Infinity, "input === Infinity")) {
port.postMessage(input);
close();
}
break;
case 'primitive number, -Infinity':
if (check_true(input === -Infinity, "input === -Infinity")) {
port.postMessage(input);
close();
}
break;
case 'primitive number, 9007199254740992':
if (check_true(input === 9007199254740992, "input === 9007199254740992")) {
port.postMessage(input);
close();
}
break;
case 'primitive number, -9007199254740992':
if (check_true(input === -9007199254740992, "input === -9007199254740992")) {
port.postMessage(input);
close();
}
break;
case 'primitive number, 9007199254740994':
if (check_true(input === 9007199254740994, "input === 9007199254740994")) {
port.postMessage(input);
close();
}
break;
case 'primitive number, -9007199254740994':
if (check_true(input === -9007199254740994, "input === -9007199254740994")) {
port.postMessage(input);
close();
break;
}
case 'Array primitives':
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 19, 'input.length === 19') &&
check_true(input[0] === undefined, 'input[0] === undefined') &&
check_true(input[1] === null, 'input[1] === null') &&
check_true(input[2] === true, 'input[2] === true') &&
check_true(input[3] === false, 'input[3] === false') &&
check_true(input[4] === '', "input[4] === ''") &&
check_true(input[5] === '\uD800', "input[5] === '\\uD800'") &&
check_true(input[6] === '\uDC00', "input[6] === '\\uDC00'") &&
check_true(input[7] === '\u0000', "input[7] === '\\u0000'") &&
check_true(input[8] === '\uDBFF\uDFFD', "input[8] === '\\uDBFF\\uDFFD'") &&
check_true(input[9] === 0.2, "input[9] === 0.2") &&
check_true(1/input[10] === Infinity, "1/input[10] === Infinity") &&
check_true(1/input[11] === -Infinity, "1/input[11] === -Infinity") &&
check_true(input[12] !== input[11], "input[12] !== input[11]") &&
check_true(input[13] === Infinity, "input[13] === Infinity") &&
check_true(input[14] === -Infinity, "input[14] === -Infinity") &&
check_true(input[15] === 9007199254740992, "input[15] === 9007199254740992") &&
check_true(input[16] === -9007199254740992, "input[16] === -9007199254740992") &&
check_true(input[17] === 9007199254740994, "input[17] === 9007199254740994") &&
check_true(input[18] === -9007199254740994, "input[18] === -9007199254740994")) {
port.postMessage(input);
close();
}
break;
case 'Object primitives':
(function() {
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_true(input['undefined'] === undefined, "input['undefined'] === undefined") &&
check_true(input['null'] === null, "input['null'] === null") &&
check_true(input['true'] === true, "input['true'] === true") &&
check_true(input['false'] === false, "input['false'] === false") &&
check_true(input['empty'] === '', "input['empty'] === ''") &&
check_true(input['high surrogate'] === '\uD800', "input['high surrogate'] === '\uD800'") &&
check_true(input['low surrogate'] === '\uDC00', "input['low surrogate'] === '\uDC00'") &&
check_true(input['nul'] === '\u0000', "input['nul'] === '\u0000'") &&
check_true(input['astral'] === '\uDBFF\uDFFD', "input['astral'] === '\uDBFF\uDFFD'") &&
check_true(input['0.2'] === 0.2, "input['0.2'] === 0.2") &&
check_true(1/input['0'] === Infinity, "1/input['0'] === Infinity") &&
check_true(1/input['-0'] === -Infinity, "1/input['-0'] === -Infinity") &&
check_true(input['NaN'] !== input['NaN'], "input['NaN'] !== input['NaN']") &&
check_true(input['Infinity'] === Infinity, "input['Infinity'] === Infinity") &&
check_true(input['-Infinity'] === -Infinity, "input['-Infinity'] === -Infinity") &&
check_true(input['9007199254740992'] === 9007199254740992, "input['9007199254740992'] === 9007199254740992") &&
check_true(input['-9007199254740992'] === -9007199254740992, "input['-9007199254740992'] === -9007199254740992") &&
check_true(input['9007199254740994'] === 9007199254740994, "input['9007199254740994'] === 9007199254740994") &&
check_true(input['-9007199254740994'] === -9007199254740994, "input['9007199254740994'] === -9007199254740994")) {
var i = 0;
for (var x in input) {
i++;
}
if (check_true(i === 19, 'i === 19')) {
port.postMessage(input);
close();
}
}
})();
break;
case 'Boolean true':
if (check_true(input instanceof Boolean, "input instanceof Boolean") &&
check_true(String(input) === 'true', "String(input) === 'true'")) {
port.postMessage(input);
close();
}
break;
case 'Boolean false':
if (check_true(input instanceof Boolean, "input instanceof Boolean") &&
check_true(String(input) === 'false', "String(input) === 'false'")) {
port.postMessage(input);
close();
}
break;
case 'Array Boolean objects':
(function() {
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 2, 'input.length === 2') &&
check_true(String(input[0]) === 'true', "String(input[0]) === 'true'") &&
check_true(String(input[1]) === 'false', "String(input[1]) === 'false'")) {
for (var i = 0; i < input.length; ++i) {
if (!check_true(input[i] instanceof Boolean, 'input['+i+'] instanceof Boolean'))
return;
}
port.postMessage(input);
close();
}
})();
break;
case 'Object Boolean objects':
(function() {
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_true(String(input['true']) === 'true', "String(input['true']) === 'true'") &&
check_true(String(input['false']) === 'false', "String(input['false']) === 'false'")) {
var i = 0;
for (var x in input) {
i++;
if (!check_true(input[x] instanceof Boolean, 'input['+x+'] instanceof Boolean'))
return;
}
if (check_true(i === 2, 'i === 2')) {
port.postMessage(input);
close();
}
}
})();
break;
case 'String empty string':
if (check_true(input instanceof String, "input instanceof String") &&
check_true(String(input) === '', "String(input) === ''")) {
port.postMessage(input);
close();
}
break;
case 'String lone high surrogate':
if (check_true(input instanceof String, "input instanceof String") &&
check_true(String(input) === '\uD800', "String(input) === '\\uD800'")) {
port.postMessage(input);
close();
}
break;
case 'String lone low surrogate':
if (check_true(input instanceof String, "input instanceof String") &&
check_true(String(input) === '\uDC00', "String(input) === '\\uDC00'")) {
port.postMessage(input);
close();
}
break;
case 'String NUL':
if (check_true(input instanceof String, "input instanceof String") &&
check_true(String(input) === '\u0000', "String(input) === '\\u0000'")) {
port.postMessage(input);
close();
}
break;
case 'String astral character':
if (check_true(input instanceof String, "input instanceof String") &&
check_true(String(input) === '\uDBFF\uDFFD', "String(input) === '\\uDBFF\\uDFFD'")) {
port.postMessage(input);
close();
}
break;
case 'Array String objects':
(function() {
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 5, 'input.length === 5') &&
check_true(String(input[0]) === '', "String(input[0]) === ''") &&
check_true(String(input[1]) === '\uD800', "String(input[1]) === '\\uD800'") &&
check_true(String(input[2]) === '\uDC00', "String(input[1]) === '\\uDC00'") &&
check_true(String(input[3]) === '\u0000', "String(input[2]) === '\\u0000'") &&
check_true(String(input[4]) === '\uDBFF\uDFFD', "String(input[3]) === '\\uDBFF\\uDFFD'")) {
for (var i = 0; i < input.length; ++i) {
if (!check_true(input[i] instanceof String, 'input['+i+'] instanceof String'))
return;
}
port.postMessage(input);
close();
}
})();
break;
case 'Object String objects':
(function() {
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_true(String(input['empty']) === '', "String(input['empty']) === ''") &&
check_true(String(input['high surrogate']) === '\uD800', "String(input['high surrogate']) === '\\uD800'") &&
check_true(String(input['low surrogate']) === '\uDC00', "String(input['low surrogate']) === '\\uDC00'") &&
check_true(String(input['nul']) === '\u0000', "String(input['nul']) === '\\u0000'") &&
check_true(String(input['astral']) === '\uDBFF\uDFFD', "String(input['astral']) === '\\uDBFF\\uDFFD'")) {
var i = 0;
for (var x in input) {
i++;
if (!check_true(input[x] instanceof String, 'input['+x+'] instanceof Boolean'))
return;
}
if (check_true(i === 5, 'i === 5')) {
port.postMessage(input);
close();
}
}
})();
break;
case 'Number 0.2':
if (check_true(input instanceof Number, "input instanceof Number") &&
check_true(Number(input) === 0.2, "Number(input) === 0.2")) {
port.postMessage(input);
close();
}
break;
case 'Number 0':
if (check_true(input instanceof Number, "input instanceof Number") &&
check_true(1/Number(input) === Infinity, "1/Number(input) === Infinity")) {
port.postMessage(input);
close();
}
break;
case 'Number -0':
if (check_true(input instanceof Number, "input instanceof Number") &&
check_true(1/Number(input) === -Infinity, "1/Number(input) === -Infinity")) {
port.postMessage(input);
close();
}
break;
case 'Number NaN':
if (check_true(input instanceof Number, "input instanceof Number") &&
check_true(Number(input) !== Number(input), "Number(input) !== Number(input)")) {
port.postMessage(input);
close();
}
break;
case 'Number Infinity':
if (check_true(input instanceof Number, "input instanceof Number") &&
check_true(Number(input) === Infinity, "Number(input) === Infinity")) {
port.postMessage(input);
close();
}
break;
case 'Number -Infinity':
if (check_true(input instanceof Number, "input instanceof Number") &&
check_true(Number(input) === -Infinity, "Number(input) === -Infinity")) {
port.postMessage(input);
close();
}
break;
case 'Number 9007199254740992':
if (check_true(input instanceof Number) &&
check_true(Number(input) === 9007199254740992, "Number(input) === 9007199254740992")) {
port.postMessage(input);
close();
}
break;
case 'Number -9007199254740992':
if (check_true(input instanceof Number, "input instanceof Number") &&
check_true(Number(input) === -9007199254740992, "Number(input) === -9007199254740992")) {
port.postMessage(input);
close();
}
break;
case 'Number 9007199254740994':
if (check_true(input instanceof Number, "input instanceof Number") &&
check_true(Number(input) === 9007199254740994, "Number(input) === 9007199254740994")) {
port.postMessage(input);
close();
}
break;
case 'Number -9007199254740994':
if (check_true(input instanceof Number, "input instanceof Number") &&
check_true(Number(input) === -9007199254740994, "Number(input) === -9007199254740994")) {
port.postMessage(input);
close();
}
break;
case 'Array Number objects':
(function() {
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 10, 'input.length === 10') &&
check_true(Number(input[0]) === 0.2, "Number(input[0]) === 0.2") &&
check_true(1/Number(input[1]) === Infinity, "1/Number(input[1]) === Infinity") &&
check_true(1/Number(input[2]) === -Infinity, "1/Number(input[2]) === -Infinity") &&
check_true(Number(input[3]) !== Number(input[3]), "Number(input[3]) !== Number(input[3])") &&
check_true(Number(input[4]) === Infinity, "Number(input[4]) === Infinity") &&
check_true(Number(input[5]) === -Infinity, "Number(input[5]) === -Infinity") &&
check_true(Number(input[6]) === 9007199254740992, "Number(input[6]) === 9007199254740992") &&
check_true(Number(input[7]) === -9007199254740992, "Number(input[7]) === -9007199254740992") &&
check_true(Number(input[8]) === 9007199254740994, "Number(input[8]) === 9007199254740994") &&
check_true(Number(input[9]) === -9007199254740994, "Number(input[9]) === -9007199254740994")) {
for (var i = 0; i < input.length; ++i) {
if (!check_true(input[i] instanceof Number, 'input['+i+'] instanceof Number'))
return;
}
port.postMessage(input);
close();
}
})();
break;
case 'Object Number objects':
(function() {
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_true(Number(input['0.2']) === 0.2, "Number(input['0.2']) === 0.2") &&
check_true(1/Number(input['0']) === Infinity, "1/Number(input['0']) === Infinity") &&
check_true(1/Number(input['-0']) === -Infinity, "1/Number(input['-0']) === -Infinity") &&
check_true(Number(input['NaN']) !== Number(input['NaN']), "Number(input['NaN']) !== Number(input['NaN'])") &&
check_true(Number(input['Infinity']) === Infinity, "Number(input['Infinity']) === Infinity") &&
check_true(Number(input['-Infinity']) === -Infinity, "Number(input['-Infinity']) === -Infinity") &&
check_true(Number(input['9007199254740992']) === 9007199254740992, "Number(input['9007199254740992']) === 9007199254740992") &&
check_true(Number(input['-9007199254740992']) === -9007199254740992, "Number(input['-9007199254740992']) === -9007199254740992") &&
check_true(Number(input['9007199254740994']) === 9007199254740994, "Number(input['9007199254740994']) === 9007199254740994") &&
check_true(Number(input['-9007199254740994']) === -9007199254740994, "Number(input['-9007199254740994']) === -9007199254740994")) {
var i = 0;
for (var x in input) {
i++;
if (!check_true(input[x] instanceof Number, 'input['+x+'] instanceof Number'))
return;
}
if (check_true(i === 10, 'i === 10')) {
port.postMessage(input);
close();
}
}
})();
break;
case 'Date 0':
if (check_true(input instanceof Date, "input instanceof Date") &&
check_true(1/Number(input) === 1/Number(new Date(0)), "1/Number(input) === 1/Number(new Date(0))")) {
port.postMessage(input);
close();
}
break;
case 'Date -0':
if (check_true(input instanceof Date, "input instanceof Date") &&
check_true(1/Number(input) === 1/Number(new Date(-0)), "1/Number(input) === 1/Number(new Date(-0))")) {
port.postMessage(input);
close();
}
break;
case 'Date -8.64e15':
if (check_true(input instanceof Date, "input instanceof Date") &&
check_true(Number(input) === -8.64e15, "Number(input) === -8.64e15")) {
port.postMessage(input);
close();
}
break;
case 'Date 8.64e15':
if (check_true(input instanceof Date, "input instanceof Date") &&
check_true(Number(input) === 8.64e15, "Number(input) === 8.64e15")) {
port.postMessage(input);
close();
}
break;
case 'Array Date objects':
(function() {
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 4, 'input.length === 4') &&
check_true(1/Number(input[0]) === 1/new Date(0), '1/Number(input[0]) === 1/new Date(0)') &&
check_true(1/Number(input[1]) === 1/new Date(-0), '1/Number(input[1]) === 1/new Date(-0)') &&
check_true(Number(input[2]) === -8.64e15, 'Number(input[2]) === -8.64e15') &&
check_true(Number(input[3]) === 8.64e15, 'Number(input[3]) === 8.64e15')) {
for (var i = 0; i < input.length; ++i) {
if (!check_true(input[i] instanceof Date, 'input['+i+'] instanceof Date'))
return;
}
port.postMessage(input);
close();
}
})();
break;
case 'Object Date objects':
(function() {
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_true(1/Number(input['0']) === 1/new Date(0), "1/Number(input['0']) === 1/new Date(0)") &&
check_true(1/Number(input['-0']) === 1/new Date(-0), "1/Number(input[1]) === 1/new Date(-0)") &&
check_true(Number(input['-8.64e15']) === -8.64e15, "Number(input['-8.64e15']) === -8.64e15") &&
check_true(Number(input['8.64e15']) === 8.64e15, "Number(input['8.64e15']) === 8.64e15")) {
var i = 0;
for (var x in input) {
i++;
if (!check_true(input[x] instanceof Date, 'input['+x+'] instanceof Date'))
return;
}
port.postMessage(input);
close();
}
})();
break;
case 'RegExp flags and lastIndex':
case 'RegExp empty':
case 'RegExp slash':
case 'RegExp new line':
if (check_RegExp(msg, input)) {
port.postMessage(input);
close();
}
break;
case 'Array RegExp object, RegExp flags and lastIndex':
case 'Array RegExp object, RegExp empty':
case 'Array RegExp object, RegExp slash':
case 'Array RegExp object, RegExp new line':
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 1, 'input.length === 1') &&
check_RegExp(msg.substr('Array RegExp object, '.length), input[0])) {
port.postMessage(input);
close();
}
break;
case 'Object RegExp object, RegExp flags and lastIndex':
case 'Object RegExp object, RegExp empty':
case 'Object RegExp object, RegExp slash':
case 'Object RegExp object, RegExp new line':
(function() {
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_RegExp(msg.substr('Object RegExp object, '.length), input['x'])) {
var i = 0;
for (var x in input) {
i++;
}
if (check_true(i === 1, 'i === 1')) {
port.postMessage(input);
close();
}
}
})();
break;
case 'Blob basic':
case 'Blob unpaired high surrogate (invalid utf-8)':
case 'Blob unpaired low surrogate (invalid utf-8)':
case 'Blob paired surrogates (invalid utf-8)':
case 'Blob empty':
case 'Blob NUL':
check_Blob(msg, input, port);
// no postMessage or close here, check_Blob takes care of that
break;
case 'Array Blob object, Blob basic':
case 'Array Blob object, Blob unpaired high surrogate (invalid utf-8)':
case 'Array Blob object, Blob unpaired low surrogate (invalid utf-8)':
case 'Array Blob object, Blob paired surrogates (invalid utf-8)':
case 'Array Blob object, Blob empty':
case 'Array Blob object, Blob NUL':
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 1, 'input.length === 1')) {
check_Blob(msg.substr('Array Blob object, '.length), input[0], port, false, input);
// no postMessage or close here, check_Blob takes care of that
}
break;
case 'Object Blob object, Blob basic':
case 'Object Blob object, Blob unpaired high surrogate (invalid utf-8)':
case 'Object Blob object, Blob unpaired low surrogate (invalid utf-8)':
case 'Object Blob object, Blob paired surrogates (invalid utf-8)':
case 'Object Blob object, Blob empty':
case 'Object Blob object, Blob NUL':
(function() {
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)')) {
var i = 0;
for (var x in input) {
i++;
}
if (check_true(i === 1, 'i === 1')) {
check_Blob(msg.substr('Object Blob object, '.length), input['x'], port, false, input);
// no postMessage or close here, check_Blob takes care of that
}
}
})();
break;
case 'File basic':
check_Blob(msg, input, port, true);
// no postMessage or close here, check_Blob takes care of that
break;
case 'FileList empty':
if (check_FileList(msg, input)) {
port.postMessage(input);
close();
}
break;
case 'Array FileList object, FileList empty':
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 1, 'input.length === 1') &&
check_FileList(msg.substr('Array FileList object, '.length), input[0])) {
port.postMessage(input);
close();
}
break;
case 'Object FileList object, FileList empty':
(function() {
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_FileList(msg.substr('Array FileList object, '.length), input['x'])) {
var i = 0;
for (var x in input) {
i++;
}
if (check_true(i === 1, 'i === 1')) {
port.postMessage(input);
close();
}
}
})();
break;
case 'ImageData 1x1 transparent black':
if (check_ImageData(input, {width:1, height:1, data:[0,0,0,0]})) {
port.postMessage(input);
close();
}
break;
case 'ImageData 1x1 non-transparent non-black':
if (check_ImageData(input, {width:1, height:1, data:[100, 101, 102, 103]})) {
port.postMessage(input);
close();
}
break;
case 'Array ImageData object, ImageData 1x1 transparent black':
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 1, 'input.length === 1') &&
check_ImageData(input[0], {width:1, height:1, data:[0,0,0,0]})) {
port.postMessage(input);
close();
}
break;
case 'Array ImageData object, ImageData 1x1 non-transparent non-black':
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 1, 'input.length === 1') &&
check_ImageData(input[0], {width:1, height:1, data:[100, 101, 102, 103]})) {
port.postMessage(input);
close();
}
break;
case 'Object ImageData object, ImageData 1x1 transparent black':
(function(){
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_ImageData(input['x'], {width:1, height:1, data:[0,0,0,0]})) {
var i = 0;
for (var x in input) {
i++;
}
if (check_true(i === 1, 'i === 1')) {
port.postMessage(input);
close();
}
}
})();
break;
case 'Object ImageData object, ImageData 1x1 non-transparent non-black':
(function() {
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_ImageData(input['x'], {width:1, height:1, data:[100, 101, 102, 103]})) {
var i = 0;
for (var x in input) {
i++;
}
if (check_true(i === 1, 'i === 1')) {
port.postMessage(input);
close();
}
}
})();
break;
case 'ImageBitmap 1x1 transparent black':
if (check_ImageBitmap(input, {width:1, height:1, data:[0, 0, 0, 0]})) {
port.postMessage(input);
close();
}
break;
case 'ImageBitmap 1x1 non-transparent non-black':
if (check_ImageBitmap(input, {width:1, height:1, data:[100, 101, 102, 103]})) {
port.postMessage(input);
close();
}
break;
case 'Array ImageBitmap object, ImageBitmap 1x1 transparent black':
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 1, 'input.length === 1') &&
check_ImageBitmap(input[0], {width:1, height:1, data:[0, 0, 0, 0]})) {
port.postMessage(input);
close();
}
break;
case 'Array ImageBitmap object, ImageBitmap 1x1 non-transparent non-black':
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 1, 'input.length === 1') &&
check_ImageBitmap(input[0], {width:1, height:1, data:[100, 101, 102, 103]})) {
port.postMessage(input);
close();
}
break;
case 'Object ImageBitmap object, ImageBitmap 1x1 transparent black':
(function() {
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_ImageBitmap(input['x'], {width:1, height:1, data:[0, 0, 0, 0]})) {
var i = 0;
for (var x in input) {
i++;
}
if (check_true(i === 1, 'i === 1')) {
port.postMessage(input);
close();
}
}
})();
break;
case 'Object ImageBitmap object, ImageBitmap 1x1 non-transparent non-black':
(function() {
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_ImageBitmap(input['x'], {width:1, height:1, data:[100, 101, 102, 103]})) {
var i = 0;
for (var x in input) {
i++;
}
if (check_true(i === 1, 'i === 1')) {
port.postMessage(input);
close();
}
}
})();
break;
case 'Array sparse':
(function() {
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 10, 'input.length === 10')) {
for (var x in input) {
check_true(false, 'unexpected enumerable property '+x);
return;
}
port.postMessage(input);
close();
}
})();
break;
case 'Array with non-index property':
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 0, 'input.length === 0') &&
check_true(input.foo === 'bar', "input.foo === 'bar'")) {
port.postMessage(input);
close();
}
break;
case 'Object with index property and length':
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_true(input[0] === 'foo', "input[0] === 'foo'") &&
check_true(input.length === 1, 'input.length === 1')) {
port.postMessage(input);
close();
}
break;
case 'Array with circular reference':
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 1, 'input.length === 1') &&
check_true(input[0] === input, "input[0] === input")) {
port.postMessage(input);
close();
}
break;
case 'Object with circular reference':
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_true(input['x'] === input, "input['x'] === input")) {
port.postMessage(input);
close();
}
break;
case 'Array with identical property values':
if (check_true(input instanceof Array, 'input instanceof Array') &&
check_true(input.length === 2, 'input.length === 2') &&
check_true(input[0] === input[1], "input[0] === input[1]")) {
port.postMessage(input);
close();
}
break;
case 'Object with identical property values':
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_true(input['x'] === input['y'], "input['x'] === input['y']")) {
port.postMessage(input);
close();
}
break;
case 'Object with property on prototype':
case 'Object with non-enumerable property':
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_true(!('foo' in input), "!('foo' in input)")) {
input = {};
Object.defineProperty(input, 'foo', {value:'bar', enumerable:false, writable:true, configurable:true});
port.postMessage(input);
close();
}
break;
case 'Object with non-writable property':
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_true(input.foo === 'bar', "input.foo === bar")) {
input.foo += ' baz';
if (check_true(input.foo === 'bar baz', "input.foo === 'bar baz'")) {
input = {};
Object.defineProperty(input, 'foo', {value:'bar', enumerable:true, writable:false, configurable:true});
port.postMessage(input);
close();
}
}
break;
case 'Object with non-configurable property':
if (check_true(input instanceof Object, 'input instanceof Object') &&
check_true(!(input instanceof Array), '!(input instanceof Array)') &&
check_true(input.foo === 'bar', "input.foo === bar")) {
delete input.foo;
if (check_true(!('foo' in input), "!('foo' in input)")) {
input = {};
Object.defineProperty(input, 'foo', {value:'bar', enumerable:true, writable:true, configurable:false});
port.postMessage(input);
close();
}
}
break;
default:
port.postMessage('FAIL: unknown test');
close();
}
if (log.length > 0) {
port.postMessage('FAIL '+log);
close();
}
} catch (ex) {
port.postMessage('FAIL '+ex);
close();
}
}
|