mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-25 16:03:13 +00:00
Fixes reference to md5 helper and removes reference to js client as the md5 function is now provided by utils.
43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
JavaScript
'use strict'
|
|
var net = require('net')
|
|
var helper = require(__dirname + '/../test-helper')
|
|
var Connection = require(__dirname + '/../../../lib/connection')
|
|
var utils = require(__dirname + '/../../../lib/utils')
|
|
var connect = function (callback) {
|
|
var username = helper.args.user
|
|
var database = helper.args.database
|
|
var con = new Connection({stream: new net.Stream()})
|
|
con.on('error', function (error) {
|
|
console.log(error)
|
|
throw new Error('Connection error')
|
|
})
|
|
con.connect(helper.args.port || '5432', helper.args.host || 'localhost')
|
|
con.once('connect', function () {
|
|
con.startup({
|
|
user: username,
|
|
database: database
|
|
})
|
|
con.once('authenticationCleartextPassword', function () {
|
|
con.password(helper.args.password)
|
|
})
|
|
con.once('authenticationMD5Password', function (msg) {
|
|
var inner = utils.md5(helper.args.password + helper.args.user)
|
|
var outer = utils.md5(Buffer.concat([Buffer.from(inner), msg.salt]))
|
|
con.password('md5' + outer)
|
|
})
|
|
con.once('readyForQuery', function () {
|
|
con.query('create temp table ids(id integer)')
|
|
con.once('readyForQuery', function () {
|
|
con.query('insert into ids(id) values(1); insert into ids(id) values(2);')
|
|
con.once('readyForQuery', function () {
|
|
callback(con)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
}
|
|
|
|
module.exports = {
|
|
connect: connect
|
|
}
|