2

現在、karma-mocha 0.2.0 および karma-chai 0.1.0 で Angular 1.2.x を実行しています。

以下は、モジュールMentorAvailabilityDashboardCtrlに基づいたmy の簡単な単体テストを作成する試みです。Mentors個別に実行するとすべてが成功しますが、テストをそのまま実行すると、「エラー: [ng:areq] Argument 'MentorAvailabilityDashboardCtrl' is not a function, got undefined」というエラーが表示されます。

テストが一度実行された後に Mocha または AngularMock がリセットされ、その後は未定義であると思われます。

例:

一斉に試運転

  • 1次試験=合格
  • 2 番目のテスト = 不合格「MentorAvailabilityDashboardCtrl が未定義になりました」
  • 3 番目のテスト = 不合格「MentorAvailabilityDashboardCtrl が未定義になりました」
  • 4 回目のテスト = 不合格「MentorAvailabilityDashboardCtrl が未定義になりました」

一斉に実行中のテスト (他のテストをコメントアウト)

  • 1次試験=合格
  • 2次試験=合格
  • 3次試験=合格
  • 4次試験=合格

質問:

最初のテストの実行後にコントローラーが未定義になるのはなぜですか? テストの実行ごとにコントローラーを永続化するためにできることはありますか?

私のコード:

'use strict';
/* globals gon: false */

import angular from 'angular';

describe('MentorAvailabilityDashboardCtrl', function() {
  let createController, $scope;

  beforeEach(function() {
    angular.module('Mentors', []);
    require('./mentor_availability_dashboard')
    angular.mock.module('Mentors');
  });

  beforeEach(angular.mock.inject(function ($rootScope, $controller) {
      function MockMentorProfile() {}
      function MockFlash() {}

      $scope = $rootScope.$new()
      createController = $controller('MentorAvailabilityDashboardCtrl', {
        $scope: $scope,
        MentorProfile: MockMentorProfile,
        Flash: MockFlash
      });
  }));

  describe('validation checks', function() {
    it('should invalidate form fields on initialization', function() {
      expect($scope.validatedFields()).to.eq(false);
    });

    it('should validate specifc field on initialization', function() {
      $scope.courseFilter = 'Rails';

      expect($scope.fieldValidated($scope.courseFilter)).to.eq(true);
    });

    it('should validate form fields on completion', function() {
      $scope.courseFilter = 'Rails';
      $scope.osFilter = 'Windows';
      $scope.studentFilter = { student: 'Billy' };
      $scope.paceFilter = '12 weeks';
      $scope.startFilter = { monday: 'Monday' };

      expect($scope.validatedFields()).to.eq(true);
    });

    it('should be able to click form with clearForm()', function() {
      $scope.courseFilter = 'Rails';
      $scope.clearForm()

      expect($scope.courseFilter).to.eq('');
    });
  });

});

実際のエラー:

PhantomJS 1.9.8 (Mac OS X 0.0.0) MentorAvailabilityDashboardCtrl "before each" hook: workFn for "should validate specifc field on initialization" FAILED
    Error: [ng:areq] Argument 'MentorAvailabilityDashboardCtrl' is not a function, got undefined
    http://errors.angularjs.org/1.2.26/ng/areq?p0=MentorAvailabilityDashboardCtrl&p1=not%20a%20function%2C%20got%20undefined
        at assertArg (/Users/bdoug/Bloc/vendor/assets/bower_components/angular/angular.js:1509)
        at assertArgFn (/Users/bdoug/Bloc/vendor/assets/bower_components/angular/angular.js:1520)
        at /Users/bdoug/Bloc/vendor/assets/bower_components/angular/angular.js:7278
        at /Users/bdoug/Bloc/frontend/test/tests_index.js:15072 <- webpack:///frontend/legacy_org/mentors/mentor_availability_dashboard.test.js:23:8
        at invoke (/Users/bdoug/Bloc/vendor/assets/bower_components/angular/angular.js:3966)
        at workFn (/Users/bdoug/Bloc/vendor/assets/bower_components/angular-mocks/angular-mocks.js:2161)
4

1 に答える 1