別のファイルで定義されたアクションを呼び出すhandlelistOfTemplatesというモジュールに関数があります。 handlelistOfTemplatesがいつ呼び出されるかをテストしたいのですが、actionsファイルの関数が正しいパラメーターで呼び出されます。
私のコンテナコンポーネント:
_import React from 'react';
import { connect } from 'react-redux';
import {bindActionCreators} from 'redux';
import * as getData from '../../services/DataService';
class Container extends React.Component {
constructor(props){
super(props)
this.props.actions.getTemplates(1);
this.state = {
value: 1
}
}
handlelistOfTemplates = (template, index, value) => {
this.props.selectedTemplate(template);
this.setState({ value });
this.props.actions.getTemplates(template);
};
componentDidMount() {
}
render() {
return(
<ListOfTemplates listOfTemplates={this.props.listOfTemplates} value={this.state.value} onChange={this.handlelistOfTemplates}/>
);
}
}
function mapStateToProps({state}) {
return {
listOfTemplates: state.listOfTemplates
}
}
function mapDispatchToProps(dispatch) {
return {
actions: bindActionCreators(getData, dispatch)
};
}
module.exports = connect(mapStateToProps, mapDispatchToProps)(Container);
_
そして私のテスト:
_import React from 'react';
import sinon from 'sinon';
import expect from 'expect';
import { shallow } from 'enzyme';
import PropTypes from 'prop-types';
import getMuiTheme from 'material-ui/styles/getMuiTheme';
import { createMockStore, createMockDispatch } from 'redux-test-utils';
import Container from './Container';
const shallowWithStore = (component, store) => {
const context = {
store,
muiTheme: getMuiTheme(),
};
const childContextTypes = {
muiTheme: React.PropTypes.object.isRequired,
store: PropTypes.object.isRequired
}
return shallow(component, { context, childContextTypes });
};
let store;
const loadComponent = (testState) => {
const props = {
actions: {
getTemplates: () => {return Promise.resolve()}
}
}
store = createMockStore(testState)
return shallowWithStore(<Container {...props}/>, store);
}
const getFakeState = () => {
return {
listOfTemplates: [],
};
}
describe('Container', () => {
let testState, component;
describe("when Appeal template is selected from select template dropdown", () => {
beforeAll(() => {
testState = getFakeState();
component = loadComponent(testState);
});
fit('should update the content in editor', (done) => {
component.dive().find('ListOfTemplates').props().onChange('Appeal', 1, 2);
component.update();
done();
expect(component.dive().state().value).toEqual(2) // error value still is at 1
expect(component.instance().props.actions.getTemplates).toHaveBeenCalled();
});
});
});
_
上記のテストを実行すると、次のエラーが発生します。
_expect(jest.fn())[.not].toHaveBeenCalled()
jest.fn() value must be a mock function or spy.
Received:
function: [Function getTemplates]
_
これを機能させるために実行する必要があるものは他にありますか?モックが正しくない可能性があります。
私もこれを試してみました:jest.spyon(component.instance()。props.actions、 'getTemplates');予想される前に、エラーは同じままです。
また、コンポーネントのローカル状態をチェックすると、変更されたかどうかがわかります。更新された状態を取得していません。 component.dive().find('ListOfTemplates').props().onChange('Appeal', 1, 2);
を呼び出したとき
component.dive().state().value
は2になるはずですが、代わりに1になります。
私が間違っているところを手伝ってくれませんか?
Mock関数getTemplate
をコンポーネントに渡す必要があります。そうしないと、jest
は、それが呼び出されたかどうかを確認できません。
あなたはこれを次のように行うことができます:(通知jest.fn()
)
const props = {
actions: {
getTemplates: jest.fn(() => Promise.resolve())
}
}