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
|
// deno-fmt-ignore-file
// deno-lint-ignore-file
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
// Taken from Node 18.12.1
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
// Flags: --expose-internals
'use strict';
const common = require('../common');
const { internalBinding } = require('internal/test/binding');
const assert = require('assert');
const v8 = require('v8');
const os = require('os');
const circular = {};
circular.circular = circular;
const objects = [
{ foo: 'bar' },
{ bar: 'baz' },
new Int8Array([1, 2, 3, 4]),
new Uint8Array([1, 2, 3, 4]),
new Int16Array([1, 2, 3, 4]),
new Uint16Array([1, 2, 3, 4]),
new Int32Array([1, 2, 3, 4]),
new Uint32Array([1, 2, 3, 4]),
new Float32Array([1, 2, 3, 4]),
new Float64Array([1, 2, 3, 4]),
new DataView(new ArrayBuffer(42)),
Buffer.from([1, 2, 3, 4]),
new BigInt64Array([42n]),
new BigUint64Array([42n]),
undefined,
null,
42,
circular,
];
// TODO(nathanwhit): we don't have any exposed host objects, so these parts don't work
// const hostObject = new (internalBinding('js_stream').JSStream)();
{
const ser = new v8.DefaultSerializer();
ser.writeHeader();
for (const obj of objects) {
ser.writeValue(obj);
}
const des = new v8.DefaultDeserializer(ser.releaseBuffer());
des.readHeader();
for (const obj of objects) {
assert.deepStrictEqual(des.readValue(), obj);
}
}
{
for (const obj of objects) {
assert.deepStrictEqual(v8.deserialize(v8.serialize(obj)), obj);
}
}
{
const ser = new v8.DefaultSerializer();
ser._getDataCloneError = common.mustCall((message) => {
assert.strictEqual(message, '#<Object> could not be cloned.');
return new Error('foobar');
});
ser.writeHeader();
assert.throws(() => {
ser.writeValue(new Proxy({}, {}));
}, /foobar/);
}
// TODO(nathanwhit): we don't have any exposed host objects, so these parts don't work
// {
// const ser = new v8.DefaultSerializer();
// ser._writeHostObject = common.mustCall((object) => {
// assert.strictEqual(object, hostObject);
// const buf = Buffer.from('hostObjectTag');
// ser.writeUint32(buf.length);
// ser.writeRawBytes(buf);
// ser.writeUint64(1, 2);
// ser.writeDouble(-0.25);
// });
// ser.writeHeader();
// ser.writeValue({ val: hostObject });
// const des = new v8.DefaultDeserializer(ser.releaseBuffer());
// des._readHostObject = common.mustCall(() => {
// const length = des.readUint32();
// const buf = des.readRawBytes(length);
// assert.strictEqual(buf.toString(), 'hostObjectTag');
// assert.deepStrictEqual(des.readUint64(), [1, 2]);
// assert.strictEqual(des.readDouble(), -0.25);
// return hostObject;
// });
// des.readHeader();
// assert.strictEqual(des.readValue().val, hostObject);
// }
// This test ensures that `v8.Serializer.writeRawBytes()` support
// `TypedArray` and `DataView`.
// {
// const text = 'hostObjectTag';
// const data = Buffer.from(text);
// const arrayBufferViews = common.getArrayBufferViews(data);
// // `buf` is one of `TypedArray` or `DataView`.
// function testWriteRawBytes(buf) {
// let writeHostObjectCalled = false;
// const ser = new v8.DefaultSerializer();
// ser._writeHostObject = common.mustCall((object) => {
// writeHostObjectCalled = true;
// ser.writeUint32(buf.byteLength);
// ser.writeRawBytes(buf);
// });
// ser.writeHeader();
// ser.writeValue({ val: hostObject });
// const des = new v8.DefaultDeserializer(ser.releaseBuffer());
// des._readHostObject = common.mustCall(() => {
// assert.strictEqual(writeHostObjectCalled, true);
// const length = des.readUint32();
// const buf = des.readRawBytes(length);
// assert.strictEqual(buf.toString(), text);
// return hostObject;
// });
// des.readHeader();
// assert.strictEqual(des.readValue().val, hostObject);
// }
// arrayBufferViews.forEach((buf) => {
// testWriteRawBytes(buf);
// });
// }
// {
// const ser = new v8.DefaultSerializer();
// ser._writeHostObject = common.mustCall((object) => {
// throw new Error('foobar');
// });
// ser.writeHeader();
// assert.throws(() => {
// ser.writeValue({ val: hostObject });
// }, /foobar/);
// }
// {
// assert.throws(() => v8.serialize(hostObject), {
// constructor: Error,
// message: 'Unserializable host object: JSStream {}'
// });
// }
{
// Test that an old serialized value can still be deserialized.
const buf = Buffer.from('ff0d6f2203666f6f5e007b01', 'hex');
const des = new v8.DefaultDeserializer(buf);
des.readHeader();
assert.strictEqual(des.getWireFormatVersion(), 0x0d);
const value = des.readValue();
assert.strictEqual(value, value.foo);
}
{
const message = `New serialization format.
This test is expected to fail when V8 changes its serialization format.
When that happens, the "desStr" variable must be updated to the new value
and the change should be mentioned in the release notes, as it is semver-major.
Consider opening an issue as a heads up at https://github.com/nodejs/node/issues/new
`;
const desStr = 'ff0f6f2203666f6f5e007b01';
const desBuf = Buffer.from(desStr, 'hex');
const des = new v8.DefaultDeserializer(desBuf);
des.readHeader();
const value = des.readValue();
const ser = new v8.DefaultSerializer();
ser.writeHeader();
ser.writeValue(value);
const serBuf = ser.releaseBuffer();
const serStr = serBuf.toString('hex');
assert.deepStrictEqual(serStr, desStr, message);
}
{
// Unaligned Uint16Array read, with padding in the underlying array buffer.
let buf = Buffer.alloc(32 + 9);
buf.write('ff0d5c0404addeefbe', 32, 'hex');
buf = buf.slice(32);
const expectedResult = os.endianness() === 'LE' ?
new Uint16Array([0xdead, 0xbeef]) : new Uint16Array([0xadde, 0xefbe]);
assert.deepStrictEqual(v8.deserialize(buf), expectedResult);
}
{
assert.throws(() => v8.Serializer(), {
constructor: TypeError,
message: "Class constructor Serializer cannot be invoked without 'new'",
// code: 'ERR_CONSTRUCT_CALL_REQUIRED'
});
assert.throws(() => v8.Deserializer(), {
constructor: TypeError,
message: "Class constructor Deserializer cannot be invoked without 'new'",
// code: 'ERR_CONSTRUCT_CALL_REQUIRED'
});
}
// `v8.deserialize()` and `new v8.Deserializer()` should support both
// `TypedArray` and `DataView`.
{
for (const obj of objects) {
const buf = v8.serialize(obj);
for (const arrayBufferView of common.getArrayBufferViews(buf)) {
assert.deepStrictEqual(v8.deserialize(arrayBufferView), obj);
}
for (const arrayBufferView of common.getArrayBufferViews(buf)) {
const deserializer = new v8.DefaultDeserializer(arrayBufferView);
deserializer.readHeader();
const value = deserializer.readValue();
assert.deepStrictEqual(value, obj);
const serializer = new v8.DefaultSerializer();
serializer.writeHeader();
serializer.writeValue(value);
assert.deepStrictEqual(buf, serializer.releaseBuffer());
}
}
}
{
const INVALID_SOURCE = 'INVALID_SOURCE_TYPE';
const serializer = new v8.Serializer();
serializer.writeHeader();
assert.throws(
() => serializer.writeRawBytes(INVALID_SOURCE),
/^TypeError: source must be a TypedArray or a DataView$/,
);
assert.throws(
() => v8.deserialize(INVALID_SOURCE),
/^TypeError: buffer must be a TypedArray or a DataView$/,
);
assert.throws(
() => new v8.Deserializer(INVALID_SOURCE),
/^TypeError: buffer must be a TypedArray or a DataView$/,
);
}
{
// Regression test for https://github.com/nodejs/node/issues/37978
assert.throws(() => {
new v8.Deserializer(new v8.Serializer().releaseBuffer()).readDouble();
}, /ReadDouble\(\) failed/);
}
|