16

我正在使用 supertest 测试我的 Node.js 应用程序。在我的控制器中,我访问会话对象。为了发出一个有效的请求,这个会话对象需要填充一些数据。

控制器

        // determine whether it is user's own profile or not
        var ownProfile = userId == req.session.user._id ? true : false;

测试

it('profile', function (done) {
    testUserOne.save(function(error, user){

        request
            .agent(server)
            .get('/profile?userId=' + user._id)
            .expect('Content-Type', /html/)
            .expect(200)
            .expect(/Profile/)
            .end(done);
    })
});

问题

如何模拟 req/session 对象?

4

2 回答 2

13

这个新的库应该可以解决问题:

您还可以查看作为supertest一部分的superagent。这是一个很好的教程:

不想要另一个库?试试这个...

于 2014-01-31T05:36:35.260 回答
12

just use as sub-app, and call your authenticated() at parent-app:

var mockApp = express();
mockApp.use(session);
mockApp.all('*', function(req, res, next) {
    //authenticated(req, res, next);
    //OR
    req.session.uid = 'mock uid';
    next();
});
mockApp.use(app);

all your routes will be authenticated before matched!

于 2015-01-29T15:09:30.100 回答