angularjs route unit testing
As we see here in http://docs.angularjs.org/tutorial/step_07,
angular.module('phonecat', []).
config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/phones', {templateUrl: 'partials/phone-list.html', controller: PhoneListCtrl}).
when('/phones/:phoneId', {templateUrl: 'partials/phone-detail.html', controller: PhoneDetailCtrl}).
otherwise({redirectTo: '/phones'});
}]);
routing test is suggested to be done with e2e test,
it('should redirect index.html to index.html#/phones', function() {
browser().navigateTo('../../app/index.html');
expect(browser().location().url()).toBe('/phones');
});
However, I think the '$routeProvider' config is done with a single function, function($routeProvider), and we should be able to unit test without involvement of browser since I think routing function does not require browser DOM.
For example,
when url is /foo, templateUrl must be /partials/foo.html and controller is FooCtrl
when url is /bar, templateUrl must be /partials/bar.html and controller is BarCtrl
It is a simple function IMO, and it should also be tested in a simple test, a unit test.
I googled and searched for this $routeProvider unit test, but no luck yet.
I think I may borrow some code from here but couldn't make it yet, https://github.com/angular/angular.js/blob/master/test/ng/routeSpec.js.
为什么不只是断言路由对象配置正确?
it('should map routes to controllers', function() {
module('phonecat');
inject(function($route) {
expect($route.routes['/phones'].controller).toBe('PhoneListCtrl');
expect($route.routes['/phones'].templateUrl).
toEqual('partials/phone-list.html');
expect($route.routes['/phones/:phoneId'].templateUrl).
toEqual('partials/phone-detail.html');
expect($route.routes['/phones/:phoneId'].controller).
toEqual('PhoneDetailCtrl');
// otherwise redirect to
expect($route.routes[null].redirectTo).toEqual('/phones')
});
});
我认为你应该能够像这样测试$ routeProvider:
angular.module('phonecat', []).
config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/phones', {templateUrl: 'partials/phone-list.html', controller: PhoneListCtrl}).
when('/phones/:phoneId', {templateUrl: 'partials/phone-detail.html', controller: PhoneDetailCtrl}).
otherwise({redirectTo: '/phones'});
}]);
it('should test routeProvider', function() {
module('phonecat');
inject(function($route, $location, $rootScope) {
expect($route.current).toBeUndefined();
$location.path('/phones/1');
$rootScope.$digest();
expect($route.current.templateUrl).toBe('partials/phone-detail.html');
expect($route.current.controller).toBe(PhoneDetailCtrl);
$location.path('/otherwise');
$rootScope.$digest();
expect($location.path()).toBe('/phones/');
expect($route.current.templateUrl).toEqual('partials/phone-list.html');
expect($route.current.controller).toBe(PhoneListCtrl);
});
});
结合前面的两个答案,如果你想测试路由器作为一个黑盒子,它应该成功路由(不是控制器自己配置),无论路由如何:
// assuming the usual inject beforeEach for $route etc.
var expected = {};
it('should call the right controller for /phones route', function () {
expected.controller = $route.routes['/phones'].controller;
$location.path('/phones');
$rootScope.$digest();
expect($route.current.controller).toBe(expected.controller);
});
it('should redirect to redirectUrl from any other route', function () {
expected.path = $route.routes[null].redirectTo;
$location.path('/wherever-wrong');
$rootScope.$digest();
expect($location.path()).toBe(expected.path);
});
链接地址: http://www.djcxy.com/p/77620.html
上一篇: 用于Codeigniter的templateUrl angularjs routerProvider
下一篇: angularjs路由单元测试