UI-router が $httpbackend ユニットテスト、Angular js に干渉する 質問する

UI-router が $httpbackend ユニットテスト、Angular js に干渉する 質問する

これは送信機能を備えたコントローラーです:

$scope.submit = function(){   

 $http.post('/api/project', $scope.project)
      .success(function(data, status){
        $modalInstance.dismiss(true);
      })
      .error(function(data){
        console.log(data);
      })
  }
}

これは私のテストです

it('should make a post to /api/project on submit and close the modal on success', function() {
    scope.submit();

    $httpBackend.expectPOST('/api/project').respond(200, 'test');

    $httpBackend.flush();

    expect(modalInstance.dismiss).toHaveBeenCalledWith(true);
  });

表示されるエラーは次のとおりです:

Error: Unexpected request: GET views/appBar.html

views/appBar.html は私のテンプレート URL です:

 .state('project', {
    url: '/',
    templateUrl:'views/appBar.html',
    controller: 'ProjectsCtrl'
  })

つまり、何らかの理由で、ui-router は $httpBackend を、送信関数ではなくこれを指すようにしています。$httpBackend を使用するすべてのテストで同じ問題が発生します。

これに対する解決策はあるでしょうか?

ベストアンサー1

この要点を理解してくださいhttps://gist.github.com/wilsonwc/8358542

angular.module('stateMock',[]);
angular.module('stateMock').service("$state", function($q){
    this.expectedTransitions = [];
    this.transitionTo = function(stateName){
        if(this.expectedTransitions.length > 0){
            var expectedState = this.expectedTransitions.shift();
            if(expectedState !== stateName){
                throw Error("Expected transition to state: " + expectedState + " but transitioned to " + stateName );
            }
        }else{
            throw Error("No more transitions were expected! Tried to transition to "+ stateName );
        }
        console.log("Mock transition to: " + stateName);
        var deferred = $q.defer();
        var promise = deferred.promise;
        deferred.resolve();
        return promise;
    }
    this.go = this.transitionTo;
    this.expectTransitionTo = function(stateName){
        this.expectedTransitions.push(stateName);
    }

    this.ensureAllTransitionsHappened = function(){
        if(this.expectedTransitions.length > 0){
            throw Error("Not all transitions happened!");
        }
    }
});

これを test/mock フォルダー内の stateMock というファイルに追加し、そのファイルがまだ選択されていない場合は karma 構成に含めます。

テスト前のセットアップは次のようになります。

beforeEach(module('stateMock'));

// Initialize the controller and a mock scope
beforeEach(inject(function ($state //other vars as needed) {
    state = $state;
    //initialize other stuff
}

次にテストに以下を追加してください

state.expectTransitionTo('project');

おすすめ記事