我有一个控制器,其方法为:
registration(req, res) {
if (!req.user) return res.status(401).send('Registration failed');
const { user } = req;
return res.status(201).json({ user });
},
我想测试使用伪造数据发送json的注册方法。
const { expect } = require('chai');
const sinon = require('sinon');
const authController = require(...);
describe('authController', () => {
const USER = {
email: 'test@test.com',
password: 'Test12345',
confirm: 'Test12345',
username: 'Test',
};
it('it should send user data with email: test@test.com', () => {
const req = { user: USER };
const res = {
status: sinon.stub().returnsThis(),
json: sinon.spy(),
};
console.log('RES: ', res); // I can't see the json data
authController.registration(req, res);
expect(res.json).to.equal(USER);
});
我检查了我的USER的数据是否进入控制器(req.user)。 我试图用间谍看一下包含res的内容,但是找不到我的USER数据 我不了解如何在自己的情况下使用sinon?
答案 0 :(得分:1)
您几乎在测试中做到了。对于这种测试,我们可以使用Sinon中的calledWith
来检查正确调用的函数和参数。
describe('authController', () => {
const USER = {
email: 'test@test.com',
password: 'Test12345',
confirm: 'Test12345',
username: 'Test',
};
it('it should send user data with email: test@test.com', () => {
const req = { user: USER };
const res = {
status: sinon.stub().returnsThis(),
json: sinon.spy(),
};
authController.registration(req, res);
// this is how we check that the res is being called with correct arguments
expect(res.status.calledWith(201)).to.be.ok;
expect(res.json.calledWith({ user: USER })).to.be.ok;
});
});
希望有帮助。