茉莉花,Angular"rootScope.$broadcast"测试
Jasmine, Angular "rootScope.$broadcast" test
我正在尝试为具有 $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()')
在 .../tests/controllers/sidemenu.js:30
我正在将我的评论变成一个答案,因为它被证明是解决方案:
在 jasmine 2.0 中,spies 的语法发生了变化(还有许多其他内容,请参阅漂亮的文档 here)
新语法是
spyOn(foo, 'getBar').and.callThrough();
与 jasmine 1.3 语法比较:
spyOn(foo, 'getBar').andCallThrough();
我正在尝试为具有 $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()') 在 .../tests/controllers/sidemenu.js:30
我正在将我的评论变成一个答案,因为它被证明是解决方案:
在 jasmine 2.0 中,spies 的语法发生了变化(还有许多其他内容,请参阅漂亮的文档 here) 新语法是
spyOn(foo, 'getBar').and.callThrough();
与 jasmine 1.3 语法比较:
spyOn(foo, 'getBar').andCallThrough();