【发布时间】:2016-10-19 20:38:22
【问题描述】:
这个规范通过了,尽管它看起来应该失败。 (代码来自一本关于角度和轨道的书)
这是 Angular 应用程序:
var app = angular.module('customers',[]);
app.controller("CustomerSearchController",
["$scope", "$http", function($scope, $http) {
var page = 0;
$scope.customers = [];
$scope.search = function (searchTerm) {
if (searchTerm.length < 3) {
return;
}
$http.get("/customers.json",
{ "params": { "keywords": searchTerm, "page": page } }
).then(function(response) {
$scope.customers = response.data;
},function(response) {
alert("There was a problem: " + response.status);
}
);
};
}
]);
还有,这里是 Jasmine 规格:
describe("Error Handling", function () {
var scope = null,
controller = null,
httpBackend = null;
beforeEach(module("customers"));
beforeEach(inject(function ($controller, $rootScope, $httpBackend) {
scope = $rootScope.$new();
httpBackend = $httpBackend;
controller = $controller("CustomerSearchController", {
$scope: scope
});
}));
beforeEach(function () {
httpBackend.when('GET', '/customers.json?keywords=bob&page=0').respond(500, 'Internal Server Error');
spyOn(window, "alert");
});
it("alerts the user on an error", function() {
scope.search("bob");
httpBackend.flush();
expect(scope.customers).toEqualData([]);
expect(window.alert).toHaveBeenCalledWith(
"There was a problem: 500");
});
});
我不明白控制器是如何访问 $httpBackend 服务的,它被注入到传递给 beforeEach 方法的匿名函数中。传入了 $scope 服务,但没有传入 httpBackend。
【问题讨论】:
标签: angularjs dependency-injection httpbackend angular-mock