@pnp/spfx-controls-react
Version:
Reusable React controls for SharePoint Framework solutions
56 lines • 2.27 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RequestClientMock = void 0;
var tslib_1 = require("tslib");
var sp_http_1 = require("@microsoft/sp-http");
var RequestClientMock = /** @class */ (function (_super) {
tslib_1.__extends(RequestClientMock, _super);
function RequestClientMock() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.Requests = [];
return _this;
}
RequestClientMock.prototype.fetch = function (url, configuration, options) {
var mockedResponse = this.Requests.filter(function (req) { return req.method === options.method && req.url === url; })[0];
var response;
if (mockedResponse) {
response = new Response(mockedResponse.resultString, {
status: 200,
statusText: "Ok"
});
}
else {
response = new Response(null, {
status: 404,
statusText: "Not fount",
});
}
return Promise.resolve(new sp_http_1.SPHttpClientResponse(response));
};
RequestClientMock.prototype.fetchRaw = function (url, configuration, options) {
return this.fetch(url, configuration, options);
};
RequestClientMock.prototype.get = function (url, configuration, options) {
options = options || {};
options.method = "GET";
return this.fetch(url, configuration, options);
};
RequestClientMock.prototype.post = function (url, configuration, options) {
options = options || {};
options.method = "POST";
return this.fetch(url, configuration, options);
};
RequestClientMock.prototype.patch = function (url, configuration, options) {
options = options || {};
options.method = "PATCH";
return this.fetch(url, configuration, options);
};
RequestClientMock.prototype.delete = function (url, configuration, options) {
options = options || {};
options.method = "DELETE";
return this.fetch(url, configuration, options);
};
return RequestClientMock;
}(sp_http_1.SPHttpClient));
exports.RequestClientMock = RequestClientMock;
//# sourceMappingURL=RequestClientMock.js.map