29

这是测试规范文件:

describe('Test main controller', function(){
        it('Should initialize value to Loading', function(){
            $scope = {}
            ctrl =  new mainNavController($scope)
            expect($scope.wksp_name).toBe('Loading')
        })
    })

这是控制器文件

function mainNavController($scope) {
    $scope.wksp_name = 'Loading...'
    $scope.$on('broadCastWkspNameEvent', function (e, args) {
        $scope.wksp_name = args
    })
}

mainNavController.$inject=['$scope']

但是我的测试失败了Object #<Object> has no method '$on'

我正在使用茉莉花的基本设置。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <title>Jasmine Spec Runner</title>

  <link rel="shortcut icon" type="image/png" href="testlib/jasmine-1.2.0/jasmine_favicon.png">
  <link rel="stylesheet" type="text/css" href="testlib/jasmine-1.2.0/jasmine.css">
  <script type="text/javascript" src="testlib/jasmine-1.2.0/jasmine.js"></script>
  <script type="text/javascript" src="testlib/jasmine-1.2.0/jasmine-html.js"></script>

  <!-- include source files here... -->
  <script type="text/javascript" src="/static_files/js/test-specs/main-nav-spec.js"></script>

  <!-- include spec files here... -->
  <script type="text/javascript" src="/static_files/js/common/jquery/latest.js"></script>
  <script type="text/javascript" src="/static_files/js/common/angular/angular-1.0.1.min.js"></script>
  <script type="text/javascript" src="/static_files/js/common/angular/angular-resource-1.0.1.min.js"></script>
  <script type="text/javascript" src="/static_files/js/section/main-nav-controller.js"></script>

  <script type="text/javascript">
    (function() {
      var jasmineEnv = jasmine.getEnv();
      jasmineEnv.updateInterval = 1000;

      var htmlReporter = new jasmine.HtmlReporter();

      jasmineEnv.addReporter(htmlReporter);

      jasmineEnv.specFilter = function(spec) {
        return htmlReporter.specFilter(spec);
      };

      var currentWindowOnload = window.onload;

      window.onload = function() {
        if (currentWindowOnload) {
          currentWindowOnload();
        }
        execJasmine();
      };

      function execJasmine() {
        jasmineEnv.execute();
      }

    })();
  </script>

</head>

<body>
</body>
</html>

我做错了什么?我无法理解这件事应该如何工作:)

4

3 回答 3

59

您的测试代码的主要问题是它尝试使用 new 运算符“手动”创建控制器的实例。这样做时,AngularJS 没有机会注入依赖项。您应该做的是允许 AngularJS 注入依赖项:

var $scope, ctrl;

//you need to inject dependencies first
beforeEach(inject(function($rootScope) {
    $scope = $rootScope.$new();        
}));

it('Should initialize value to Loading', inject(function($controller) {
    ctrl = $controller('MainNavController', {
        $scope: $scope
    });
    expect($scope.wksp_name).toBe('Loading...');
}));

这是完整 jsFiddle 的链接:http: //jsfiddle.net/pkozlowski_opensource/7a7KR/3/

上面的例子有两点值得注意:

  1. 您可以使用 ngMock 模块中的 inject() 方法来注入依赖项:https ://docs.angularjs.org/api/ngMock/function/angular.mock.inject
  2. 要创建一个控制器实例(支持依赖注入),您可以使用 $controller 服务:http ://docs.angularjs.org/api/ng.$controller

最后一点:我建议以大写字母开头命名控制器 - 这样我们就不会将它们与变量名混淆。

于 2012-09-04T17:20:26.197 回答
17

@pkozlowski.opensource 的好答案。$scope.$on更详细地说......有时断言真正由您的控制器调用也可能很方便。在这种情况下,您可以$scope.$on如下所述进行监视:

beforeEach(inject(function($rootScope) {
    $scope = $rootScope.$new();        
    spyOn($scope, '$on').andCallThrough();
}));

然后你可以断言它$on是用你的事件名称和一些函数作为参数调用的:

it('Should bind to "broadCastWkspNameEvent"', inject(function($controller) {
    ctrl = $controller('MainNavController', {
        $scope: $scope
    });
    expect($scope.$on).toHaveBeenCalledWith('broadCastWkspNameEvent', jasmine.any(Function));
}));
于 2013-02-01T08:06:08.790 回答
4

我同意 pkozowski 的回答,但要更直接地回答您的问题,您需要删除 '$on'

如果您的 $scope 如下所示,您的示例将通过:

$scope = {
  $on: function() {}
}
于 2012-09-29T13:07:51.733 回答