使用node-mssql库从 SQL 中提取数据。我使用 Sinon 已经有一段时间了(用它写了大约 200 个测试);我在如何将这个库存根时遇到了很多麻烦。代码如下所示:
var sql = require('mssql');
var conn = new sql.Connection(sqlConfig); // sqlConfig is connection info, defined elsewhere
conn.connect(function(err) {
var req, selectFromTable;
if (err != null) {
// handle error
}
req = new sql.Request(conn);
selectFromTable = "select * from DW." + table + " where DWCreatedDate >= '" + start + "' and DWCreatedDate <= '" + end + "' ";
logger.debug("Selecting with: ", selectFromTable);
req.input('statement', sql.NVarChar, selectFromTable);
return req.execute('sp_executesql', function(err, results, returnValue, affected) {
if (err != null) {
// etc.
} else {
// data processing
}
});
});
代码工作正常。现在我正在尝试为它编写一个测试。我知道这个库很难测试,所以我拖延了。我最接近的代码:
var conn, reqExecute, sqlReqStub;
sqlReqStub = sinon.stub();
sqlReqStub.execute = sinon.stub();
sinon.stub(sql, 'Request').returns(sqlReqStub);
conn = sinon.stub();
sinon.stub(sql, 'Connection').returns(conn);
conn.connect = sinon.stub().callsArgWith(0, null);
reqExecute = sqlReqStub.execute.withArgs('sp_executesql').onFirstCall().callsArgWith(1, null, {
a: 1
});
您的自然倾向可能是说“好吧,使用createStubInstance
”,但是当我使用它时,我会返回new sql.Connection(config)
具有 TediousRequest 的连接对象(存根请求。我在对象中的任何地方都找不到 TediousRequestsql
来存根。
我被困在这里;希望有人有一些代码可以做到这一点,或者可以解释我做错了什么。