我正在尝试为具有$rootScope.$on(‘accountsSet’,function(event)….的控制器编写一个测试….因此,在测试中,我使用的是.broadcast.andCallThrough(),这里还有许多其他问题在SO建议虽然它也对我有用.
所以我的控制器非常简单:
angular.module(‘controller.sidemenu’,[])
.controller('SidemenuCtrl', function($rootScope, $scope, AccountsService) {
$rootScope.$on('accountsSet', function (event) {
$scope.accounts = AccountsService.getAccounts();
$scope.pro = AccountsService.getPro();
});
});
任何测试也很简单:
describe("Testing the SidemenuCtrl.", function () {
var scope, createController, accountsService;
beforeEach(function(){
angular.mock.module('trevor');
angular.mock.module('templates');
inject(function ($injector, AccountsService) {
scope = $injector.get('$rootScope');
controller = $injector.get('$controller');
accountsService = AccountsService;
createController = function() {
return controller('SidemenuCtrl', {
'$scope' : $injector.get('$rootScope'),
'AccountsService' : accountsService,
});
};
});
});
it("Should load the SidemenuCtrl.", function () {
accountsService.setPro(true);
spyOn(scope, '$broadcast').andCallThrough();
var controller = createController();
scope.$broadcast("accountsSet", true);
expect(scope.pro).toBeTruthy();
});
});
我得到的错误是spyOn(scope,’$broadcast’).andCallThrough();.请注意,此测试的作用域是rootScope,所以应该不会有问题.
因此,涉及该行的错误:
TypeError:’undefined’不是一个函数(评估’spyOn(scope,’$broadcast’).andCallThrough()’)
在… /测试/控制器/sidemenu.js:30
解决方法:
我将自己的评论变成答案,因为事实证明这是解决方案:
在jasmine 2.0中,间谍的语法已更改(以及许多其他内容,请参阅漂亮的文档here)
新的语法是
spyOn(foo, 'getBar').and.callThrough();
与以下茉莉1.3语法进行比较:
spyOn(foo, 'getBar').andCallThrough();