gpt4 book ai didi

javascript - Jasmine :spyOn(obj, 'method').andCallFake 或 and.callFake?

转载 作者:IT王子 更新时间:2023-10-29 03:07:47 24 4
gpt4 key购买 nike

我想在我的 Jasmine 测试中模拟测试数据。这里有两个版本:

// version 1:
spyOn(mBankAccountResource, 'getBankAccountData').and.callFake(fakedFunction);

// version 2:
spyOn(mBankAccountResource, 'getBankAccountData').andCallFake(fakedFunction);

当我使用浏览器(Chrome、Firefox)执行测试时,第一个版本可以正常工作。但是,当我用 phantomjs 运行相同的测试时,我必须使用第二个版本。否则,它会提示函数未定义。

错误信息如下:

// phantomjs (with version 1)
TypeError: 'undefined' is not an object (evaluating 'spyOn(mBankAccountResource, 'getBankAccountData').and.callFake')
at /home/phil/workspaces/world/basket.angular.ui/basket.angular.ui/test/bankaccount/BankAccountCtrlTest.js:65
at invoke (/home/phil/workspaces/world/basket.angular.ui/bower_components/angular/angular.js:3707)
at workFn (/home/phil/workspaces/world/basket.angular.ui/bower_components/angular-mocks/angular-mocks.js:2149)
undefined

// Chrome (with version 2)
TypeError: Object function () {
callTracker.track({
object: this,
args: Array.prototype.slice.apply(arguments)
});
return spyStrategy.exec.apply(this, arguments);
} has no method 'andCallFake'
at Object.<anonymous> (/home/phil/workspaces/world/basket.angular.ui/basket.angular.ui/test/bankaccount/BankAccountCtrlTest.js:65:59)
at Object.invoke (/home/phil/workspaces/world/basket.angular.ui/bower_components/angular/angular.js:3707:17)
at Object.workFn (/home/phil/workspaces/world/basket.angular.ui/bower_components/angular-mocks/angular-mocks.js:2149:20)

我搜索了 Jasmine API,但找不到哪个版本是正确的。我发现的所有示例似乎都使用第二个版本。

Jasmine 的 API 最近有变化吗?我怎样才能编写我的测试,让它始终有效?

最佳答案

是的, spy API 从 Jasmine 1.3.1 更改为 Jasmine 2.0。没有“正确”的版本。如果你能找到 Jasmine 2.0 的工具支持,我会建议升级。

Jasmine 1.3.1 语法(documentation [archived link])

spyOn(mBankAccountResource, 'getBankAccountData').andCallFake(fakedFunction);
expect(mBankAccountResource.getBankAccountData.mostRecentCall.args).toEqual(["foo"]);

Jasmine 2.0 语法(documentation [archived link])

// Methods moved to 'and' property
spyOn(mBankAccountResource, 'getBankAccountData').and.callFake(fakedFunction);

// Call data moved to 'calls' property
expect(mBankAccountResource.getBankAccountData.calls.mostRecent().args).toEqual(["foo"]);

我提到了工具支持,因为这似乎就是您遇到的问题。 Jasmine 2.0 才推出几个月(在撰写本文时)。相比之下,Karma 中对 Jasmine 2.0 的支持已经推出几周了(我不确定其他工具)。

要解决您的问题,请调查您正在使用哪些工具来运行测试,看看它们是否支持 Jasmine 2.0。如果他们都这样做,那就去升级吧。否则,将您的浏览器测试降级到 Jasmine 1.3.1 并等待工具支持更好。只要确保您在所有方面都保持一致即可。

关于javascript - Jasmine :spyOn(obj, 'method').andCallFake 或 and.callFake?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22041745/

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