在角度js测试控制器时得到了未知的提供者

时间:2013-01-02 13:52:43

标签: unit-testing angularjs karma-runner

我有以下控制器

angular.module('samples.controllers',[])
  .controller('MainCtrl', ['$scope', 'Samples', function($scope, Samples){
  //Controller code
}

取决于以下服务

angular.module('samples.services', []).
    factory('Samples', function($http){
    // Service code
}

尝试使用以下代码测试控制器

describe('Main Controller', function() {
  var service, controller, $httpBackend;

  beforeEach(module('samples.controllers'));
  beforeEach(module('samples.services'));
  beforeEach(inject(function(MainCtrl, Samples, _$httpBackend_) {

  }));

    it('Should fight evil', function() {

    });
});

但收到以下错误:

Error: Unknown provider: MainCtrlProvider <- MainCtrl.

P.s尝试以下post,似乎没有帮助

1 个答案:

答案 0 :(得分:27)

测试控制器的正确方法是使用$ controller:

ctrl = $controller('MainCtrl', {$scope: scope, Samples: service});

详细示例:

describe('Main Controller', function() {
  var ctrl, scope, service;

  beforeEach(module('samples'));

  beforeEach(inject(function($controller, $rootScope, Samples) {
    scope = $rootScope.$new();
    service = Samples;

    //Create the controller with the new scope
    ctrl = $controller('MainCtrl', {
      $scope: scope,
      Samples: service
    });
  }));

  it('Should call get samples on initialization', function() {

  });
});