我的google-fu可能让我失望了,但我正在研究为使用Stormpath进行身份验证的Express应用程序构建单元测试。所以典型的路线看起来像这样;
app.get('/api/user', stormpath.loginRequired, userApi.get);
在这种情况下,我如何使用像Mocha + Chai这样的测试框架?
答案 0 :(得分:1)
谢谢@rdegges,这让我找到了一个很好的解决方案。我可以看到如何在stormpath中创建测试用户帐户,但在我的情况下,我很高兴在Stormpath中设置了测试用户。所以我只需要创建会话,然后进行实际的测试运行(所以我只需要Chai来保持会话)。所以这是我最终的解决方案。
var agent = chai.request.agent(server);
agent
.post('/login')
.set('Accept', 'application/json')
.set('Content-Type', 'application/x-www-form-urlencoded')
.send({ login: '<username>', password: '<password>' })
.then(function (res) {
// The `agent` now has the session cookie saved, and will send it
// back to the server in the next request:
agent
.put('/user')
.send({user:data})
.end((err, res) => {
if (err){
Logger.error(res.text);
}
res.should.have.status(200);
// Do testing here
done();
});
});
答案 1 :(得分:0)
看看我在express-stormpath库中编写的集成测试,例如:https://github.com/stormpath/express-stormpath/blob/master/test/middlewares/test-groups-required.js#L208