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.
25 lines
567 B
25 lines
567 B
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var client, killed = false, ended = false;
|
|
var TIMEOUT = 10 * 1000;
|
|
|
|
client = net.createConnection(53, '8.8.8.8', function() {
|
|
client.unref();
|
|
});
|
|
|
|
client.on('close', function() {
|
|
ended = true;
|
|
});
|
|
|
|
setTimeout(function() {
|
|
killed = true;
|
|
client.end();
|
|
}, TIMEOUT).unref();
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(killed, false, 'A client should have connected');
|
|
assert.strictEqual(ended, false, 'A client should stay connected');
|
|
});
|
|
|