【发布时间】:2016-11-24 14:19:12
【问题描述】:
这是我的控制器。
(function() {
'use strict';
app.controller('NavController', navController);
function navController($rootScope, $scope, $location, $window, NavFactory) {
$scope.menuConfig = null;
$scope.menuItems = [];
$scope.isActive = isActive;
$scope.toggleBurgerMenu = toggleBurgerMenu;
$scope.toggleDeviceSettings = toggleDeviceSettings;
$rootScope.$watch('dictionary', function(dictionary) {
if (dictionary) {
init();
}
});
function init() {
$scope.menuConfig = $rootScope.config.navigation;
NavFactory.GetMenuItems().then(onGetMenuItems, $scope.onAPIError);
}
function onGetMenuItems(response) {
$scope.moduleConfig = response.moduleConfig;
$scope.menuItems = response.menuItems;
}
}
})();
这是我的测试套件(业力,茉莉) describe('NavController 函数', function() {
var $rootScope, $scope, $location, $window, $controller, createController, NavFactory, CacheFactory, toastr;
beforeEach(module('mockedDashboard'));
beforeEach(inject(function(_$rootScope_, _$controller_, _$location_, _$window_, _NavFactory_, _toastr_) {
$location = _$location_;
$window = _$window_;
toastr = _toastr_;
$rootScope = _$rootScope_;
$rootScope.dictionary = jsDictionary;
$rootScope.config = jsConfig;
$rootScope.config.contentFolder = '_default';
$scope = _$rootScope_.$new();
$scope.burgerMenuActive = false;
//mock the parent controller function
$scope.navigate = function(path) {
$location.path('/' + path);
};
// end mock
createController = function() {
return _$controller_('NavController', {
'$scope': $scope
});
};
$controller = createController();
}));
// We are using CacheFactory in this project, when running multiple tests on the controller
// we need to destroy the cache for each test as the controller is initialized for each test.
afterEach(inject(function(_CacheFactory_) {
CacheFactory = _CacheFactory_;
CacheFactory.destroy('defaultCache');
}));
describe('init()', function() {
it('should call NavFactory.GetMenuItems and set moduleConfig and menuItems on $scope', inject(function(_$httpBackend_) {
var $httpBackend = _$httpBackend_;
expect($scope.moduleConfig).toBe(undefined);
expect($scope.menuItems.length).toBe(0);
var responseData = [{
"path": "stats",
"url": "./app/modules/dashboard/modules/score/score.index.html",
"icon": "fa fa-fw fa-pie-chart",
"dashboardEnabled": true,
"burgerMenu": true,
"barMenu": false,
"barMenuOrder": -1,
"bottomMenu": true,
"bottomMenuOrder": 3,
"order_sm": 1,
"order_md": 2,
"order_lg": 2
}];
$httpBackend.expectGET('../content/_default/config/modules.json').respond(responseData);
$httpBackend.flush();
expect($scope.moduleConfig).not.toBe(undefined);
expect($scope.menuItems.length > 0).toBe(true);
}));
});});
我原以为必须运行 $scope.$digest() 才能触发观察程序,让 init() 运行,但它运行良好并且测试通过了。
这不是问题,我只是想了解它为什么会运行,因为我不了解观察者是如何触发的?是什么导致它运行?
【问题讨论】:
-
$rootScope.dictionary = jsDictionary;中的jsDictionary从何而来? -
通常,它来自引导程序中的一个 json 文件,但出于测试目的,它是一个加载了测试文件的全局 javascript 对象。它很脏,但是当我学习解决我/我们在构建我们的应用程序时犯的其他错误时它可以工作。所有这些单元测试都是在构建之后完成的。我们学到了很多东西,未来我们将采用 TDD 方法。
标签: angularjs unit-testing karma-runner