test: add makeDuplexPair()
helper
Add a utility for adding simple, streams-API based duplex pairs. PR-URL: https://github.com/nodejs/node/pull/16269 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
170bc31669
commit
e340a66cb1
@ -8,6 +8,7 @@ This directory contains modules used to test the Node.js implementation.
|
|||||||
* [Common module API](#common-module-api)
|
* [Common module API](#common-module-api)
|
||||||
* [Countdown module](#countdown-module)
|
* [Countdown module](#countdown-module)
|
||||||
* [DNS module](#dns-module)
|
* [DNS module](#dns-module)
|
||||||
|
* [Duplex pair helper](#duplex-pair-helper)
|
||||||
* [Fixtures module](#fixtures-module)
|
* [Fixtures module](#fixtures-module)
|
||||||
* [WPT module](#wpt-module)
|
* [WPT module](#wpt-module)
|
||||||
|
|
||||||
@ -458,6 +459,14 @@ Reads a Domain String and returns a Buffer containing the domain.
|
|||||||
Takes in a parsed Object and writes its fields to a DNS packet as a Buffer
|
Takes in a parsed Object and writes its fields to a DNS packet as a Buffer
|
||||||
object.
|
object.
|
||||||
|
|
||||||
|
## Duplex pair helper
|
||||||
|
|
||||||
|
The `common/duplexpair` module exports a single function `makeDuplexPair`,
|
||||||
|
which returns an object `{ clientSide, serverSide }` where each side is a
|
||||||
|
`Duplex` stream connected to the other side.
|
||||||
|
|
||||||
|
There is no difference between client or server side beyond their names.
|
||||||
|
|
||||||
## Fixtures Module
|
## Fixtures Module
|
||||||
|
|
||||||
The `common/fixtures` module provides convenience methods for working with
|
The `common/fixtures` module provides convenience methods for working with
|
||||||
|
45
test/common/duplexpair.js
Normal file
45
test/common/duplexpair.js
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
/* eslint-disable required-modules */
|
||||||
|
'use strict';
|
||||||
|
const { Duplex } = require('stream');
|
||||||
|
const assert = require('assert');
|
||||||
|
|
||||||
|
const kCallback = Symbol('Callback');
|
||||||
|
const kOtherSide = Symbol('Other');
|
||||||
|
|
||||||
|
class DuplexSocket extends Duplex {
|
||||||
|
constructor() {
|
||||||
|
super();
|
||||||
|
this[kCallback] = null;
|
||||||
|
this[kOtherSide] = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
_read() {
|
||||||
|
const callback = this[kCallback];
|
||||||
|
if (callback) {
|
||||||
|
this[kCallback] = null;
|
||||||
|
callback();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_write(chunk, encoding, callback) {
|
||||||
|
assert.notStrictEqual(this[kOtherSide], null);
|
||||||
|
assert.strictEqual(this[kOtherSide][kCallback], null);
|
||||||
|
this[kOtherSide][kCallback] = callback;
|
||||||
|
this[kOtherSide].push(chunk);
|
||||||
|
}
|
||||||
|
|
||||||
|
_final(callback) {
|
||||||
|
this[kOtherSide].on('end', callback);
|
||||||
|
this[kOtherSide].push(null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function makeDuplexPair() {
|
||||||
|
const clientSide = new DuplexSocket();
|
||||||
|
const serverSide = new DuplexSocket();
|
||||||
|
clientSide[kOtherSide] = serverSide;
|
||||||
|
serverSide[kOtherSide] = clientSide;
|
||||||
|
return { clientSide, serverSide };
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = makeDuplexPair;
|
Loading…
x
Reference in New Issue
Block a user