-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.js
160 lines (140 loc) · 5.05 KB
/
index.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
let {serialize, deserialize, default: structuredClone} = require('../cjs');
let {stringify, parse} = require('../cjs/json');
const assert = (expected, result, message = '') => {
if (!Object.is(expected, result)) {
console.error(message || `expected ${expected}\ngot ${result}`);
process.exit(1);
}
};
// @see https://github.com/ungap/structured-clone/issues/4
const withUndefined = stringify({foo: 'test', bar: undefined, foobar: null});
assert(withUndefined, '[[2,[[1,2],[3,4],[5,6]]],[0,"foo"],[0,"test"],[0,"bar"],[-1],[0,"foobar"],[0,null]]');
assert(Object.keys(parse(withUndefined)).join(','), 'foo,bar,foobar');
assert(parse(withUndefined).bar, void 0);
const date = new Date;
const { buffer } = new Uint8Array([0, 1, 2, 3, 4, 5, 6, 7]);
const obj = {
arr: [],
bigint: 1n,
boolean: true,
number: 123,
string: '',
undefined: void 0,
null: null,
buffer,
dataview: new DataView(buffer),
int: new Uint32Array([1, 2, 3]),
map: new Map([['a', 123]]),
set: new Set(['a', 'b']),
Bool: new Boolean(false),
Num: new Number(0),
Str: new String(''),
re: new RegExp('test', 'gim'),
error: new Error('test'),
BI: Object(1n),
date
};
obj.arr.push(obj, obj, obj);
// warming JIT
test(true);
test();
// for code coverage sake (globalThis VS self)
delete require.cache[require.resolve('../cjs')];
delete require.cache[require.resolve('../cjs/deserialize.js')];
globalThis.self = globalThis;
if (!globalThis.structuredClone)
globalThis.structuredClone = (...args) => deserialize(serialize(...args));
require('../cjs');
({serialize, deserialize, default: structuredClone} = require('../cjs'));
test();
test();
function test(firstRun = false) {
console.log(`\x1b[1m${firstRun ? 'cold' : 'warm'}\x1b[0m`);
console.time('serialized in');
const serialized = serialize(obj);
console.timeEnd('serialized in');
assert(JSON.stringify(serialized), [
`[[2,[[1,2],[3,4],[5,6],[7,8],[9,10],[11,12],[13,14],[15,16],[17,18],[19,20],[21,22],[24,25],[27,28],[29,30],[31,32],[33,34],[35,36],[37,38],[39,40]]],[0,"arr"],[1,[0,0,0]],[0,"bigint"],[8,"1"],[0,"boolean"],[0,true],[0,"number"],[0,123],[0,"string"],[0,""],[0,"undefined"],[-1],[0,"null"],[0,null],[0,"buffer"],["ArrayBuffer",[0,1,2,3,4,5,6,7]],[0,"dataview"],["DataView",[0,1,2,3,4,5,6,7]],[0,"int"],["Uint32Array",[1,2,3]],[0,"map"],[5,[[23,8]]],[0,"a"],[0,"set"],[6,[23,26]],[0,"b"],[0,"Bool"],["Boolean",false],[0,"Num"],["Number",0],[0,"Str"],["String",""],[0,"re"],[4,{"source":"test","flags":"gim"}],[0,"error"],[7,{"name":"Error","message":"test"}],[0,"BI"],["BigInt","1"],[0,"date"],[3,"${date.toISOString()}"]]`
].join(','));
// firstRun && console.log(serialized);
console.time('deserialized in');
const deserialized = deserialize(serialized);
console.timeEnd('deserialized in');
assert(deserialized.arr.length, 3);
assert(deserialized.arr[0], deserialized);
assert(deserialized.arr[1], deserialized);
assert(deserialized.arr[2], deserialized);
assert(deserialized.bigint, 1n);
assert(deserialized.boolean, true);
assert(deserialized.number, 123);
assert(deserialized.string, '');
assert(deserialized.undefined, void 0);
assert(deserialized.null, null);
assert(deserialized.int instanceof Uint32Array, true);
assert(deserialized.int.length, 3);
assert(deserialized.int[0], 1);
assert(deserialized.int[1], 2);
assert(deserialized.int[2], 3);
assert(deserialized.map.size, 1);
assert(deserialized.map.get('a'), 123);
assert(deserialized.set.size, 2);
assert([...deserialized.set].join(','), 'a,b');
assert(deserialized.Bool instanceof Boolean, true);
assert(deserialized.Bool.valueOf(), false);
assert(deserialized.Num instanceof Number, true);
assert(deserialized.Num.valueOf(), 0);
assert(deserialized.Str instanceof String, true);
assert(deserialized.Str.valueOf(), '');
assert(deserialized.re instanceof RegExp, true);
assert(deserialized.re.source, 'test');
assert(deserialized.re.flags, 'gim');
assert(deserialized.error instanceof Error, true);
assert(deserialized.error.message, 'test');
assert(deserialized.BI instanceof BigInt, true);
assert(deserialized.BI.valueOf(), 1n);
assert(deserialized.date instanceof Date, true);
assert(deserialized.date.toISOString(), date.toISOString());
// for code coverage sake
if (firstRun) {
try {
serialize(function () {});
process.exit(1);
}
catch (ok) {}
}
console.time('cloned in');
structuredClone(obj);
console.timeEnd('cloned in');
console.log('');
}
const lossy = structuredClone(
[
1,
function () {},
new Map([['key', Symbol()]]),
new Set([Symbol()]),
{
test() {},
sym: Symbol()
},
{
toJSON() {
return 'OK';
}
}
],
{json: true}
);
assert(lossy[0], 1);
assert(lossy[1], null);
assert(lossy[2].size, 0);
assert(lossy[3].size, 0);
assert(JSON.stringify(lossy[4]), '{}');
assert(lossy[5], 'OK');
const lossy2 = parse(stringify(lossy));
assert(lossy2[0], 1);
assert(lossy2[1], null);
assert(lossy2[2].size, 0);
assert(lossy2[3].size, 0);
assert(JSON.stringify(lossy2[4]), '{}');
assert(lossy2[5], 'OK');