我将如何模拟我的 node.js 应用程序中的数据库,在这种情况下,它mongodb
用作博客 REST API 的后端?
当然,我可以将数据库设置为特定的testing
数据库,但我仍然会保存数据并且不仅测试我的代码,还测试数据库,所以我实际上不是在进行单元测试而是进行集成测试。
那么一个人应该怎么做呢?创建数据库包装器作为应用程序和数据库之间的中间层并在测试时替换 DAL?
// app.js
var express = require('express');
app = express(),
mongo = require('mongoskin'),
db = mongo.db('localhost:27017/test?auto_reconnect');
app.get('/posts/:slug', function(req, res){
db.collection('posts').findOne({slug: req.params.slug}, function (err, post) {
res.send(JSON.stringify(post), 200);
});
});
app.listen(3000);
// test.js
r = require('requestah')(3000);
describe("Does some testing", function() {
it("Fetches a blogpost by slug", function(done) {
r.get("/posts/aslug", function(res) {
expect(res.statusCode).to.equal(200);
expect(JSON.parse(res.body)["title"]).to.not.equal(null);
return done();
});
});
));