这里有两个问题:
1)Jest是测试Node.js(express)API的好选择吗?
2)我正在尝试将Jest与Mockgoose一起使用,但我无法弄清楚如何建立连接并在之后运行测试。这是我在进入SO之前的最后一次尝试:
const Mongoose = require('mongoose').Mongoose
const mongoose = new Mongoose()
mongoose.Promise = require('bluebird')
const mockgoose = require('mockgoose')
const connectDB = (cb) => () => {
return mockgoose(mongoose).then(() => {
return mongoose.connect('mongodb://test/testingDB', err => {
if (err) {
console.log('err is', err)
return process.exit()
}
return cb(() => {
console.log('END') // this is logged
mongoose.connection.close()
})
})
})
}
describe('test api', connectDB((end) => {
test('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3)
})
end()
}))
错误为Your test suite must contain at least one test
。这个错误对我来说有点意义,但我无法弄清楚如何解决它。有什么建议吗?
输出:
Test suite failed to run
Your test suite must contain at least one test.
答案 0 :(得分:1)
答案很晚,但我希望它会有所帮助。 如果你注意,你的描述块里面没有测试功能。
测试函数实际上是在传递给回调的回调函数里面。由于箭头函数回调,堆栈很复杂。
此示例代码将生成相同的问题..
describe('tests',function(){
function cb() {
setTimeout(function(){
it('this does not work',function(end){
end();
});
},500);
}
cb();
setTimeout(function(){
it('also does not work',function(end){
end();
});
},500);
});
由于与mongo的连接是异步的,当jest首次扫描函数以在describe中找到“tests”时,它会失败,因为没有。 它看起来可能不像,但这正是你正在做的事情 我认为在这种情况下你的解决方案有点过于聪明(至于它不起作用),并将其分解为更简单的陈述可能有助于查明这个问题
答案 1 :(得分:0)
var mongoose = require('mongoose');
// mongoose.connect('mongodb://localhost/animal', { useNewUrlParser: true });
var db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
var kittySchema = new mongoose.Schema({
name: String
});
var god = mongoose.model('god', kittySchema);
module.exports = god;
god.js文件的代码
describe("post api", () => {
//life cycle hooks for unit testing
beforeAll(() => {
mongoose.connect(
"mongodb://localhost/animal",
{ useNewUrlParser: true }
);
});
//test the api functions
test("post the data", async () => {
console.log("inside the test data ");
var silence = await new god({ name: "bigboss" }).save();
});
// disconnecting the mongoose connections
afterAll(() => {
// mongoose.connection.db.dropDatabase(function (err) {
// console.log('db dropped');
// // process.exit(0);
// });
mongoose.disconnect(done);
});
});
笑话测试代码..使用笑话我们可以将名称存储在db