这是我的运行块,我根据位置路径在rootScope
上设置了几个属性:
angular.module('xyz').run(['$rootScope', '$location', '$route', function($rootScope, $location, $route){
$rootScope.brand = $location.path().split('/')[1];
$rootScope.appName = $rootScope.brand.split('.')[2];
});
这是单元测试失败的原因:
beforeEach(module('App'));
beforeEach( inject( function( $controller, _$location_, $rootScope) {
$location = _$location_;
$scope = $rootScope.$new();
AppCtrl = $controller( 'AppCtrl', { $location: $location, $scope: $scope });
}));
it('AppCtrl has been initialized', inject( function() {
expect( AppCtrl ).toBeTruthy();
}));
尝试了以下几点:
it('should set the default category to match the category_id found in location.hash', function() {
$browser.setUrl('http://server/#/categories/2');
$browser.poll();
scope.$eval();
$browser.xhr.flush();
expect(ctrl.selectedCategory).toBe('2');
});
没有帮助。
答案 0 :(得分:6)
以下是您的解决方案https://groups.google.com/d/msg/angular/F0jFWC4G9hI/FNz3oQu0RhYJ。
为了让您知道,Igor Minar和VojtaJína都是Angular开发人员,后者是AngularJs单元测试背后的主要人物之一,所以要注意它们。
所以,基本上它在测试时已经使用了$location
服务的模拟版本,你应该能够完美地控制它。