在我的hapijs应用程序中,我有几条需要session
的路由,使用hapi-auth-cookie
插件进行身份验证策略。我想为这些路线添加一些测试(通过Lab)。
我无法找到有关如何为此方案设置测试(可能是通过before
?)的任何文档。任何帮助表示赞赏。提前谢谢。
答案 0 :(得分:4)
如果您只需要经过身份验证的用户,只需将用户分配到测试中的credentials
属性:
var user = { ... };
server.inject({ method: 'GET', url: '/', credentials: user }, function (res) {
console.log(res.result);
});
以下是一个演示它的示例:
var Bcrypt = require('bcrypt');
var Hapi = require('hapi');
var HapiAuthCookie = require('hapi-auth-cookie');
var server = new Hapi.Server();
server.connection({ port: 3000 });
var users = {
john: {
username: 'john',
password: '$2a$10$iqJSHD.BGr0E2IxQwYgJmeP3NvhPrXAeLSaGCj6IR/XU5QtjVu5Tm',
name: 'John Doe',
id: '2133d32a'
}
};
var validate = function (request, username, password, callback) {
var user = users[username];
if (!user) {
return callback(null, false);
}
Bcrypt.compare(password, user.password, function (err, isValid) {
callback(err, isValid, { id: user.id, name: user.name });
});
};
server.register(HapiAuthCookie, function (err) {
server.auth.strategy('session', 'cookie', {
password: 'secret',
validateFunc: validate
});
server.route({
method: 'GET',
path: '/',
config: {
auth: 'session',
handler: function (request, reply) {
reply('hello, ' + request.auth.credentials.name);
}
}
});
server.inject({ method: 'GET', url: '/', credentials: users.john }, function (res) {
console.log(res.result);
});
});
该示例的大部分内容取自Authentication Tutorial。
答案 1 :(得分:1)
为了满足我在测试期间对会话的需求,我创建了hapi-session-inject。用法如下
const server = new Hapi.Server();
const session = new Session(server);
// Callback interface
session.inject('/', (res) => {
...
});
// Promise interface
return session.inject('/').then((res) => {
...
});
希望它有所帮助。