Unit Testing AngularJS Controller mit $ httpBackend

Während meines Lebens kann ich $ httpBackend nicht dazu bringen, auf einem Controller zu arbeiten, der eine $ http-Abrufanforderung ausführt. Ich habe es jetzt stundenlang versucht =)

Ich habe dies auf die einfachste Form reduziert, die ich unten finden kann. Der Test besteht, wenn ich

Kommentieren Sie die Anforderung $ http.get () im Controller ausKommentieren Sie im Test "httpMock.flush ()" ausund ändern Sie "Schwein" und "Hund", um zusammenzupassen

Das heißt, es ist ein gültiger, funktionierender Test und eine gültige App.

Wenn ich es wieder einlege, wird der Fehler unten angezeigt.

app / js / app.js

// Declare a module which depends on filters and services.
var myApp = angular
  .module('myApp', ['ngRoute', 'myApp.filters', 'myApp.services',
                              'myApp.directives'])
  .config(['$routeProvider' , function($routeProvider) {

    $routeProvider
      .when("/dashboard", {
        templateUrl: "partials/dashboard.html",
        controller: cDashboard
      })

      .otherwise({redirectTo: "/dashboard"});
  }]);

// Pre-define our main namespace modules.
angular.module('myApp.directives' , []);
angular.module('myApp.filters'    , []);
angular.module('myApp.services'   , []);
angular.module('myApp.controllers', []);

app / js / controller.js

function cDashboard ($scope, $http) {
  $scope.data = "dog";

  // Fetch the actual data.
  $http.get("/data")
    .success(function (data) { $scope.data = data })
    .error(function () {});
}

cDashboard.$inject = [ '$scope', '$http' ];

test / unit / controllerSpec.js

describe('cDashboard', function(){
  var scope, ctrl, httpMock;

  beforeEach(inject(function ($rootScope, $controller, $http, $httpBackend) {
    scope = $rootScope.$new();
    ctrl = $controller('cDashboard', {$scope: scope});

    httpMock = $httpBackend;
    httpMock.when("GET", "/data").respond("pig");
  }));

  it("should get 'pig' from '/data'", function () {
    httpMock.expectGET("/data").respond("pig");
    expect(scope.data).toBe("pig");
  });

});

Und das ist der Fehler, den ich in der Shell bekomme:

INFO [watcher]: Changed file "/home/myApp/test/unit/controller/cDashboard.js".
Chrome 26.0 (Linux) cDashboard should get 'pig' from '/data' FAILED
    Error: No pending request to flush !
        at Error (<anonymous>)
        at Function.$httpBackend.flush (/home/myApp/test/lib/angular/angular-mocks.js:1171:34)
        at null.<anonymous> (/home/myApp/test/unit/controller/cDashboard.js:15:18)
Chrome 26.0 (Linux): Executed 1 of 1 (1 FAILED) (0.326 secs / 0.008 secs)

Antworten auf die Frage(1)

Ihre Antwort auf die Frage