javascript - 单元测试返回 TypeError : undefined is not a constructor error message

标签 javascript angularjs unit-testing karma-jasmine

我正在尝试在 Jasmine 中编写一个简单的测试来测试 SearchCtrl。但是我不确定如何构建单元测试,因为这是我第一次使用它。这是我到目前为止所做的:

services.js中:

function CategoryService($http) {

    this.getCategoryList = function () {

        return $http({
            method: 'GET',
            url: server + '/api/category/',
        });

    }

}

示例输出:

[
    {
        "id": "1551742a-5963-4d40-9abb-af7a6fb4ec5d",
        "category": "Coach"
    }
]

controller.js中:

function SearchCtrl($scope, CategoryService) {

    CategoryService.getCategoryList().then(function(dataResponse) {
        $scope.categories = dataResponse.data;
    });

}

search.controller.tests.js中:

describe('SearchCtrl', function() {

  var $controller, scope, categoryServiceMock;

  // TODO: Load the app module
  beforeEach(module('app.controllers'));
  beforeEach(module('app.services'));

  // TODO: Instantiate the controller and mocks
  beforeEach(inject(function($controller, categoryServiceMock) {
    scope = $rootScope.$new();

    // mock categoryService
    categoryServiceMock = {
      login: jasmine.createSpy('category spy')
    };

    // instantiate SearchCtrl
    controller = $controller('SearchCtrl', {
      $scope: scope,
      'CategoryService': categoryServiceMock
    })

  }));

  describe('#searchList', function() {

    // TODO: Call getCategoryList() on the controller
    it('should call getCategoryList on categoryService', function() {
      expect(categoryServiceMock.getCategoryList).toHaveBeenCalledWith('Coach');
    });

    describe('once the search is executed', function() {
      it('if successful, return a list of categories', function() {

        // TODO: Mock response from CategoryService
        expect(categoryServiceMock.getCategoryList).toHaveBeenCalledWith('Coach');
      });
    });
  });
});

当前返回错误:

Error: [$injector:unpr] Unknown provider: categoryServiceMockProvider <- categoryServiceMock

如何解决?此外,我是否以正确的方式构建了单元测试?

更新 25/09

我将测试更改为以下内容:

describe('SearchCtrl', function() {

  var scope;
  var CategoryServiceMock;
  var SearchCtrl;

  // Load the app module
  beforeEach(module('dingocv.controllers', ['dingocv.services']));

  // Define CategoryServiceMock
  beforeEach(function() {
    CategoryServiceMock = {
      getCategoryList: function() {}
    };
  });

  // Inject required services and instantiate the controller
  beforeEach(inject(function($rootScope, $controller) {
    scope = $rootScope.$new();
    SearchCtrl = $controller('SearchCtrl', {
      $scope: scope,
      CategoryService: CategoryServiceMock
    });
  }));

  // Tests

  describe('#searchList', function() {
    it('should call registerBook Parse Service method', function () {
      spyOn(CategoryServiceMock, 'getCategoryList').andCallThrough();
      scope.getCategoryList();
    })
  });

});

我现在收到此错误:

PhantomJS 2.1.1 (Windows 8 0.0.0): Executed 0 of 1 SUCC
PhantomJS 2.1.1 (Windows 8 0.0.0) SearchCtrl #searchList should call registerBook Parse Service method FAILED
        forEach@D:/myapp-mobile/www/lib/ionic/js/ionic.bundle.js:13691:24
        loadModules@D:/myapp-mobile/www/lib/ionic/js/ionic.bundle.js:17878:12
        createInjector@D:/myapp-mobile/www/lib/ionic/js/ionic.bundle.js:17800:30
        workFn@D:/myapp-mobile/www/lib/angular-mocks/angular-mocks.js:3074:60
        loaded@http://localhost:9876/context.js:151:17
        D:/myapp-mobile/www/lib/ionic/js/ionic.bundle.js:17918:53
        TypeError: undefined is not a constructor (evaluating 'spyOn(CategoryServiceMock, 'getCategoryList').andCallThrough()') in unit-tests/search.controller.tests.js (line 30)
        unit-tests/search.controller.tests.js:30:67
        loaded@http://localhost:9876/context.js:151:17
PhantomJS 2.1.1 (Windows 8 0.0.0): Executed 1 of 1 (1 FPhantomJS 2.1.1 (Windows 8 0.0.0): Executed 1 of 1 (1 FAILED) ERROR (0.04 secs / 0.021 secs)
25 09 2016 09:48:38.940:INFO [watcher]: Changed file "D:/myapp-mobile/www/tests/unit-tests/search.controller.tests.js".
PhantomJS 2.1.1 (Windows 8 0.0.0): Executed 0 of 1 SUCCPhantomJS 2.1.1 (Windows 8 0.0.0) SearchCtrl #searchList should call registerBook Parse Service method FAILED
        forEach@D:/myapp-mobile/www/lib/ionic/js/ionic.bundle.js:13691:24
        loadModules@D:/myapp-mobile/www/lib/ionic/js/ionic.bundle.js:17878:12
        createInjector@D:/myapp-mobile/www/lib/ionic/js/ionic.bundle.js:17800:30
        workFn@D:/myapp-mobile/www/lib/angular-mocks/angular-mocks.js:3074:60
        loaded@http://localhost:9876/context.js:151:17
        D:/myapp-mobile/www/lib/ionic/js/ionic.bundle.js:17918:53
        TypeError: undefined is not a constructor (evaluating 'spyOn(CategoryServiceMock, 'getCategoryList').andCallThrough()') in unit-tests/search.controller.tests.js (line 30)
        unit-tests/search.controller.tests.js:30:67
        loaded@http://localhost:9876/context.js:151:17
PhantomJS 2.1.1 (Windows 8 0.0.0): Executed 1 of 1 (1 FPhantomJS 2.1.1 (Windows 8 0.0.0): Executed 1 of 1 (1 FAILED) ERROR (0.035 secs / 0.007 secs)
25 09 2016 09:48:42.307:INFO [watcher]: Changed file "D:/myapp-mobile/www/tests/unit-tests/search.controller.tests.js".
PhantomJS 2.1.1 (Windows 8 0.0.0): Executed 0 of 1 SUCCPhantomJS 2.1.1 (Windows 8 0.0.0) SearchCtrl #searchList should call registerBook Parse Service method FAILED
        forEach@D:/myapp-mobile/www/lib/ionic/js/ionic.bundle.js:13691:24
        loadModules@D:/myapp-mobile/www/lib/ionic/js/ionic.bundle.js:17878:12
        createInjector@D:/myapp-mobile/www/lib/ionic/js/ionic.bundle.js:17800:30
        workFn@D:/myapp-mobile/www/lib/angular-mocks/angular-mocks.js:3074:60
        loaded@http://localhost:9876/context.js:151:17
        D:/myapp-mobile/www/lib/ionic/js/ionic.bundle.js:17918:53
        TypeError: undefined is not a constructor (evaluating 'spyOn(CategoryServiceMock, 'getCategoryList').andCallThrough()') in unit-tests/search.controller.tests.js (line 30)
        unit-tests/search.controller.tests.js:30:67
        loaded@http://localhost:9876/context.js:151:17
PhantomJS 2.1.1 (Windows 8 0.0.0): Executed 1 of 1 (1 FPhantomJS 2.1.1 (Windows 8 0.0.0): Executed 1 of 1 (1 FAILED) ERROR (0.069 secs / 0.008 secs)

最佳答案

所有这些注入(inject)只是让您的测试变得复杂。这是适合您的案例的简单工作示例:

服务模块

angular.module('dingocv.services', [])
.service('CategoryService', ['$http', function CategoryService($http) {
    this.getCategoryList = function () {
        //Wasn't sure what server was here. So created a variable here. Feel free to change this.
        var server = 'https://www.example.com';
        return $http({
            method: 'GET',
            url: server + '/api/category/',
        });
    }
}]);

Controller 模块

angular.module('dingocv.controllers', ['dingocv.services'])
.controller('SearchCtrl', ['$scope', 'CategoryService', function SearchCtrl($scope, CategoryService) {
    CategoryService.getCategoryList().then(function(dataResponse) {
        $scope.categories = dataResponse.data;
    });
}]);

测试

describe('SearchCtrl', function() {
    var response;
    response = {
        status: 200,
        data: [{
            "id": "1551742a-5963-4d40-9abb-af7a6fb4ec5d",
            "category": "Coach"
        }]
    };

    //Injecting the modules that would then be used in the tests
    beforeEach(module('dingocv.services'));
    beforeEach(module('dingocv.controllers'));

    beforeEach(inject(function($controller, $rootScope, _CategoryService_) {
        $scope = $rootScope.$new();
        CategoryService = _CategoryService_;

        //Creating a spy for this method so that it doesn't call the original Service method.
        spyOn(CategoryService, 'getCategoryList').and.callFake(function(){
            return{
                then: function(successCallback){
                    successCallback(response);
                }
            }
        });

        SearchCtrl = $controller('SearchCtrl', {
            $scope: $scope
        });
    }));

    describe('Initialization', function() {
        it('should initialize the controller\'s scope with categories', function(){
            expect(CategoryService.getCategoryList).toHaveBeenCalled();
            expect($scope.categories).toBeDefined();
            expect($scope.categories.length).toEqual(1);
            expect($scope.categories[0].id).toEqual(response.data[0].id);
            expect($scope.categories[0].category).toEqual(response.data[0].category);
        });
    });
});

希望这有帮助。

关于javascript - 单元测试返回 TypeError : undefined is not a constructor error message,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39679471/

相关文章:

javascript - 如何用php实现Jquery-upvote插件

javascript - 嵌套 JSON 迭代,超出最大调用堆栈大小

javascript - 使用 fabric.js 创建引用线和网格标尺

javascript - Angular ng-repeat 未加载

angular - 如何在组件中测试FormGroupDirective?

javascript - 如何识别滚动到的 View div 部分?

angularjs - AngularJS 的 Play2 重定向

angularjs - Protractor :如何从下拉列表菜单中单击菜单元素

unit-testing - 开 Jest 找不到文件导入

c# - 如何验证一个事件已经被模拟取消订阅