mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-25 16:03:13 +00:00
48 lines
1.9 KiB
JavaScript
48 lines
1.9 KiB
JavaScript
'use strict'
|
|
const helper = require('./../test-helper')
|
|
const assert = require('assert')
|
|
const util = require('util')
|
|
|
|
const suite = new helper.Suite()
|
|
|
|
const secret_value = 'FAIL THIS TEST'
|
|
|
|
suite.test('SSL Key should not exist in toString() output', () => {
|
|
const pool = new helper.pg.Pool({ ssl: { key: secret_value } })
|
|
const client = new helper.pg.Client({ ssl: { key: secret_value } })
|
|
assert(pool.toString().indexOf(secret_value) === -1)
|
|
assert(client.toString().indexOf(secret_value) === -1)
|
|
})
|
|
|
|
suite.test('SSL Key should not exist in util.inspect output', () => {
|
|
const pool = new helper.pg.Pool({ ssl: { key: secret_value } })
|
|
const client = new helper.pg.Client({ ssl: { key: secret_value } })
|
|
const depth = 20
|
|
assert(util.inspect(pool, { depth }).indexOf(secret_value) === -1)
|
|
assert(util.inspect(client, { depth }).indexOf(secret_value) === -1)
|
|
})
|
|
|
|
suite.test('SSL Key should not exist in json.stringfy output', () => {
|
|
const pool = new helper.pg.Pool({ ssl: { key: secret_value } })
|
|
const client = new helper.pg.Client({ ssl: { key: secret_value } })
|
|
const depth = 20
|
|
assert(JSON.stringify(pool).indexOf(secret_value) === -1)
|
|
assert(JSON.stringify(client).indexOf(secret_value) === -1)
|
|
})
|
|
|
|
suite.test('SSL Key should exist for direct access', () => {
|
|
const pool = new helper.pg.Pool({ ssl: { key: secret_value } })
|
|
const client = new helper.pg.Client({ ssl: { key: secret_value } })
|
|
assert(pool.options.ssl.key === secret_value)
|
|
assert(client.connectionParameters.ssl.key === secret_value)
|
|
})
|
|
|
|
suite.test('SSL Key should exist for direct access even when non-enumerable custom config', () => {
|
|
const config = { ssl: { key: secret_value } }
|
|
Object.defineProperty(config.ssl, 'key', { enumerable: false })
|
|
const pool = new helper.pg.Pool(config)
|
|
const client = new helper.pg.Client(config)
|
|
assert(pool.options.ssl.key === secret_value)
|
|
assert(client.connectionParameters.ssl.key === secret_value)
|
|
})
|