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.
32 lines
759 B
32 lines
759 B
var common = require('../../common');
|
|
var connection = common.createConnection({socketPath: common.fakeServerSocket});
|
|
var assert = require('assert');
|
|
|
|
var server = common.createFakeServer();
|
|
var didConnect = false;
|
|
server.listen(common.fakeServerSocket, function(err) {
|
|
if (err) throw err;
|
|
|
|
connection.connect(function(err) {
|
|
if (err) throw err;
|
|
|
|
assert.equal(didConnect, false);
|
|
didConnect = true;
|
|
|
|
connection.destroy();
|
|
server.destroy();
|
|
});
|
|
});
|
|
|
|
var hadConnection = false;
|
|
server.on('connection', function(connection) {
|
|
connection.handshake();
|
|
|
|
assert.equal(hadConnection, false);
|
|
hadConnection = true;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(didConnect, true);
|
|
assert.equal(hadConnection, true);
|
|
});
|