node-postgres/test/test-helper.js

236 lines
6.2 KiB
JavaScript
Raw Normal View History

2011-02-24 09:50:43 +08:00
//make assert a global...
assert = require('assert');
2010-10-24 11:07:00 +08:00
2011-02-24 09:50:43 +08:00
var EventEmitter = require('events').EventEmitter;
2011-10-11 08:40:52 +08:00
var sys = require('util');
2011-02-24 09:50:43 +08:00
var BufferList = require(__dirname+'/buffer-list')
2011-08-29 15:35:08 +08:00
var Connection = require(__dirname + '/../lib/connection');
2010-10-24 11:07:00 +08:00
Client = require(__dirname + '/../lib').Client;
process.on('uncaughtException', function(d) {
if ('stack' in d && 'message' in d) {
console.log("Message: " + d.message);
console.log(d.stack);
} else {
console.log(d);
}
});
2010-10-24 11:07:00 +08:00
assert.same = function(actual, expected) {
for(var key in expected) {
assert.equal(actual[key], expected[key]);
}
};
assert.emits = function(item, eventName, callback, message) {
2010-10-24 11:07:00 +08:00
var called = false;
var id = setTimeout(function() {
test("Should have called '" + eventName + "' event", function() {
assert.ok(called, message || "Expected '" + eventName + "' to be called.")
});
2012-08-07 21:36:30 +08:00
},5000);
2010-10-24 11:07:00 +08:00
item.once(eventName, function() {
if (eventName === 'error') {
// belt and braces test to ensure all error events return an error
assert.ok(arguments[0] instanceof Error,
"Expected error events to throw instances of Error but found: " + sys.inspect(arguments[0]));
}
2010-10-24 11:07:00 +08:00
called = true;
clearTimeout(id);
assert.ok(true);
if(callback) {
callback.apply(item, arguments);
}
});
2010-11-01 13:25:03 +08:00
};
assert.UTCDate = function(actual, year, month, day, hours, min, sec, milisecond) {
var actualYear = actual.getUTCFullYear();
assert.equal(actualYear, year, "expected year " + year + " but got " + actualYear);
var actualMonth = actual.getUTCMonth();
assert.equal(actualMonth, month, "expected month " + month + " but got " + actualMonth);
2010-11-01 13:25:03 +08:00
var actualDate = actual.getUTCDate();
assert.equal(actualDate, day, "expected day " + day + " but got " + actualDate);
var actualHours = actual.getUTCHours();
assert.equal(actualHours, hours, "expected hours " + hours + " but got " + actualHours);
var actualMin = actual.getUTCMinutes();
assert.equal(actualMin, min, "expected min " + min + " but got " + actualMin);
var actualSec = actual.getUTCSeconds();
assert.equal(actualSec, sec, "expected sec " + sec + " but got " + actualSec);
2010-10-24 11:07:00 +08:00
2010-11-01 13:25:03 +08:00
var actualMili = actual.getUTCMilliseconds();
assert.equal(actualMili, milisecond, "expected milisecond " + milisecond + " but got " + actualMili);
2010-10-24 11:07:00 +08:00
};
var spit = function(actual, expected) {
console.log("");
console.log("actual " + sys.inspect(actual));
console.log("expect " + sys.inspect(expected));
console.log("");
}
2010-10-24 11:07:00 +08:00
assert.equalBuffers = function(actual, expected) {
if(actual.length != expected.length) {
spit(actual, expected)
2010-10-24 11:07:00 +08:00
assert.equal(actual.length, expected.length);
}
for(var i = 0; i < actual.length; i++) {
if(actual[i] != expected[i]) {
spit(actual, expected)
2010-10-24 11:07:00 +08:00
}
assert.equal(actual[i],expected[i]);
}
};
assert.empty = function(actual) {
assert.lengthIs(actual, 0);
2010-10-24 11:07:00 +08:00
};
assert.success = function(callback) {
2013-03-08 05:57:00 +08:00
if(callback.length === 1) {
return assert.calls(function(err, arg) {
if(err) {
console.log(err);
}
assert.isNull(err);
callback(arg);
});
} else if (callback.length === 2) {
return assert.calls(function(err, arg1, arg2) {
if(err) {
console.log(err);
}
assert.isNull(err);
callback(arg1, arg2);
});
} else {
throw new Error('need to preserve arrity of wrapped function');
}
}
2011-02-25 11:50:17 +08:00
assert.throws = function(offender) {
try {
offender();
} catch (e) {
assert.ok(e instanceof Error, "Expected " + offender + " to throw instances of Error");
2011-02-25 11:50:17 +08:00
return;
}
assert.ok(false, "Expected " + offender + " to throw exception");
}
2010-10-24 11:07:00 +08:00
assert.lengthIs = function(actual, expectedLength) {
2010-10-24 11:07:00 +08:00
assert.equal(actual.length, expectedLength);
};
var expect = function(callback, timeout) {
var executed = false;
var id = setTimeout(function() {
assert.ok(executed, "Expected execution of function to be fired");
2012-08-07 21:36:30 +08:00
}, timeout || 5000)
2013-03-08 05:57:00 +08:00
if(callback.length < 3) {
return function(err, queryResult) {
clearTimeout(id);
if (err) {
assert.ok(err instanceof Error, "Expected errors to be instances of Error: " + sys.inspect(err));
}
callback.apply(this, arguments)
}
} else if(callback.length == 3) {
return function(err, arg1, arg2) {
clearTimeout(id);
if (err) {
assert.ok(err instanceof Error, "Expected errors to be instances of Error: " + sys.inspect(err));
}
callback.apply(this, arguments)
}
2013-03-08 05:57:00 +08:00
} else {
throw new Error("Unsupported arrity " + callback.length);
}
2013-03-08 05:57:00 +08:00
}
assert.calls = expect;
2010-12-10 10:53:59 +08:00
assert.isNull = function(item, message) {
message = message || "expected " + item + " to be null";
assert.ok(item === null, message);
};
2010-10-24 11:07:00 +08:00
test = function(name, action) {
test.testCount ++;
2012-12-11 12:26:23 +08:00
test[name] = action;
var result = test[name]();
if(result === false) {
2012-05-31 11:12:14 +08:00
process.stdout.write('?');
}else{
2012-05-31 11:12:14 +08:00
process.stdout.write('.');
2010-10-24 11:07:00 +08:00
}
};
2010-10-25 14:30:14 +08:00
//print out the filename
process.stdout.write(require('path').basename(process.argv[1]));
2012-05-31 11:12:14 +08:00
var args = require(__dirname + '/cli');
if(args.binary) process.stdout.write(' (binary)');
if(args.native) process.stdout.write(' (native)');
2012-07-12 11:46:19 +08:00
process.on('exit', function() {
console.log('')
})
process.on('uncaughtException', function(err) {
console.error("\n %s", err.stack || err.toString())
//causes xargs to abort right away
process.exit(255);
});
var count = 0;
var Sink = function(expected, timeout, callback) {
2012-08-07 21:36:30 +08:00
var defaultTimeout = 5000;
if(typeof timeout == 'function') {
callback = timeout;
timeout = defaultTimeout;
}
timeout = timeout || defaultTimeout;
var internalCount = 0;
var kill = function() {
assert.ok(false, "Did not reach expected " + expected + " with an idle timeout of " + timeout);
}
var killTimeout = setTimeout(kill, timeout);
return {
add: function(count) {
count = count || 1;
internalCount += count;
clearTimeout(killTimeout)
if(internalCount < expected) {
killTimeout = setTimeout(kill, timeout)
}
else {
assert.equal(internalCount, expected);
callback();
}
}
}
}
2010-10-25 14:30:14 +08:00
2012-05-31 11:12:14 +08:00
2010-10-25 14:30:14 +08:00
module.exports = {
Sink: Sink,
2011-08-29 15:35:08 +08:00
pg: require(__dirname + '/../lib/'),
2012-05-31 11:12:14 +08:00
args: args,
config: args,
2011-02-24 09:50:43 +08:00
sys: sys,
Client: Client
2010-10-25 14:30:14 +08:00
};