Подтвердить что ты не робот

Тестирование с помощью angular -mocks/jasmine - TypeError: undefined не является объектом

Я пытаюсь протестировать простую службу в моем приложении angular, используя jasmine/karma/phantomJS.

версия жасмина: 2.4.1 angular/угловые-макеты: 1.5.7 phantomJS: 2.1.1

QueryParameters.service.tests.js: (QueryParameters.service.js является частью модуля app.service и на самом деле является factory, а не службой)

describe('myApp.QueryParametersService', function() {

  var QueryParametersService;

  beforeEach(module('myApp'));
  beforeEach(module('app.service'));
  beforeEach(inject(function ($injector) {
    QueryParametersService = $injector.get('QueryParametersService');
  }));

  var testObject = {
    name : 'Hans',
    age  : '27'
  };

  it('Should output correct querystrings', function() {
    expect(QueryParametersService.toQueryParams(testObject)).toBe('?name=Hans&age=27');
  });

});

QueryParametersService.js:

(function() {
  'use strict';

  angular.module('app.service')
    .factory('QueryParametersService', QueryParametersService);

  QueryParametersService.$inject = [];

  function QueryParametersService() {

    var service = {
      toQueryParams : toQueryParams
    };

    return service;

    function toQueryParams(queryObject) {
      <removed code here>
    }
  }
})();

В файле Gruntfile.js:

karma: {
      unit: {
        options: {
          frameworks: ['jasmine'],
          singleRun: true,
          browsers: ['PhantomJS'],
          files: [
            '<%= yeoman.client %>/bower_components/angular/angular.js',
            '<%= yeoman.client %>/bower_components/angular-mocks/angular-mocks.js',
            '<%= yeoman.client %>/app/app.js',
            '<%= yeoman.client %>/app/filters/filter.module.js',
            '<%= yeoman.client %>/app/directives/directive.module.js',
            '<%= yeoman.client %>/app/services/service.module.js',
            '<%= yeoman.client %>/app/services/tests/*.js'
          ]
        }
      }
    }

мой основной модуль (в app.js) объявлен следующим образом:

  angular.module('myApp', [
    'angular-thumbnails',
    'angularUtils.directives.dirPagination',
    'app.directive',
    'app.filter',
    'app.service',
    'color.picker',
    'ngCookies',
    'ngFileUpload',
    'ngImgCrop',
    'ngMaterial',
    'ngMessages',
    'ngResource',
    'ngSanitize',
    'ui.router',
    'validation.match',
  ])

Ошибка при получении тестов:

PhantomJS 2.1.1 (Mac OS X 0.0.0) myApp.QueryParametersService Should output correct querystrings FAILED
        /<filepath>/client/bower_components/angular/angular.js:4632:53
        [email protected]/<filepath>/client/bower_components/angular/angular.js:321:24
        [email protected]/<filepath>/client/bower_components/angular/angular.js:4592:12
        [email protected]/<filepath>/client/bower_components/angular/angular.js:4514:30
        [email protected]/<filepath>/client/bower_components/angular-mocks/angular-mocks.js:3067:60
        TypeError: undefined is not an object (evaluating 'QueryParametersService.toQueryParams') in /<filepath>/client/app/services/tests/query-parameters.service.tests.js (line 65)
        /<filepath>/client/app/services/tests/query-parameters.service.tests.js:65:34
PhantomJS 2.1.1 (Mac OS X 0.0.0): Executed 1 of 1 (1 FAILED) ERROR (0.002 secs / 0.009 secs)

Где я здесь ошибаюсь?

4b9b3361

Ответ 1

Как отметил @jchen86, QueryParametersService.js не был включен в конфигурацию (я думал, что он будет включен, когда я включу весь сервисный модуль). Решено, изменив файл grunt, чтобы включить все js файлы в служебную папку:

'<%= yeoman.client %>/app/services/*.js'