使用Enzyme和Sinon进行内部调用单元测试

时间:2019-04-10 10:50:50

标签: javascript unit-testing testing enzyme sinon

我正在尝试使用酶和Sinon中的内部调用编写该函数的测试,但是遇到一些有关内部调用的问题。

这是我的代码:

Chat.js

sendMssage = text => {
    const { user } = this.props;
    let message = this.messageModel.normalize(text);

    this.socketClient.onSendMessage(message, user);
    this.addMessage(message);
  };

test.js

  it('should call sendMessage function', () => {
    const wrapper = shallow(<Chat />);
    const instance = wrapper.instance();
    sinon.spy(instance.socketClient(
    message,
    user,
  ));
    socketClicent.onSendMessage(message, user);
    Instance.sendMessage(message);
  });

它抛出一个错误:

  

instance.socketClient不是函数

有人可以帮助我了解我在做什么错吗?

1 个答案:

答案 0 :(得分:1)

我看到您正在执行以下操作:

sinon.spy(instance.socketClient(
  message,
  user,
));

我猜想socketClient是一个对象实例,而不是一个函数,但是我不确定是否没有看到这部分的代码。

如果认为您打算监视onSendMessage的方法socketClientsinon.spy希望您传递一个函数或一个对象+函数(如果您试图监视实例方法)。请尝试以下操作:

sinon.spy(instance.socketClient, 'onSendMessage');

完整的解决方案:

it('should call sendMessage function', () => {
  const wrapper = shallow(<Chat user={user} />);
  const instance = wrapper.instance();
  const socketClient = new socketEvent();
  const spy = sinon.spy(socketClient, 'onSendMessage');
  instance.socketClient = socketClient;
  instance.sendMessage(message);
  sinon.assert.calledWith(spy, message, user);
});