javascript - 使用 templateUrl 的单元测试指令有问题

标签 javascript angularjs unit-testing gruntjs karma-runner

我在使用 templateUrl 的单元测试指令时遇到问题。

有这个关于 AngularJS 测试的很棒的教程 [1],它甚至还有一个 Github 存储库 [2]

所以我 fork 它 [3] 并做了以下更改:

directives.js 上,我创建了两个新指令:

.directive('helloWorld', function() {
    return {
      restrict: 'E',
      replace: true,
      scope:{},
      template: '<div>hello world!</div>',
      controller: ['$scope', function ($scope) {}]
    }
})

.directive('helloWorld2', function() {
    return {
      restrict: 'E',
      replace: true,
      scope:{},
      templateUrl: 'mytemplate.html',
      controller: ['$scope', function ($scope) {}]
    }
})

我更改了 test/unit/directives/directivesSpecs.js 以便它将模板加载到 $templateCache 中,然后为新指令添加了另外两个测试:

//
// test/unit/directives/directivesSpec.js
//
describe("Unit: Testing Directives", function() {

  var $compile, $rootScope, $templateCache;

  beforeEach(angular.mock.module('App'));

  beforeEach(inject(
    ['$compile','$rootScope', '$templateCache', function($c, $r, $tc) {
      $compile = $c;
      $rootScope = $r;

      //Added $templateCache and mytemplate
      $templateCache = $tc;
      $templateCache.put('mytemplate.html', '<div>hello world 2!</div>');
    }]
  ));

  //This was already here
  it("should display the welcome text properly", function() {
    var element = $compile('<div data-app-welcome>User</div>')($rootScope);
    expect(element.html()).to.match(/Welcome/i);
  });


  //Added this test - it passes
  it("should render inline templates", function() {
    var element = $compile('<hello-world></hello-world>')($rootScope);
    expect(element.text()).equal("hello world!");
  });

  //Added this test - it fails
  it("should render cached templates", function() {
    var element = $compile('<hello-world2></hello-world2>')($rootScope);
    expect(element.text()).equal("hello world 2!");
  });

});

最后一个测试失败了,因为 Angular 不会像它应该的那样编译模板。

$ grunt test:unit
Running "karma:unit" (karma) task
INFO [karma]: Karma v0.10.10 server started at http://localhost:9876/
INFO [launcher]: Starting browser Chrome
INFO [Chrome 35.0.1916 (Linux)]: Connected on socket ChISVr0ZABZ1fusdyv3m
Chrome 35.0.1916 (Linux) Unit: Testing Directives should render cached templates FAILED
    expected '' to equal 'hello world 2!'
    AssertionError: expected '' to equal 'hello world 2!'
Chrome 35.0.1916 (Linux): Executed 18 of 18 (1 FAILED) (0.441 secs / 0.116 secs)
Warning: Task "karma:unit" failed. Use --force to continue.

Aborted due to warnings.

我很确定这应该有效。 至少,它与@SleepyMurth 在 [4] 上提出的解决方案非常相似。

但我觉得我已经达到了理解我目前对 AngularJS 的认识出了什么问题的极限。

帮助! :-)

[1] http://www.yearofmoo.com/2013/01/full-spectrum-testing-with-angularjs-and-karma.html

[2] https://github.com/yearofmoo-articles/AngularJS-Testing-Article/

[3] https://github.com/tonylampada/AngularJS-Testing-Article

[4] Unit Testing AngularJS directive with templateUrl

最佳答案

问题

当指定 templateUrl 时,使用 $http 获取模板(即使是缓存模板,$http $templateCache).出于这个原因,需要有一个 $digest 循环,以便 $http 的 promise 用模板内容解析并由指令处理。


解决方案

由于 promises 在 $digest 周期中得到解决(并且因为我们在“Angular 上下文”之外),我们需要在评估我们的断言之前手动调用 $rootScope.$digest()
因此,最后一个测试应该修改成这样:

it("should render cached templates", function() {
    var element = $compile('<hello-world2></hello-world2>')($rootScope);
    $rootScope.$digest();   // <-- manually force a $digest cycle
    expect(element.text()).toBe(tmplText);
});

另请参阅此 short demo .

关于javascript - 使用 templateUrl 的单元测试指令有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23871901/

相关文章:

c# - 如何在刷新页面时使用asp.net定时器控件将div标签中的向下滚动条设置为垂直滚动条

php - Codeigniter (CSRF) jQuery ajax 问题

javascript - 使用 '$' 迭代对象属性

javascript - 自定义 mongodb 搜索对象?

javascript - Nodejs- TypeError : JSON. Parse,JSON.Stringify 不是函数

angularjs - 引用angularjs、firebase、angularfire中push生成的唯一id的名称

unit-testing - 如何对(在内存中) Entity Framework 进行单元测试?

reactjs - 如何使用带有 props 的 Jest 来模拟 React 组件?

javascript - 如何测试 Angular Directive(指令)范围

javascript - 使用 javascript 和 CSS 加载图像隐藏可见性效果