Angular uiルーター上に構築されたアプリケーションでルーターをテストするユニットに問題があります。テストするのは、状態遷移によってURLが適切に変更されるかどうかです(後でより複雑なテストがありますが、ここから始めます)。
アプリケーションコードの関連部分は次のとおりです。
angular.module('scrapbooks')
.config( function($stateProvider){
$stateProvider.state('splash', {
url: "/splash/",
templateUrl: "/app/splash/splash.tpl.html",
controller: "SplashCtrl"
})
})
そして、テストコード:
it("should change to the splash state", function(){
inject(function($state, $rootScope){
$rootScope.$apply(function(){
$state.go("splash");
});
expect($state.current.name).to.equal("splash");
})
})
Stackoverflow(および公式のuiルーターテストコード)に関する同様の質問は、$ state.go呼び出しを$ applyにラップするだけで十分であることを示唆しています。しかし、私はそれを行っており、状態はまだ更新されていません。 $ state.current.nameは空のままです。
同様にこの問題を抱えており、最終的にそれを行う方法を見つけました。
サンプルの状態は次のとおりです。
angular.module('myApp', ['ui.router'])
.config(['$stateProvider', function($stateProvider) {
$stateProvider.state('myState', {
url: '/state/:id',
templateUrl: 'template.html',
controller: 'MyCtrl',
resolve: {
data: ['myService', function(service) {
return service.findAll();
}]
}
});
}]);
以下の単体テストでは、paramsを使用したURLのテストと、独自の依存関係を挿入する解決の実行について説明します。
describe('myApp/myState', function() {
var $rootScope, $state, $injector, myServiceMock, state = 'myState';
beforeEach(function() {
module('myApp', function($provide) {
$provide.value('myService', myServiceMock = {});
});
inject(function(_$rootScope_, _$state_, _$injector_, $templateCache) {
$rootScope = _$rootScope_;
$state = _$state_;
$injector = _$injector_;
// We need add the template entry into the templateCache if we ever
// specify a templateUrl
$templateCache.put('template.html', '');
})
});
it('should respond to URL', function() {
expect($state.href(state, { id: 1 })).toEqual('#/state/1');
});
it('should resolve data', function() {
myServiceMock.findAll = jasmine.createSpy('findAll').and.returnValue('findAll');
// earlier than jasmine 2.0, replace "and.returnValue" with "andReturn"
$state.go(state);
$rootScope.$digest();
expect($state.current.name).toBe(state);
// Call invoke to inject dependencies and run function
expect($injector.invoke($state.current.resolve.data)).toBe('findAll');
});
});
現在の状態の名前のみを確認する場合は、$state.transitionTo('splash')
を使用する方が簡単です
it('should transition to splash', inject(function($state,$rootScope){
$state.transitionTo('splash');
$rootScope.$apply();
expect($state.current.name).toBe('splash');
}));
これは少しトピックから外れていますが、Googleからルートのテンプレート、コントローラー、URLをテストする簡単な方法を探してここに来ました。
$state.get('stateName')
あなたにあげます
{
url: '...',
templateUrl: '...',
controller: '...',
name: 'stateName',
resolve: {
foo: function () {}
}
}
あなたのテストで。
したがって、テストは次のようになります。
var state;
beforeEach(inject(function ($state) {
state = $state.get('otherwise');
}));
it('matches a wild card', function () {
expect(state.url).toEqual('/path/to/page');
});
it('renders the 404 page', function () {
expect(state.templateUrl).toEqual('views/errors/404.html');
});
it('uses the right controller', function () {
expect(state.controller).toEqual(...);
});
it('resolves the right thing', function () {
expect(state.resolve.foo()).toEqual(...);
});
// etc
$state.$current.locals.globals
を使用して、解決されたすべての値にアクセスできます(コードスニペットを参照)。
// Given
$httpBackend
.expectGET('/api/users/123')
.respond(200, { id: 1, email: '[email protected]');
// When
$state.go('users.show', { id: 123 });
$httpBackend.flush();
// Then
var user = $state.$current.locals.globals['user']
expact(user).to.have.property('id', 123);
expact(user).to.have.property('email', '[email protected]');
Ui-router 1.0.0(現在のベータ版)では、仕様の$resolve.resolve(state, locals).then((resolved) => {})
の呼び出しを試みることができます。たとえば https://github.com/lucassus/angular-webpack-seed/blob/9a5af271439fd447510c0e3e87332959cb0eda0f/src/app/contacts/one/one.state.spec.js#L29
テンプレートのコンテンツに興味がない場合は、$ templateCacheをモックするだけです。
beforeEach(inject(function($templateCache) {
spyOn($templateCache,'get').and.returnValue('<div></div>');
}
state
がresolve
なしの場合:
// TEST DESCRIPTION
describe('UI ROUTER', function () {
// TEST SPECIFICATION
it('should go to the state', function () {
module('app');
inject(function ($rootScope, $state, $templateCache) {
// When you transition to the state with $state, UI-ROUTER
// will look for the 'templateUrl' mentioned in the state's
// configuration, so supply those templateUrls with templateCache
$templateCache.put('app/templates/someTemplate.html');
// Now GO to the state.
$state.go('someState');
// Run a digest cycle to update the $state object
// you can also run it with $state.$digest();
$state.$apply();
// TEST EXPECTATION
expect($state.current.name)
.toBe('someState');
});
});
});
注:-
ネスト状態の場合、複数のテンプレートを提供する必要がある場合があります。例えばネストされた状態core.public.home
と各state
、つまりcore
、core.public
、およびcore.public.home
にtemplateUrl
が定義されている場合、各状態のtemplateUrl
キーに$templateCache.put()
を追加します:-
$templateCache.put('app/templates/template1.html'); $templateCache.put('app/templates/template2.html'); $templateCache.put('app/templates/template3.html');
お役に立てれば。幸運を。