我想在我的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最近有变化吗?我怎样才能编写测试,所以它始终有效?
答案 0 :(得分:64)
是的,间谍API从Jasmine 1.3.1更改为Jasmine 2.0。没有“正确”的版本。如果你能找到Jasmine 2.0的工具支持,我建议升级。
Jasmine 1.3.1语法(documentation)
spyOn(mBankAccountResource, 'getBankAccountData').andCallFake(fakedFunction);
expect(mBankAccountResource.getBankAccountData.mostRecentCall.args).toEqual(["foo"]);
Jasmine 2.0语法(documentation)
// 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并等待工具支持更好。只要确保你的全面一致。