-
Notifications
You must be signed in to change notification settings - Fork 471
/
Copy patharray_buffer.js
70 lines (56 loc) · 2.26 KB
/
array_buffer.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
'use strict';
const assert = require('assert');
const testUtil = require('./testUtil');
module.exports = require('./common').runTest(test);
function test (binding) {
return testUtil.runGCTests([
'Internal ArrayBuffer',
() => {
const test = binding.arraybuffer.createBuffer();
binding.arraybuffer.checkBuffer(test);
assert.ok(test instanceof ArrayBuffer);
const test2 = test.slice(0);
binding.arraybuffer.checkBuffer(test2);
},
'External ArrayBuffer',
() => {
const test = binding.arraybuffer.createExternalBuffer();
binding.arraybuffer.checkBuffer(test);
assert.ok(test instanceof ArrayBuffer);
assert.strictEqual(0, binding.arraybuffer.getFinalizeCount());
},
() => assert.strictEqual(0, binding.arraybuffer.getFinalizeCount()),
'External ArrayBuffer with finalizer',
() => {
const test = binding.arraybuffer.createExternalBufferWithFinalize();
binding.arraybuffer.checkBuffer(test);
assert.ok(test instanceof ArrayBuffer);
assert.strictEqual(0, binding.arraybuffer.getFinalizeCount());
},
() => assert.strictEqual(1, binding.arraybuffer.getFinalizeCount()),
'External ArrayBuffer with finalizer hint',
() => {
const test = binding.arraybuffer.createExternalBufferWithFinalizeHint();
binding.arraybuffer.checkBuffer(test);
assert.ok(test instanceof ArrayBuffer);
assert.strictEqual(0, binding.arraybuffer.getFinalizeCount());
},
() => assert.strictEqual(1, binding.arraybuffer.getFinalizeCount()),
'ArrayBuffer with constructor',
() => {
assert.strictEqual(true, binding.arraybuffer.checkEmptyBuffer());
const test = binding.arraybuffer.createBufferWithConstructor();
binding.arraybuffer.checkBuffer(test);
assert.ok(test instanceof ArrayBuffer);
},
'ArrayBuffer updates data pointer and length when detached',
() => {
// Detach the ArrayBuffer in JavaScript.
const mem = new WebAssembly.Memory({ initial: 1 });
binding.arraybuffer.checkDetachUpdatesData(mem.buffer, () => mem.grow(1));
// Let C++ detach the ArrayBuffer.
const extBuffer = binding.arraybuffer.createExternalBuffer();
binding.arraybuffer.checkDetachUpdatesData(extBuffer);
}
]);
}