web-dev-qa-db-ja.com

angularjsのルートユニットテスト

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'});
}]);

ルーティングテストはe2eテストで行うことをお勧めします。

  it('should redirect index.html to index.html#/phones', function() {
    browser().navigateTo('../../app/index.html');
    expect(browser().location().url()).toBe('/phones');
  });

ただし、「$ routeProvider」設定は単一の関数function($ routeProvider)で行われ、ルーティング機能にはブラウザーDOMは必要ないと思うので、ブラウザーの関与なしに単体テストができるはずです。

例えば、
urlが/ fooの場合、templateUrlは/partials/foo.htmlであり、コントローラーはFooCtrlである必要があります
urlが/ barの場合、templateUrlは/partials/bar.htmlで、コントローラーはBarCtrlである必要があります

これは単純な関数IMOであり、単純なテストである単体テストでもテストする必要があります。

Googleでこの$ routeProvider単体テストを検索しましたが、まだ運がありません。

ここからいくつかのコードを借りることができると思いますが、まだ作成できませんでした https://github.com/angular/angular.js/blob/master/test/ng/routeSpec.js

41
allenhwkim

ルートオブジェクトが正しく構成されていることをアサートしないだけですか?

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')
  });
});
63
zhon

次のように$ 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);

  });
}); 
45
Juho Salmio

前の2つの答えを組み合わせて、ルーターをブラックボックスとしてテストしたい場合、ルートがどうであれ(ルーター自体が構成を設定するのではなく)ルーティングするブラックボックスとしてテストする場合:

// 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);
});
5
pansay