我有一个完美运行的服务(实际上是一个提供者),它在它的 $get 中调用了一个 $resource。尝试对其进行单元测试,我使用 httpBackend 来模拟响应。我将服务注入到我的测试中。资源被调用。我flush() httpBackend,但它没有调用我的成功回调,而是调用了状态为500的错误回调,尽管我指定了状态200。这是为什么?
服务:
angular.module('myApp').provider('myData', function() {
var myData = {empty : true};
var called = false;
var success = false;
var convertDataModel = function(data) {
// asigns data to properties of myData
}
this.$get = ['$resource', function($resource) {
if (!called && !success) {
called = true;
console.log("call resource")
$resource("/path", {}, {}).get({},
function(data, status) { // success
console.log("success!");
success = true;
convertDataModel(data);
myData.empty = false;
},
function() { // error
console.log("error!");
if (!success) {
called = false;
}
});
}
return myData;
}];
});
我的单元测试:
var myData, httpBackend;
beforeEach(function() {
module('myApp');
inject(function ($httpBackend, _myData_) {
myData = _myData_;
httpBackend = $httpBackend;
$httpBackend.expectGET("/path").respond(200, {facts: true});
});
});
it("should get and inject the data model", function() {
expect(myData.empty).toBe(true);
console.log("flush!");
httpBackend.flush();
expect(myData.empty).toBe(false);
expect(myData.facts).toBe(true);
});
最后两个期望失败,并且“错误!” 已记录。我得到一个状态码 500,但我不知道它来自哪里。我指定了 200。我的错误回调确实收到了正确的数据,但状态代码已更改。知道是什么原因造成的,我该如何解决?