如何使用 Jest/Enzyme 测试去抖功能?
Posted
技术标签:
【中文标题】如何使用 Jest/Enzyme 测试去抖功能?【英文标题】:How can I test a debounce function with Jest/Enzyme? 【发布时间】:2019-06-16 13:15:30 【问题描述】:我有这个组件,测试覆盖率表明我需要测试第 24 行和第 25 行:
class TableToolbarComp extends Component
state =
shipmentId: '',
;
debouncedSetFilters = debounce(() =>
const applyFilters = this.props; // LINE 24
applyFilters(this.state); // LINE 25
, 750);
updateShipmentId = ev =>
this.setState(
shipmentId: ev.target.value,
,
this.debouncedSetFilters,
);
;
render() ...
还有测试:
beforeEach(() =>
applyFilters: k => k,
);
...
it('should trigger button click', () =>
const wrapper = shallow(<TableToolbarComp ...props />);
wrapper.instance().debouncedSetFilters(750);
wrapper.instance().updateShipmentId( target: shipmentId: '124' );
wrapper.instance().props.applyFilters( shipmentId: '124' );
);
我没有收到任何错误,它只是说那 2 行需要覆盖。
我已经尝试在测试中调用 debouncedSetFilters
和 applyFilters
,但它仍然将这两行作为未覆盖返回。
我错过了什么?
【问题讨论】:
【参考方案1】:没有间谍就无法有效地测试函数调用。应该是:
beforeEach(() =>
applyFilters = jest.fn();
);
为了测试异步时间敏感功能,应该应用计时器模拟:
jest.useFakeTimers();
const wrapper = shallow(<TableToolbarComp applyFilters=applyFilters />);
wrapper.instance().debouncedSetFilters();
wrapper.instance().debouncedSetFilters();
expect(applyFilters).not.toHaveBeenCalled();
jest.advanceTimersByTime(750);
expect(applyFilters).toHaveBeenCalledTimes(1);
然后debouncedSetFilters
可以在updateShipmentId
测试中存根。
【讨论】:
为什么两次调用wrapper.instance().debouncedSetFilters();
或者是拼写错误?
这就是去抖动功能的测试方法。两次调用应导致一次 applyFilters 调用。以上是关于如何使用 Jest/Enzyme 测试去抖功能?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Jest/Enzyme 在功能性 React 组件中测试 lambda 函数?
Jest/Enzyme 单元测试:如何将存储传递给使用 redux 4 和 react-redux 6 连接功能的浅层组件
如何使用 JEST、Enzyme 在 React 中测试自定义钩子?
使用 Jest / Enzyme 在 React 中的功能组件内部测试方法