Initial work on the server

This commit is contained in:
Abhishek Das
2013-03-25 06:08:51 +05:30
parent 93400554fd
commit 0485272d93
626 changed files with 121311 additions and 1 deletions
+35
View File
@@ -0,0 +1,35 @@
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);
});