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.
35 lines
789 B
35 lines
789 B
var common = require('../../common');
|
|
var connection = common.createConnection({
|
|
port : common.fakeServerPort,
|
|
password : 'oldpw',
|
|
insecureAuth : true,
|
|
});
|
|
var assert = require('assert');
|
|
|
|
var server = common.createFakeServer();
|
|
|
|
var connected;
|
|
server.listen(common.fakeServerPort, function(err) {
|
|
if (err) throw err;
|
|
|
|
connection.connect(function(err, result) {
|
|
if (err) throw err;
|
|
|
|
connected = result;
|
|
|
|
connection.destroy();
|
|
server.destroy();
|
|
});
|
|
});
|
|
|
|
server.on('connection', function(incomingConnection) {
|
|
incomingConnection.handshake({
|
|
user : connection.config.user,
|
|
password : connection.config.password,
|
|
oldPassword : true,
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(connected.fieldCount, 0);
|
|
});
|