mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
Replaces __dirname concatentation in pg test scripts so that editors like VS Code can automatically generate typings and support code navigation (F12).
41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
'use strict'
|
|
var net = require('net')
|
|
var helper = require('../test-helper')
|
|
var Connection = require('../../../lib/connection')
|
|
var utils = require('../../../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) {
|
|
con.password(utils.postgresMd5PasswordHash(helper.args.user, helper.args.password, msg.salt))
|
|
})
|
|
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,
|
|
}
|