hapijs-lab:使用有效会话测试路由
hapijs-lab: Test a route with a valid session
在我的 hapijs 应用程序中,我有几条路线需要 session
,使用 hapi-auth-cookie
插件进行身份验证策略。我想为这些路线添加一些测试(通过 Lab )。
我找不到任何关于如何为这种情况设置测试(可能通过 before
?)的文档。任何帮助表示赞赏。提前致谢。
如果您只需要经过身份验证的用户,只需在测试中将用户分配给 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: 'a$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。
为了测试期间需要会话,我创建了 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) => {
...
});
希望对您有所帮助。
在我的 hapijs 应用程序中,我有几条路线需要 session
,使用 hapi-auth-cookie
插件进行身份验证策略。我想为这些路线添加一些测试(通过 Lab )。
我找不到任何关于如何为这种情况设置测试(可能通过 before
?)的文档。任何帮助表示赞赏。提前致谢。
如果您只需要经过身份验证的用户,只需在测试中将用户分配给 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: 'a$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。
为了测试期间需要会话,我创建了 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) => {
...
});
希望对您有所帮助。