Skip to content

Commit

Permalink
Make tests compatible with PostgreSQL 10
Browse files Browse the repository at this point in the history
PostgreSQL 10 reports its version as only `major.minor`, so it can’t be parsed with semver. The `server_version_num` setting is a major version followed by a four-digit minor version since version 10, and was a three-digit major version followed by a two-digit minor version before that.
  • Loading branch information
charmander authored and brianc committed Nov 17, 2017
1 parent 0b80aba commit 9870c86
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion test/integration/client/json-type-parsing-tests.js
Expand Up @@ -4,7 +4,7 @@ var assert = require('assert')

const pool = new helper.pg.Pool()
pool.connect(assert.success(function (client, done) {
helper.versionGTE(client, '9.2.0', assert.success(function (jsonSupported) {
helper.versionGTE(client, 90200, assert.success(function (jsonSupported) {
if (!jsonSupported) {
console.log('skip json test on older versions of postgres')
done()
Expand Down
Expand Up @@ -44,7 +44,7 @@ function killIdleQuery (targetQuery, cb) {
var pidColName = 'procpid'
var queryColName = 'current_query'
client2.connect(assert.success(function () {
helper.versionGTE(client2, '9.2.0', assert.success(function (isGreater) {
helper.versionGTE(client2, 90200, assert.success(function (isGreater) {
if (isGreater) {
pidColName = 'pid'
queryColName = 'query'
Expand Down
6 changes: 3 additions & 3 deletions test/integration/client/query-error-handling-tests.js
Expand Up @@ -10,7 +10,7 @@ test('error during query execution', function() {
var sleepQuery = new Query(queryText);
var pidColName = 'procpid'
var queryColName = 'current_query';
helper.versionGTE(client, '9.2.0', assert.success(function(isGreater) {
helper.versionGTE(client, 90200, assert.success(function(isGreater) {
if(isGreater) {
pidColName = 'pid';
queryColName = 'query';
Expand Down Expand Up @@ -48,7 +48,7 @@ if (helper.config.native) {
test('9.3 column error fields', function() {
var client = new Client(helper.args);
client.connect(assert.success(function() {
helper.versionGTE(client, '9.3.0', assert.success(function(isGreater) {
helper.versionGTE(client, 90300, assert.success(function(isGreater) {
if(!isGreater) {
return client.end();
}
Expand All @@ -68,7 +68,7 @@ test('9.3 column error fields', function() {
test('9.3 constraint error fields', function() {
var client = new Client(helper.args);
client.connect(assert.success(function() {
helper.versionGTE(client, '9.3.0', assert.success(function(isGreater) {
helper.versionGTE(client, 90300, assert.success(function(isGreater) {
if(!isGreater) {
console.log('skip 9.3 error field on older versions of postgres');
return client.end();
Expand Down
2 changes: 1 addition & 1 deletion test/integration/client/result-metadata-tests.js
Expand Up @@ -7,7 +7,7 @@ new helper.Suite().test('should return insert metadata', function () {
pool.connect(assert.calls(function (err, client, done) {
assert(!err)

helper.versionGTE(client, '9.0.0', assert.success(function (hasRowCount) {
helper.versionGTE(client, 90000, assert.success(function (hasRowCount) {
client.query('CREATE TEMP TABLE zugzug(name varchar(10))', assert.calls(function (err, result) {
assert(!err)
assert.equal(result.oid, null)
Expand Down
2 changes: 1 addition & 1 deletion test/integration/connection-pool/error-tests.js
Expand Up @@ -21,7 +21,7 @@ suite.test('errors emitted on pool', (cb) => {
pool.connect(assert.success(function (client2, done2) {
client2.id = 2
var pidColName = 'procpid'
helper.versionGTE(client2, '9.2.0', assert.success(function (isGreater) {
helper.versionGTE(client2, 90200, assert.success(function (isGreater) {
var killIdleQuery = 'SELECT pid, (SELECT pg_terminate_backend(pid)) AS killed FROM pg_stat_activity WHERE state = $1'
var params = ['idle']
if (!isGreater) {
Expand Down
9 changes: 4 additions & 5 deletions test/integration/test-helper.js
Expand Up @@ -14,12 +14,11 @@ helper.client = function (cb) {
return client
}

var semver = require('semver')
helper.versionGTE = function (client, versionString, callback) {
client.query('SELECT version()', assert.calls(function (err, result) {
helper.versionGTE = function (client, testVersion, callback) {
client.query('SHOW server_version_num', assert.calls(function (err, result) {
if (err) return callback(err)
var version = result.rows[0].version.split(' ')[1]
return callback(null, semver.gte(version, versionString))
var version = parseInt(result.rows[0].server_version_num, 10)
return callback(null, version >= testVersion)
}))
}

Expand Down

0 comments on commit 9870c86

Please sign in to comment.