deno.land / std@0.166.0 / node / _tools / test / parallel / test-stream-pipe-same-destination-twice.js

test-stream-pipe-same-destination-twice.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
// deno-fmt-ignore-file// deno-lint-ignore-file
// Copyright Joyent and Node contributors. All rights reserved. MIT license.// Taken from Node 18.12.0// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
'use strict';const common = require('../common');
// Regression test for https://github.com/nodejs/node/issues/12718.// Tests that piping a source stream twice to the same destination stream// works, and that a subsequent unpipe() call only removes the pipe *once*.const assert = require('assert');const { PassThrough, Writable } = require('stream');
{ const passThrough = new PassThrough(); const dest = new Writable({ write: common.mustCall((chunk, encoding, cb) => { assert.strictEqual(`${chunk}`, 'foobar'); cb(); }) });
passThrough.pipe(dest); passThrough.pipe(dest);
assert.strictEqual(passThrough._events.data.length, 2); assert.strictEqual(passThrough._readableState.pipes.length, 2); assert.strictEqual(passThrough._readableState.pipes[0], dest); assert.strictEqual(passThrough._readableState.pipes[1], dest);
passThrough.unpipe(dest);
assert.strictEqual(passThrough._events.data.length, 1); assert.strictEqual(passThrough._readableState.pipes.length, 1); assert.deepStrictEqual(passThrough._readableState.pipes, [dest]);
passThrough.write('foobar'); passThrough.pipe(dest);}
{ const passThrough = new PassThrough(); const dest = new Writable({ write: common.mustCall((chunk, encoding, cb) => { assert.strictEqual(`${chunk}`, 'foobar'); cb(); }, 2) });
passThrough.pipe(dest); passThrough.pipe(dest);
assert.strictEqual(passThrough._events.data.length, 2); assert.strictEqual(passThrough._readableState.pipes.length, 2); assert.strictEqual(passThrough._readableState.pipes[0], dest); assert.strictEqual(passThrough._readableState.pipes[1], dest);
passThrough.write('foobar');}
{ const passThrough = new PassThrough(); const dest = new Writable({ write: common.mustNotCall() });
passThrough.pipe(dest); passThrough.pipe(dest);
assert.strictEqual(passThrough._events.data.length, 2); assert.strictEqual(passThrough._readableState.pipes.length, 2); assert.strictEqual(passThrough._readableState.pipes[0], dest); assert.strictEqual(passThrough._readableState.pipes[1], dest);
passThrough.unpipe(dest); passThrough.unpipe(dest);
assert.strictEqual(passThrough._events.data, undefined); assert.strictEqual(passThrough._readableState.pipes.length, 0);
passThrough.write('foobar');}
std

Version Info

Tagged at
a year ago