mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
746 B
40 lines
746 B
10 years ago
|
'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;
|
||
|
|
||
|
var done = false;
|
||
|
|
||
|
function testShutdown(callback) {
|
||
|
var stream = new Duplex({
|
||
|
read: function() {
|
||
|
},
|
||
|
write: function() {
|
||
|
}
|
||
|
});
|
||
|
|
||
|
var wrap = new StreamWrap(stream);
|
||
|
|
||
|
var 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(function() {
|
||
|
done = true;
|
||
|
});
|
||
|
|
||
|
process.on('exit', function() {
|
||
|
assert(done);
|
||
|
});
|