我目前正在使用react-testing-library,似乎无法弄清楚如何测试组件的setState。
在下面的示例中,我试图根据API中的数据测试加载的项目数是否正确。稍后将对此进行扩展以测试诸如项目之间的交互之类的事情。
组件:
...
componentDidMount() {
this.getModules();
}
getModules () {
fetch('http://localhost:4000/api/query')
.then(res => res.json())
.then(res => this.setState({data : res.data}))
.catch(err => console.error(err))
}
...
render() {
return(
<div data-testid="list">
this.state.data.map((item) => {
return <Item key={item.id} data={item}/>
})
</div>
)
}
测试:
...
function renderWithRouter(
ui,
{route = '/', history = createMemoryHistory({initialEntries: [route]})} = {},) {
return {
...render(<Router history={history}>{ui}</Router>),
history,
}
}
...
test('<ListModule> check list items', () => {
const data = [ ... ]
//not sure what to do here, or after this
const { getByTestId } = renderWithRouter(<ListModule />)
...
//test the items loaded
expect(getByTestId('list').children.length).toBe(data.length)
//then will continue testing functionality
})
我了解这与开玩笑的模拟功能有关,但不了解如何使它们与设置状态或模拟API一起使用。
示例实现(有效!)
通过更多的实践和学习有关使组件可测试的知识,我得以使这项工作奏效。这是完整的示例供参考:https://gist.github.com/alfonsomunozpomer/de992a9710724eb248be3842029801c8
const data = [...]
fetchMock.restore().getOnce('http://localhost:4000/api/query', JSON.stringify(data));
const { getByText } = renderWithRouter(<ListModule />)
const listItem = await waitForElement(() => getByText('Sample Test Data Title'))
答案 0 :(得分:3)
您应该避免直接测试setState
,因为这是组件的实现细节。您正在正确的道路上测试是否可以渲染正确数量的项目。您可以通过将fetch
替换为Jest mock function或使用fetch-mock库来为您处理繁重的工作来模拟window.fetch
函数。
// Note that this method does not build the full response object like status codes, headers, etc.
window.fetch = jest.fn(() => {
return Promise.resolve({
json: () => Promise.resolve(fakeData),
});
});
OR
import fetchMock from "fetch-mock";
fetchMock.get(url, fakeData);