This repository was archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathhelper.js
72 lines (63 loc) · 1.62 KB
/
helper.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
var sys = require("sys");
var assert = require("assert");
var scope = function(target, func) {
return function(){ return func.apply(target, arguments); }
}
exports.scope = scope;
var pending_callbacks = 0;
exports.pending_callbacks = pending_callbacks;
var expect_callback = function() {
pending_callbacks++;
}
exports.expect_callback = expect_callback;
var was_called_back = function() {
pending_callbacks--;
}
exports.was_called_back = was_called_back;
var createMockConnection = function(mysql, stream) {
var conn = new mysql.Connection('localhost',
'nodejs_mysql',
'nodejs_mysql',
'nodejs_mysql',
33306);
exports.exceptClass(mysql.Connection, conn);
conn.addListener("connect", function() {
conn.protocol.conn.socket.write(stream);
});
return conn;
}
exports.createMockConnection = createMockConnection;
var run = function(testfuncs){
pending_callbacks = 0;
var testfunc = testfuncs.shift();
if(!testfunc) return true;
var promise = testfunc[1]();
if(promise) {
promise
.addCallback(function() {
assert.equal(0, pending_callbacks);
sys.puts("Success: "+testfunc[0]);
run(testfuncs);
})
.addErrback(function() {
sys.puts("Failed: "+testfunc[0]);
run(testfuncs);
});
}
else {
sys.puts("Tested: "+testfunc[0])
run(testfuncs);
}
}
exports.run = run;
var exceptClass = function(klass,obj) {
assert.equal(klass.contructor, obj.constractor);
}
exports.exceptClass = exceptClass;
/*
node-mysql
A node.js interface for MySQL
Author: masuidrive <[email protected]>
License: MIT License
Copyright (c) Yuichiro MASUI
*/