-
-
Notifications
You must be signed in to change notification settings - Fork 35.4k
Expand file tree
/
Copy pathtest-webstreams-adapters-writable-buffer-sources.js
More file actions
95 lines (89 loc) Β· 2.87 KB
/
test-webstreams-adapters-writable-buffer-sources.js
File metadata and controls
95 lines (89 loc) Β· 2.87 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
'use strict';
const common = require('../common');
const assert = require('assert');
const { Buffer } = require('buffer');
const { Duplex, Writable } = require('stream');
const { suite, test } = require('node:test');
const ctors = [ArrayBuffer, SharedArrayBuffer];
suite('underlying Writable', () => {
suite('in non-object mode', () => {
for (const ctor of ctors) {
test(`converts ${ctor.name} chunks`, async () => {
const buffer = new ctor(4);
const writable = new Writable({
objectMode: false,
write: common.mustCall((chunk, encoding, callback) => {
assert(Buffer.isBuffer(chunk));
assert.strictEqual(chunk.buffer, buffer);
callback();
}),
});
writable.on('error', common.mustNotCall());
const writer = Writable.toWeb(writable).getWriter();
await writer.write(buffer);
});
}
});
suite('in object mode', () => {
for (const ctor of ctors) {
test(`passes through ${ctor.name} chunks`, async () => {
const buffer = new ctor(4);
const writable = new Writable({
objectMode: true,
write: common.mustCall((chunk, encoding, callback) => {
assert(chunk instanceof ctor);
assert.strictEqual(chunk, buffer);
callback();
}),
});
writable.on('error', common.mustNotCall());
const writer = Writable.toWeb(writable).getWriter();
await writer.write(buffer);
});
}
});
});
suite('underlying Duplex', () => {
suite('in non-object mode', () => {
for (const ctor of ctors) {
test(`converts ${ctor.name} chunks`, async () => {
const buffer = new ctor(4);
const duplex = new Duplex({
writableObjectMode: false,
write: common.mustCall((chunk, encoding, callback) => {
assert(Buffer.isBuffer(chunk));
assert.strictEqual(chunk.buffer, buffer);
callback();
}),
read() {
this.push(null);
},
});
duplex.on('error', common.mustNotCall());
const writer = Duplex.toWeb(duplex).writable.getWriter();
await writer.write(buffer);
});
}
});
suite('in object mode', () => {
for (const ctor of ctors) {
test(`passes through ${ctor.name} chunks`, async () => {
const buffer = new ctor(4);
const duplex = new Duplex({
writableObjectMode: true,
write: common.mustCall((chunk, encoding, callback) => {
assert(chunk instanceof ctor);
assert.strictEqual(chunk, buffer);
callback();
}),
read() {
this.push(null);
},
});
duplex.on('error', common.mustNotCall());
const writer = Duplex.toWeb(duplex).writable.getWriter();
await writer.write(buffer);
});
}
});
});