javascript - enzyme 模拟。 ('change',事件)不工作

标签 javascript reactjs unit-testing

我正在尝试使用 karma/jasmine 为我的 React 应用程序执行单元测试。测试的目的是检查状态是否发生变化。我已经查阅了一些引用资料,但似乎无法解决问题。此外,spyOn() 和 sinon.spy() 给出了错误的输出。

expect(received).toBe(expected)

Expected value to be (using ===):
  true
Received:
  false

test-snippet

        it('should call handleUserIdChange', () => {
            const value = '00000000';
            const mountedComponentHandle = mount(<LoginForm />);
            const onChangeUserID = sinon.spy(mountedComponentHandle.instance(), 'handleUserIdChange');
            mountedComponentHandle.update();
            (mountedComponentHandle.find('ValidatedInput').at(0)).simulate('change', value);
            expect(
                onChangeUserID.calledOnce
            ).toBe(true);
        });

Login.js for which tests are written

class LoginForm extends Component {
    constructor(props) {
        super(props);
        this.state = {
            userId : '',
            password : '',
            loginType : ['Customer', 'Payer', 'Super-User'],
            userType : 'Customer',
            isLoggedIn : false,
            loginResponse : '',
            FieldsRegister : [],
        }
        this.handleClearForm = this.handleClearForm.bind(this);
        this.handleSubmitForm = this.handleSubmitForm.bind(this);
        this.handleUserIdChange = this.handleUserIdChange.bind(this);
        this.handlePasswordChange = this.handlePasswordChange.bind(this);
        this.handleUserTypeChangeSelect = this.handleUserTypeChangeSelect.bind(this);
        this.handleRegisterFormFields = this.handleRegisterFormFields.bind(this);
    }

    handleUserIdChange(value) {
        this.setState({ userId : value });
    }

    handlePasswordChange(value) {
        this.setState({ password : value });
    }
    ....
    render() {
        return (
            <form className="container form-horizontal"  onSubmit={this.handleSubmitForm}>
              <div className=" pb-10">
                <h2 className="text-center">Login</h2>
              </div>
              <div className='column text-center'>
                <span>{this.state.loginResponse}</span>
              </div>
                <ValidatedInput
                    name={'userId'}
                    type={'text'}
                    title={'User ID'}
                    value={this.state.userId}
                    placeholder={'Enter User ID'}
                    onChange={this.handleUserIdChange}
                    onComponentMounted={this.handleRegisterFormFields}
                    validations={/^[0-9]{4,10}$/}
                    validationError={'This is not valid user Id'}
                    isRequired={true}
                />
....

ValidateInput.js

class ValidatedInput extends Component {
    constructor(props) {
        super(props);

        this.state = {
            validations: this.props.validations,
            validationError: this.props.validationError
        };

        this.handleChangeValue = this.handleChangeValue.bind(this);
        this.isValid = this.isValid.bind(this);
        this.validateInput = this.validateInput.bind(this);
    }

    handleChangeValue(e) {
        this.props.onChange(e.target.value);
        var isValidField = this.isValid(e.target);
    }
....
render () {
        return (
            <div className="form-group">
                <div className="col-5 text-center">
                    <label htmlFor={this.props.name}>{this.props.title}</label>
                </div>
                <div className="col-5 text-center">
                    <input
                        className="form-input text-center"
                        type={this.props.type}
                        ref={this.props.name}
                        name={this.props.name}
                        value={this.props.value}
                        required={this.props.isRequired}
                        placeholder={this.props.placeholder}
                        onChange={this.handleChangeValue}
                    />
                    <span className='Error'></span>
                </div>
            </div>
        );
    }

有关如何检查 state.userId 是否已更改的任何帮助以及有关如何通过测试的建议? 谢谢

最佳答案

我找到了错误及其原因。 Refer this for explanation .

更新的测试片段:

it('should call handleUserIdChange', () => {
    const value = '00000000';
    const mountedComponentHandle = mount(<LoginForm />);
    const onChangeUserId = sinon.spy(mountedComponentHandle.instance(), 'handleUserIdChange');
    mountedComponentHandle.update();
    mountedComponentHandle.find('input').at(0).simulate('change', value);
    expect(
        onChangeUserId.called
    ).toBe(true);
});

我们需要获取原生元素input来模拟输入字段的变化。

关于javascript - enzyme 模拟。 ('change',事件)不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45948120/

相关文章:

javascript - 如何在 ReactJS 中创建和应用基于 CSS 类的动态样式表?

javascript - 在 Canvas 上变换会导致奇怪的行为

javascript - 无法间接执行 JQuery 函数

javascript - React 链接与标签和箭头函数

javascript - ReactJS 返回部分中的条件渲染

javascript - react : Checkbox and file on controlled forms

javascript - AngularJS - 我的指令下的 html 没有显示

JavaScript 单元测试或端到端测试

unit-testing - 为什么我的单元测试需要一个模拟框架?

php - 由 PDOException : SQLSTATE[42000] - php unit test in Laravel 引起