Angular ui 路由器单元测试(状态到 url)

IT技术 javascript unit-testing angularjs angular-ui-router
2021-03-06 22:35:36

我在我的应用程序中对路由器进行单元测试时遇到了一些麻烦,该应用程序构建在 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 保持为空。

6个回答

也遇到了这个问题,终于知道怎么做了。

这是一个示例状态:

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

下面的单元测试将涵盖测试带有参数的 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');
  });
});
@Philip我面临同样的问题$state.current.name是空字符串。
2021-04-20 22:35:36
我按照上面的代码进行了调整,以适应andReturn上面评论中提到的一样。但是,我的 $state.current.name 返回一个空字符串。有谁知道为什么?
2021-04-25 22:35:36
@Joy @VLeong 我遇到了同样的问题,然后意识到这是由于我正在编写的 ui-router 实用程序使用 ES6 promises 而不是$q. $q为了$rootScope.$digest()解决所有的Promise,一切都必须使用Promise。我的案例可能非常独特,但我想我会分享以防万一。
2021-05-06 22:35:36
很棒的帖子,如果您使用字符串来定义服务,则可以节省时间,请使用 get 而不是 invoke。期望($injector.get($state.current.resolve.data)).toBe('findAll');
2021-05-10 22:35:36
@Joy 我遇到了与 $state.current.name 返回空字符串相同的问题。我不得不用 $httpBackend.flush() 替换 $rootScope.$digest()。更改之后,我得到了我所期望的。
2021-05-10 22:35:36

如果您只想检查当前状态的名称,则更易于使用 $state.transitionTo('splash')

it('should transition to splash', inject(function($state,$rootScope){
  $state.transitionTo('splash');
  $rootScope.$apply();
  expect($state.current.name).toBe('splash');
}));
为了简单起见,我发现这个答案是最容易接受的。进行测试很好,但是必须编写一个比我的整个 ui-route 定义更长的测试来测试单个端点只是低效的方法。无论如何,我投票赞成
2021-04-21 22:35:36

我意识到这有点偏离主题,但我从 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没有的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,即corecore.public并且core.public.home有一个templateUrl定义,我们将不得不$templateCache.put()为每个状态的templateUrl添加:-

$templateCache.put('app/templates/template1.html'); $templateCache.put('app/templates/template2.html'); $templateCache.put('app/templates/template3.html');

希望这可以帮助。祝你好运。

您可以使用$state.$current.locals.globals访问所有已解析的值(请参阅代码片段)。

// Given
$httpBackend
  .expectGET('/api/users/123')
  .respond(200, { id: 1, email: 'test@email.com');
                                                       
// 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', 'test@email.com');

在 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