我正在嘗試使用摩卡和酶來測試React組件,該組件使用動態導入來加載模塊。使用動態導入測試React組件(酶/摩卡)
當我嘗試測試依賴動態導入的邏輯時,我得到不正確的結果。問題是異步函數在測試完成之前沒有完成,所以我永遠無法得到準確的結果。
我該如何處理這種情況?
組件
import classNames from 'classnames';
import PropTypes from 'prop-types';
import React from 'react';
// styles
import styles from './PasswordStrengthIndicator.scss';
class PasswordStrengthIndicator extends React.Component {
static defaultProps = {
password: undefined,
onPasswordChange: undefined,
}
static propTypes = {
password: PropTypes.string,
onPasswordChange: PropTypes.func,
}
constructor() {
super();
this.state = {};
}
componentWillMount() {
this.handlePasswordChange();
}
componentWillReceiveProps(nextProps) {
const password = this.props.password;
const nextPassword = nextProps.password;
if (password !== nextPassword) {
this.handlePasswordChange();
}
}
render() {
const strength = this.state.strength || {};
const score = strength.score;
return (
<div className={ styles.passwordStrength }>
<div className={ classNames(styles.score, styles[`score-${score}`]) } />
<div className={ styles.separator25 } />
<div className={ styles.separator50 } />
<div className={ styles.separator75 } />
</div>
);
}
// private
async determineStrength() {
const { password } = this.props;
const zxcvbn = await import('zxcvbn');
let strength = {};
if (password) strength = zxcvbn(password);
return strength;
}
async handlePasswordChange() {
const { onPasswordChange } = this.props;
const strength = await this.determineStrength();
this.setState({ strength });
if (onPasswordChange) onPasswordChange(strength);
}
}
export default PasswordStrengthIndicator;
測試
describe('when `password` is bad',() => {
beforeEach(() => {
props.password = 'badpassword';
});
it.only('should display a score of 1',() => {
const score = indicator().find(`.${styles.score}`);
expect(score.props().className).to.include(styles.score1); // should pass
});
});
我不確定你的意思是「stubbing a webpack method」。你是指動態導入?如果是這樣,這是ES6,而不是特定於webpack(儘管webpack在分塊時處理它的方式不同)。此外,導入是一個特殊的關鍵字,而不是一個功能,所以我不認爲你可以將它存根。 – anthonator
對於動態導入的ES6建議,僅在我知道的webpack/babel/systemJS等工具中實現,如果您使用的是在裸露的ES6中使用的東西,則表示道歉。 這正是我的意思,如果它只是從一個工具,而不是一個實際的全局函數或一個真正的polyfill,你將無法嘲笑它 – alechill