我很难测试用redux-form修饰的反应组件。以下是我尝试运行的一些集成测试。它们都失败了,所以我很清楚我没有正确地设置测试。在这里和GitHub上似乎有很多关于使用redux-form进行单元和集成测试有多么具有挑战性的讨论。任何帮助将不胜感激。
confirmation.js
import React, { Component } from 'react';
import { reduxForm, Field } from 'redux-form';
import { connect } from 'react-redux';
import { sendActivationEmail, resetAuthError } from '../../actions';
export const renderField = ({ input, label, type, meta: { touched, error } }) => (
<fieldset className="form-group">
<div className={touched && error ? 'has-danger' : ''}>
<p>Resend Confirmation Instructions</p>
<input {...input} placeholder={label} type={type} className="form-control"/>
{touched && error && <span className="error">{error}</span>}
</div>
</fieldset>
)
export class Confirmation extends Component {
componentWillUnmount() {
this.props.resetAuthError();
}
handleFormSubmit({ email }) {
this.props.sendActivationEmail({ email });
}
renderAlert() {
if (this.props.errorMessage) {
return (
<div className="alert alert-danger">
<strong>Oops!</strong> {this.props.errorMessage}
</div>
)
}
}
render() {
const { handleSubmit } = this.props;
return (
<div>
{this.renderAlert()}
<form onSubmit={handleSubmit(this.handleFormSubmit.bind(this))}>
<Field
label="Email"
name="email"
component={renderField}
type="text"
/>
<button type="submit" className="btn btn-primary">Resend</button>
</form>
</div>
);
}
}
function validate(formProps) {
const errors = {};
if (!formProps.email) {
errors.email = 'Please enter an email';
} else if (!/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i.test(formProps.email)) {
errors.email = 'Please enter a valid email address';
}
return errors;
}
function mapStateToProps(state) {
return { errorMessage: state.auth.error }
}
Confirmation = reduxForm({
form: 'confirmation',
validate
})(Confirmation);
Confirmation = connect(mapStateToProps, { sendActivationEmail, resetAuthError
})(Confirmation);
export default Confirmation;
confirmation_test.js
import React from 'react';
import { expect } from 'chai';
import { shallow, mount, unmount } from 'enzyme';
import sinon from 'sinon';
import { Provider } from 'react-redux';
import { createStore, applyMiddleware } from 'redux';
import reduxThunk from 'redux-thunk';
import reducers from '../../../src/reducers';
import ConfirmationContainer, { ConfirmationComponent, renderField } from '../../../src/components/auth/confirmation';
const createStoreWithMiddleware = applyMiddleware(reduxThunk)(createStore);
const store = createStoreWithMiddleware(reducers);
describe('Container', () => {
let sendActivationEmail, resetAuthError, props, errorMessage, subject;
beforeEach(() => {
sendActivationEmail = sinon.spy();
resetAuthError = sinon.spy();
props = {
sendActivationEmail,
resetAuthError,
errorMessage: 'required'
};
subject = mount(
<Provider store={store}>
<ConfirmationContainer {...props} />
</Provider>
)
});
it('renders error message', (done) => {
expect(subject.find('.alert')).to.have.length(1);
done();
});
it('calls sendActivationEmail on submit', (done)=> {
const form = subject.find('form');
const input = subject.find('input').first();
input.simulate('change', { target: { value: 'test@gmail.com' } });
form.simulate('submit');
expect(sendActivationEmail.callCount).to.equal(1);
done();
});
it('calls resetAuthError on unmount', (done) => {
subject.unmount();
expect(resetAuthError.calledOnce).to.equal(true);
});
});
答案 0 :(得分:0)
将mergeProps
作为connect()
函数的第三个参数添加,使我的前两个测试通过。对于第三次测试,我在测试结束时添加了done()
,我最初忽略了添加。这是我添加到容器组件中以使测试通过的代码:
const mergeProps = (stateProps, dispatchProps, ownProps) =>
Object.assign({}, stateProps, dispatchProps, ownProps)
Confirmation = connect(mapStateToProps, { sendActivationEmail, resetAuthError
}, mergeProps)(Confirmation);
感谢this thread上的@tylercollier帮助我找到了这个解决方案。