我在尝试测试使用 $resource 设置的服务时遇到问题,该服务具有各种方法 GET、PUT、POST。
我在测试中使用 $httpBackend,它在测试 GET 请求时工作正常,但在 PUT/POST 上失败 - 我认为这可能是因为它首先发送了一个 OPTIONS 请求。
奇怪的是,如果我将工厂更改为使用 $http.post() 而不是使用 $resource,则测试可以正常通过。
有谁知道解决这个问题的方法?我可以关闭 OPTIONS 请求吗?或者其他的东西...?
谢谢!
服务
angular.module('myApp')
.factory('Reports', function ($resource, ApiConfig) {
return $resource(ApiConfig.urlBase + "/protected/HttpResource/:id",{},{
update: {method: 'PUT'},
get: {method: 'GET',isArray: true},
search: {method: 'GET',isArray: false},
save: {method: 'POST'}
});
});
ApiConfig.urlBase 在测试中解析为http://localhost:8080/ ...
测试文件
describe("Reports", function() {
beforeEach(module("myApp"));
beforeEach(inject(function(_Reports_, _$httpBackend_, _ApiConfig_) {
Reports = _Reports_;
$httpBackend = _$httpBackend_;
ApiConfig = _ApiConfig_;
}));
afterEach(function() {
$httpBackend.verifyNoOutstandingExpectation();
$httpBackend.verifyNoOutstandingRequest();
});
describe("save method", function() {
var report = {name: "TestReport", type: "HttpResource"};
beforeEach(function() {
url = ApiConfig.urlBase + "/protected/HttpResource/";
$httpBackend.when("POST", url).respond();
});
it("should make POST request when save method called", function() {
$httpBackend.expectPOST(url);
Reports.save(report);
$httpBackend.flush();
});
});
});