快递:我不知道如何使用sinon

时间:2018-07-16 21:28:29

标签: javascript unit-testing sinon sinon-chai

我有一个控制器,其方法为:

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?

1 个答案:

答案 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;
  });
});

希望有帮助。