gpt4 book ai didi

javascript - 如何在异步函数中测试 jest.fn().mock.calls

转载 作者:行者123 更新时间:2023-11-30 11:23:19 28 4
gpt4 key购买 nike

我正在使用 Enzyme 和 Jest 测试 React Native 组件。我已经能够测试是否调用了模拟函数(在本例中为 Alert.alert),如下所示:

Alert.alert = jest.fn();
someButton.simulate('Press');

expect(Alert.alert.mock.calls.length).toBe(1);

这种方法效果很好。

无论如何,我有一个登录按钮,它启动一个获取。我的 fetch 函数是这样的:

fetch(ipAddress, {
...
})
.then(response => response.json())
.then((responseJson) => {
if (responseJson.login === 'success') {
Alert.alert('Login', 'Logged in succesfully!');
console.log('i'm here');

我用 promises mock 了一个 fetch。我将控制台打印添加到我的 fetch 函数中,并注意到它们打印在测试用例中,正如我预期的那样。这意味着在测试运行时打印“我在这里”

无论如何,当我在测试用例中模拟登录按钮按下时,Alert.alert.mock.calls.length 为零。我在这里做错了什么?

最佳答案

我没有用 React Native 检查这个,但我确实在 React 中为服务调用编写了一些测试(我确实使用了你没有使用的 Flux - 但没关系,在不同的地方它是相同的原理)。本质上,当您执行 expect 时,promise 链尚未完成。这意味着,Alertconsole.log 都在 expect 之后执行,因为默认的 promise 实现将所有后续步骤放在事件队列的末尾。

克服这个问题的一种方法是使用 https://www.npmjs.com/package/mock-promises - 您规范中的 beforeEach 方法需要调用 install ,如下所示:

beforeEach(() => {
Q=require('q');
mp=require('mock-promises');
mp.install(Q.makePromise);
mp.reset();
// more init code
});

别忘了

afterEach(() => {
mp.uninstall();
});

如果您不使用 Q(我当时使用),上面的链接为您提供了如何安装其他 promise 的说明。

现在您有 promise 不会将事情放到事件队列的末尾,您可以通过调用 mp.tick() 来调用下一个 then。在你的情况下,这将是

it("...", () => {
Alert.alert = jest.fn();
someButton.simulate('Press');
mp.tick();
mp.tick(); // then and then
expect(Alert.alert.mock.calls.length).toBe(1);
});

另一种方式,开箱即用是用期望返回附加另一个then整个 promise 。您可以在此处找到详细信息:https://facebook.github.io/jest/docs/en/tutorial-async.html

基本上,这就是它的样子:

functionReturningPromise = () => {
// do something
return thePromise;
}

// now testing it
it("...", () => {
return /* !!! */ functionReturningPromise().then(() => {
expect(/*something*/).toBeSth();
});
});

但是,在您的情况下,这会很困难,因为您无法在测试代码中处理 promise 。但是,您可以将所有获取逻辑拆分成一个专用方法(至少返回用于测试的 promise )并为此编写测试。

关于javascript - 如何在异步函数中测试 jest.fn().mock.calls,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48975425/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com