繁体   English   中英

在React Js中使用Jest测试功能

[英]Test function with Jest in React Js

我是React和测试的新手,所以请原谅这个问题的天真。 我有一个阵营形式部件onChance输入端上的运行的函数handleChange 试图用Jest测试它,但无法使其正常工作。

这是登录组件:

class Login extends React.Component {

  constructor() {
    super();
    this.state = {username: '', password: ''}
    this.disableSubmit = this.disableSubmit.bind(this);
    this.handleChange = this.handleChange.bind(this);
  }

  handleChange(e) {
    this.setState({
      [e.target.name]: e.target.value
    });
  }

  render() {

    return(
      <div className="login">
        <form>
          <h3 className="login__title">LOGIN</h3>
          <div className="input-group">
            <input onChange={this.handleChange} value={this.state.username} className="form-control login__input username" type="text" placeholder="user name" name={'username'} autoFocus/>
          </div>
          <div className="input-group">
            <input onChange={this.handleChange} value={this.state.password} className="form-control login__input password" type="password" placeholder="password" name={'password'}/>
          </div>
          <div>
            <button className="btn btn-primary btn-block login__button" type="submit">Login</button>
          </div>
        </form>
      </div>

    )
  }
}

export default Login;

这是我的测试:

import React from 'react'
import { shallow, mount } from 'enzyme'
import { shallowToJson } from 'enzyme-to-json'


import {Login} from '../../../src/base/components/index'


describe('Given the Login component is rendered', () => {

  describe('Snapshots', () => {
    let component

    beforeEach(() => {
      component = shallow(<Login />)
    })

    it('should be as expected', () => {
      expect(shallowToJson(component)).toMatchSnapshot()
    })
  })

})


test('Submitting the form should call handleSubmit', () => {

  const startState = {username: ''};
  const handleChange = jest.fn();
  const login = mount(<Login />);
  const userInput = login.find('.username');

  userInput.simulate('change');

  expect(handleChange).toBeCalled();

})

快照测试通过正常,但是在这最后一次尝试中,我的功能测试失败并显示以下信息:

TypeError: Cannot read property 'target' of undefined

猜猜我需要向函数传递一些东西吗? 有点困惑!

在此先感谢您的帮助。

更新:

改变了如下测试,但测试失败: expect(jest.fn()).toBeCalled() Expected mock function to have been called.

测试已更新:

test('Input should call handleChange on change event', () => {

  const login = mount(<Login />);
  const handleChange = jest.spyOn(login.instance(), 'handleChange');
  const userInput = login.find('.username');
  const event = {target: {name: "username", value: "usertest"}};

  userInput.simulate('change', event);

  expect(handleChange).toBeCalled();

})

是的,您需要将事件对象传递给您的simulate功能。

  const event = {target: {name: "special", value: "party"}};

  element.simulate('change', event);

编辑:哦,您还需要执行以下操作:

jest.spyOn(login.instance(), 'handleChange')

但这与您的错误无关

目前尚未嘲笑handleChange 几种方法:

将更改事件处理程序作为prop传递给Login组件。

<div className="input-group">
  <input 
    onChange={this.props.handleChange} 
    value={this.state.username}
    className="form-control login__input username" 
    type="text"
    placeholder="user name"
    name={'username'}
    autoFocus
    />
</div>

login.spec.js

...
const handleChange = jest.fn();
const login = mount(<Login handleChange={handleChange}/>);
...

用模拟功能替换handleChange。

...
const handleChange = jest.fn();
const login = mount(<Login />);
login['handleChange'] = handleChange // replace instance
...
expect(handleChange).toBeCalled();

使用jest spyOn创建一个包装原始函数的模拟函数。

...
const handleChange = jest.spyOn(object, 'handleChange') // will call the original method
expect(handleChange).toBeCalled();

用模拟函数替换Login组件上的handleChange ... const handleChange = jest.spyOn(object,'handleChange')。mock //将调用原始方法Expect(handleChange).toBeCalled();

在这里找到解决方案: 酶模拟onChange事件

test('Input should call handleChange on change event', () => {

  const event = {target: {name: 'username', value: 'usertest'}};
  const login = mount(<Login />);
  const handleChange = jest.spyOn(login.instance(), 'handleChange');
  login.update(); // <--- Needs this to force re-render
  const userInput = login.find('.username');

  userInput.simulate('change', event);

  expect(handleChange).toBeCalled();

})

它需要这个login.update(); 为了工作!

感谢大家的帮助!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM