【发布时间】:2023-04-02 23:10:01
【问题描述】:
我正在尝试使用 karma/jasmine 为我的 react 应用程序执行单元测试。测试是检查状态是否发生了变化。我已经阅读了几篇参考资料,但似乎无法解决问题。此外, spyOn() 和 sinon.spy() 给出了错误的输出。
expect(received).toBe(expected)
Expected value to be (using ===):
true
Received:
false
测试-sn-p
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
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}
/>
....
验证输入.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 是否已更改的任何帮助以及有关如何通过测试的建议?
谢谢
【问题讨论】:
标签: javascript reactjs unit-testing