React.js - 用酶模拟点击

IT技术 javascript reactjs enzyme
2021-04-30 14:49:35

我有这个 React.js 应用程序,它是一个简单的 Cart 应用程序。https://codesandbox.io/s/znvk4p70xl

问题是我正在尝试使用 Jest 和 Enzyme 对应用程序的状态进行单元测试,但它似乎不起作用。这是我的Todo.test.js单元测试:

import React from 'react';
import { shallow, mount, render } from 'enzyme';
import Todo from '../components/Todo';

import { configure } from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';

configure({ adapter: new Adapter() });

test('Test it', async () => {
  // Render a checkbox with label in the document
  const cart = [
    { name: 'Green', cost: 4 },
    { name: 'Red', cost: 8 },
    { name: 'Blue', cost: 14 }
  ];

  const wrapper = mount(<Todo cart={cart} />);
  const firstInput = wrapper.find('.name');
  firstInput.simulate('change', { target: { value: 'Pink' } });

  const firstCost = wrapper.find('.cost');
  firstCost.simulate('change', { target: { value: 200 } });

  const submitButton = wrapper.find('.addtocart');
  submitButton.simulate('click');

  wrapper.update();

  expect(wrapper.state('price')).toBe(26);

  console.log(wrapper.state());
  console.log(wrapper.props().cart);

});

当我运行测试时,当Pink应该添加项目时,购物车仍然说同样的话

当我模拟按钮单击addToCart方法时,这怎么可能

 PASS  src/__tests__/todo.test.js
  ● Console
    console.log src/__tests__/todo.test.js:32      { price: 26 }    
console.log src/__tests__/todo.test.js:33      [ { name: 'Green', cost: 4 },        { name: 'Red', cost: 8 },        { name: 'Blue', cost: 14 } ]
3个回答

Enzymesimulate正在寻找onChange您的 Todo 组件上事件,但它没有找到。你没有onChange指定为props,所以它没有触发是有道理的。onChange如果这是您要测试的方式,请将props连接到您的组件。从文档:

尽管名称暗示这模拟了一个实际事件,但 .simulate() 实际上将根据您提供的事件定位组件的 prop。例如, .simulate('click') 实际上会获取 onClick props并调用它。

您正在尝试模拟对 class 元素的单击addtocart但是,您没有带有 class 的元素addtocart您的添加按钮的元素 ID 为submit

改变这个:

const submitButton = wrapper.find('.addtocart');

对此:

const submitButton = wrapper.find('#submit');

查看您的Todo代码后:

<input id="itemname" name="name" ref={this.nameRef} className="form-control" type="text" placeholder="Add item to List" />

<input name="cost" id="itemcost" ref={this.costRef} className="form-control" size="5" type="text" placeholder="Cost" />

我不认为wrapper.find('.cost')会起作用。我建议你这样做wrapper.find('#cost')