node-postgres/test/unit/client/md5-password-tests.js

21 lines
754 B
JavaScript
Raw Normal View History

require(__dirname + '/test-helper')
test('md5 authentication', function() {
var client = createClient();
client.password = "!";
var salt = Buffer([1, 2, 3, 4]);
client.connection.emit('authenticationMD5Password', {salt: salt});
test('responds', function() {
2010-10-25 11:52:12 +08:00
assert.length(client.connection.stream.packets, 1);
test('should have correct encrypted data', function() {
2010-10-24 09:26:24 +08:00
var encrypted = Client.md5(client.password + client.user);
encrypted = Client.md5(encrypted + salt.toString('binary'));
var password = "md5" + encrypted
//how do we want to test this?
2010-10-25 11:52:12 +08:00
assert.equalBuffers(client.connection.stream.packets[0], new BufferList()
.addCString(password).join(true,'p'))
});
});
});