mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 18:44:40 +00:00

Export a new common.noop no-operation function for general use. Allow using common.mustCall() without a fn argument to simplify test cases. Replace various non-op functions throughout tests with common.noop PR-URL: https://github.com/nodejs/node/pull/12027 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
32 lines
668 B
JavaScript
32 lines
668 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const StreamWrap = require('_stream_wrap');
|
|
const Duplex = require('stream').Duplex;
|
|
const ShutdownWrap = process.binding('stream_wrap').ShutdownWrap;
|
|
|
|
function testShutdown(callback) {
|
|
const stream = new Duplex({
|
|
read: function() {
|
|
},
|
|
write: function() {
|
|
}
|
|
});
|
|
|
|
const wrap = new StreamWrap(stream);
|
|
|
|
const req = new ShutdownWrap();
|
|
req.oncomplete = function(code) {
|
|
assert(code < 0);
|
|
callback();
|
|
};
|
|
req.handle = wrap._handle;
|
|
|
|
// Close the handle to simulate
|
|
wrap.destroy();
|
|
req.handle.shutdown(req);
|
|
}
|
|
|
|
testShutdown(common.mustCall());
|