UNPKG

pg-native

Version:
33 lines (30 loc) 1.02 kB
var Client = require('../') var assert = require('assert') var checkDomain = function (domain, when) { assert(process.domain, 'Domain was lost after ' + when) assert.strictEqual(process.domain, domain, 'Domain switched after ' + when) } describe('domains', function () { it('remains bound after a query', function (done) { var domain = require('domain').create() // eslint-disable-line domain.run(function () { var client = new Client() client.connect(function () { checkDomain(domain, 'connection') client.query('SELECT NOW()', function () { checkDomain(domain, 'query') client.prepare('testing', 'SELECT NOW()', 0, function () { checkDomain(domain, 'prepare') client.execute('testing', [], function () { checkDomain(domain, 'execute') client.end(function () { checkDomain(domain, 'end') done() }) }) }) }) }) }) }) })