React & Jest,如何测试改变状态和检查另一个组件

IT技术 javascript reactjs testing jestjs
2021-04-09 13:12:19

React - 测试工具文档

我有一个登录组件,如果为真,它将显示一个通知组件this.state.error

我现在正在编写一个 Jest 测试来测试这个。

import React from 'react'
import ReactTestUtils from 'react-dom/test-utils';
import { shallow } from 'enzyme'
import toJson from 'enzyme-to-json'
import Login from './Login'
import Notification from '../common/Notification'

describe('<Login /> component', () => {
    it('should render', () => {
        const loginComponent = shallow(<Login />);
        const tree = toJson(loginComponent);
        expect(tree).toMatchSnapshot();
    });

    it('should contains the words "Forgot Password"', () => {
        const loginComponent = shallow(<Login />);
        expect(loginComponent.contains('Forgot Password')).toBe(true);
    });

    // This test fails
    it('should render the Notification component if state.error is true', () => {
        const loginComponent = ReactTestUtils.renderIntoDocument(
            <Login />
        );

        const notificationComponent = ReactTestUtils.renderIntoDocument(
            <Notification />
        );

        loginComponent.setState({
            error: true
        }, expect(ReactTestUtils.isDOMComponent(notificationComponent)).toBe(true));
    });
});

但是目前测试失败,我不知道为什么

在此处输入图片说明

在我的代码的最后一部分我也试过这个无济于事

loginComponent.setState({
        error: true
    }, expect(ReactTestUtils. isElement(notificationComponent)).toBe(true));

https://facebook.github.io/react/docs/test-utils.html

我的 Login 组件的 render()

render() {
    const usernameError = this.state.username.error;
    const error = this.state.error;
    const errorMsg = this.state.errorMsg;

    return (
        <div className="app-bg">
            { error &&
                <Notification message={ errorMsg } closeMsg={ this.closeMessage }/>
            }
            <section id="auth-section">
                <header>
                    <img src="static/imgs/logo.png"/>
                    <h1>tagline</h1>
                </header>

在将 state.error 设置为 true 后,也尝试了这种方法来测试 Notification 组件

it('should render the Notification component if state.error is true', () => {
    const loginComponent = ReactTestUtils.renderIntoDocument(
        <Login />
    );

    const notificationComponent = ReactTestUtils.renderIntoDocument(
        <Notification />
    );

    // loginComponent.setState({
    //  error: true
    // }, expect(ReactTestUtils.isDOMComponent(notificationComponent)).toBe(true));

    const checkForNotification = () => {
        const login = shallow(<Login />);
        expect(login.find(Notification).length).toBe(1);
    };

    loginComponent.setState({
        error: true
    }, checkForNotification());
});

但那个测试也失败了。

也试过 const login = mount(<Login />);


还有其他人在使用 Jest 和 React Test Utilities 时遇到问题吗?

2个回答

弄清楚了!不需要React 测试工具

it('should render the Notification component if state.error is true', () => {
    const loginComponent = shallow(<Login />);
    loginComponent.setState({ error: true });
    expect(loginComponent.find(Notification).length).toBe(1);
});

这将在Login组件中将错误状态设置为 true ,然后检查Login组件是否包含Notification组件。

@jcollum 在我的示例中我没有使用 Redux,但这仍然适用于测试连接的组件。
2021-05-26 13:12:19
你的组件使用 Redux 吗?我打电话时遇到错误setState,我怀疑 Redux 是问题所在
2021-05-28 13:12:19
如何更新 useState 状态?我真的需要那个。
2021-06-11 13:12:19

这可能应该重构一下。Notification组件可能应该始终在更全局的组件中呈现(如 Page Wrapper 或某种其他容器),并且它可能应该呈现,null除非全局减速器中存在错误。一个Login组件可能不应该维护关于通知的责任和业务逻辑。