我读到了supertest。我设法测试了我的两条路线:
it('notAuthorized', function (done) {
request.agent(server)
.get('/notAuthorized')
.expect('Content-Type', /html/)
.expect(200)
.expect(/Not authorized!/)
.end(done)
})
it('redirect', function (done) {
request.agent(server)
.get('/no-valid-route')
.expect('Content-Type', /plain/)
.expect(302)
.expect('Location', '/notAuthorized')
.expect(/Moved Temporarily/)
.end(done)
})
但是,当我想访问我需要注册的其他页面时,问题就开始了。我找到了这个定期注册的解决方案:
describe('When logged in', function () {
before(function (done) {
// login the user
agent
.post('/users/session')
.field('email', 'foobar@example.com')
.field('password', 'foobar')
.end(done)
})
// ...
})
在我的应用程序中,我使用证书注册。我可以用我的证书以某种方式配置测试吗?更改我的 https 选项也不起作用:
///////////////////
// https options
var options = {
// ...
requestCert: false,
rejectUnauthorized: false
};
我认为这是因为我在每条路线中都
使用了中间件:
exports.isAuthenticated = function(req, res, next){
if(req.client.authorized) {
// user authorized
if(!req.session.user) {
// set user session
var cert = req.connection.getPeerCertificate().subject;
// ..
// profile
app.get("/profile", mw.isAuthenticated, profileController.getProfile);
// user
app.get("/users", mw.isAuthenticated, userController.getUsers);
// chat
app.get("/chat", mw.isAuthenticated, chatController.getChat);
问题:
- 无论如何我可以用我的证书配置代理吗?
- 我是否应该过度考虑
isAuthenticated
在每条路线中使用中间件的设计? - 我可以以某种方式更改超测代理的 cookie 对象吗?
如果我可以像下面的代码片段那样设置 req 对象,我可能会有一个解决方案。
req : {
client : {
authorized : true
},
connection :{
getPeerCertificate : function(){
this.subject = 1;
}
}
}