- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个 SailsJS 设置,并使用 Mocha/Supertest/Superagent 组合来运行单元测试。我已经搜索并阅读了有关 supertest 的内容,以及它现在如何扩展 superagent.agent('url') 以存储 session 和 cookie。我知道我的/athlete/login 和/athlete/current 路由正在工作,因为我可以使用 Postman 测试它们,并且它们返回正确的值。但是,在测试时,我在登录时得到 200 状态,但在/athlete/current 上得到 404
这是我目前正在处理的内容:
<强>1。 Mocha 测试登录并验证登录用户的 session
var should = require('should'),
assert = require('assert'),
request = require('supertest');
it('/athlete/login should return 200 and athlete on success', function (done){
var athleteStub = AthleteStub(),
setPassword = athleteStub.password;
Athlete.create(athleteStub, function(err, newAthlete) {
var user = request.agent(sails.express.app);
user
.post('/athlete/login')
.send({ 'email': athleteStub.email, 'password': setPassword })
.expect('Content-Type', /json/)
.end(function (err, res) {
if(err) return done(err);
console.log('test', user );
// res.should.have.status(200);
// res.body.email.should.equal(athleteStub.email);
user
.get('/athlete/current')
.set('Accept', 'application/json')
.expect('Content-Type', /json/)
.expect(200)
.end(function (err, res) {
if(err) return done(err);
done();
});
});
});
});
<强>2。/登录和/当前操作
login: function (req, res) {
var bcrypt = require('bcrypt');
Athlete.findOneByEmail(req.body.email).done(function (err, athlete) {
if (err) {
res.json({ error: 'DB error' }, 500);
}
if (athlete) {
if ( !athlete.isActive ){
res.json({ error: 'Your account is not active.' }, 500);
}
bcrypt.compare(req.body.password, athlete.password, function (err, match) {
if (err){
res.json({ error: 'Server error' }, 500);
}
if (match) {
// password match
req.session.athlete = athlete.id;
res.json(athlete);
} else {
// invalid password
if (req.session.athlete){
req.session.athlete = null;
}
res.json({ error: 'Invalid password' }, 403);
}
});
} else {
res.json({ error: 'User not found' }, 404);
}
});
},
current: function (req, res){
if(req.session.athlete){
Athlete.findOneById(req.session.athlete)
.where({ isActive: true })
.done(function(err, athlete) {
if (err) {
res.json({ error: 'No active athlete found with ID of '+req.params.id }, 404);
} else {
res.json(athlete);
}
});
}else{
res.json({ error: 'No active athlete currently logged in.' }, 404);
}
},
<小时/>
解决方案
我改变了一些路由,所以基本上把上面的“/athlete/current/”现在变成了“/athlete/me/”
it("/athlete/me should return user data if athlete is logged in", function(done){
var agent = request.agent(sails.hooks.http.app),
athleteStub = AthleteStub(),
setPassword = athleteStub.password;
agent
.post('/athlete')
.send( athleteStub )
.expect('Content-Type', /json/)
.end(function (err, res) {
should.not.exist(err);
res.should.have.status(200);
res.body.email.should.equal(athleteStub.email);
res.body.firstName.should.equal(athleteStub.firstName);
res.body.lastName.should.equal(athleteStub.lastName);
agent
.post('/athlete/login')
.send({ 'email': athleteStub.email, 'password': setPassword })
.expect('Content-Type', /json/)
.end(function (err, res) {
should.not.exist(err);
res.should.have.status(200);
agent
.get('/athlete/me')
.expect(200)
.end(function(err, res) {
should.not.exist(err);
res.body.email.should.equal(athleteStub.email);
res.should.have.status(200);
done();
});
});
});
});
最佳答案
不确定您是否找到了答案,但我能够使用以下代码保存 cookie:
var agent = request.agent(sails.hooks.http.app);
describe('Session', function(done) {
it("should be able to create", function(done) {
agent
.post("/session/create")
.send({email: "test.User1@gmail.com",password: "test", confirmation: "test"})
.expect('set-cookie', 'cookie=hey; Path=/', done)
.end(function(err, res) {
console.log('got a response!! '+ JSON.stringify(res.body));
done();
});
});
it("should be logged in", function(done) {
agent
.get("/user/index")
.end(function(err, res) {
console.log('got a response from user/index!! '+ JSON.stringify(res.body));
done();
});
});
});
关于node.js - 使用 SailsJS/Node、Mocha、Supertest 进行身份验证的 session 存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22052969/
我正在使用 supertest 发送获取查询字符串参数,我该怎么做? 我试过 var imsServer = supertest.agent("https://example.com"); imsSe
我正在使用 expressjs 构建 API,我的路线如下所示 module.exports = function(app){ var book = require('../controllers/b
我是测试驱动开发的新手,正在尝试使用 super 测试来自学。我很困惑为什么我不断收到错误“应用程序未定义”?这是我对 request(app) 的调用,我在下面用粗体显示了它。我尝试查找文档,但似乎
初学者使用 Javascript 进行测试。我正在使用摩卡,但路易斯明智地表示,这个问题并不是摩卡特有的。我有一个 Node 应用程序,其中一些页面对匿名用户可见,而有些页面如果您未登录,则不应该看到
我正在尝试用 typescript 编写 API 测试。 我已经像这样安装了以下软件包: npm install -g mocha npm install chai npm install super
我有以下服务器类: import express, { Request, Response } from 'express'; export default class Server { serv
我正在使用 express 开发一个 API 并使用 supertest 对其进行测试.我的 API 端点正在返回 tar.gz 文件。我想测试一下文件是否正确发送并且内容是否正确。我在弄清楚如何检索
我是后端开发的新手,我遇到了一个我不明白的问题。 我设置了名为“health”的 API 的第一个路由,它只返回一条简单消息以了解我的服务器是否已启动。 这条路线看起来像预期的那样工作。 但是, 当我
我懂了 TypeError: Cannot read property 'status' of undefined 当尝试使用 supertest 将文件上传到简单的 Restify 服务器时,并且打
用supertest,我可以测试重定向代码302 var request = require('supertest'); var app = require('../server').app; des
我正在使用 supertest 测试我的 API 端点,而且效果很好,但我不知道如何测试文件下载是否成功。 在我的路由文件中,我将端点定义为: app.get('/api/attachment/:id
当我进行 API 调用时,我想检查返回的 JSON 的结果。我可以看到正文和一些静态数据正在被正确检查,但是在我使用正则表达式的任何地方,事情都被破坏了。这是我的测试示例: describe('get
我无法运行多个 Supertest/Mocha 测试,因为出现错误 Error: Trying to open unclosed connection. - 我发现了这个 post这建议循环并检查连接
我有一个使用 multer 并获取文件数组的 post 端点: router.post('/api/projects/:id/sessions', upload.array('files', 4),
我有一个经过 Mocha 测试的应用程序,并且能够使用我现在拥有的内容成功运行测试,但我在测试文件中显式设置了到 /api/v1 的 GET 路由。这是测试文件... API.js: var requ
我在 supertest、mocha 和 Node 方面遇到了一些问题,解析状态代码为 400。 这是我的 index.js 代码: var express = require('express');
我希望能够获取一些响应属性,并有时使用 SuperTest 将它们放入变量中。我怎样才能做到这一点?除了对响应的断言之外,我没有看到文档执行任何操作。 例如我想做这样的事情: var statusC
下面的数组(query.conditions)以某种方式转换为对象,知道为什么以及如何防止它吗? 请求: supertest(options.url) .g
我有一个看起来像这样的测试: it('should fail to get deleted customer', function(done) { request(app) .
我正在使用 supertest 测试我的 NodeJS 应用程序.我的应用程序正在请求证书,我的用户获得了针对该应用程序的授权证书的 CN。 在测试我的第一条路线时,我收到一个错误,提示我的自签名证书
我是一名优秀的程序员,十分优秀!