我有一个完美的工作服务(真正的提供商)在$ get中调用$资源。试图对它进行单元测试,我使用httpBackend来模拟响应。我将服务注入我的测试中。资源被调用。我刷新了()httpBackend,但是我没有调用成功的回调函数,而是调用状态为500的erro回调函数,尽管我指定的状态为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.我的错误回调确实收到了正确的数据,但状态代码已更改。知道是什么原因引起的,以及如何解决它?