UNPKG

@methodus/platform-rest

Version:

REST plugin for methodus

442 lines 27 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; var __generator = (this && this.__generator) || function (thisArg, body) { var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; function verb(n) { return function (v) { return step([n, v]); }; } function step(op) { if (f) throw new TypeError("Generator is already executing."); while (_) try { if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; if (y = 0, t) op = [op[0] & 2, t.value]; switch (op[0]) { case 0: case 1: t = op; break; case 4: _.label++; return { value: op[1], done: false }; case 5: _.label++; y = op[1]; op = [0]; continue; case 7: op = _.ops.pop(); _.trys.pop(); continue; default: if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } if (t[2]) _.ops.pop(); _.trys.pop(); continue; } op = body.call(thisArg, _); } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; } }; Object.defineProperty(exports, "__esModule", { value: true }); var jest_mock_axios_1 = require("jest-mock-axios"); var web_request_1 = require("../web-request"); var interfaces_1 = require("../interfaces"); var framework_commons_1 = require("@methodus/framework-commons"); var TESTBASE = 'http://jsonplaceholder.typicode.com'; describe('Web request tests for platform-rest', function () { jest.setTimeout(1000 * 30); afterEach(function () { jest_mock_axios_1.default.reset(); jest.clearAllMocks(); }); describe('Test all verbs', function () { it("Simple Get request, no auth, " + TESTBASE + "/posts", function () { return __awaiter(void 0, void 0, void 0, function () { var catchFn, thenFn, request, methodus, requestOptions, response; return __generator(this, function (_a) { switch (_a.label) { case 0: catchFn = jest.fn(), thenFn = jest.fn(); request = new web_request_1.WebRequest(); methodus = { verb: interfaces_1.Verbs.Get, _auth: { type: framework_commons_1.AuthType.None }, route: TESTBASE + "/posts", resolver: TESTBASE }; return [4, request.sendRequest(methodus, TESTBASE + "/posts", [], [])]; case 1: requestOptions = _a.sent(); response = request.send(requestOptions).then(thenFn).catch(catchFn); jest_mock_axios_1.default.mockResponse({ status: 200, data: { key: 2 } }); return [4, response]; case 2: _a.sent(); expect(jest_mock_axios_1.default.request).toHaveBeenCalledTimes(1); expect(jest_mock_axios_1.default.request).toHaveBeenCalledWith(jasmine.objectContaining({ method: 'get', timeout: 300000, url: TESTBASE + "/posts", })); expect(thenFn).toHaveBeenCalledTimes(1); expect(catchFn).toHaveBeenCalledTimes(0); return [2]; } }); }); }); it("Simple Get request, use param variale , " + TESTBASE + "/posts/:postid", function () { return __awaiter(void 0, void 0, void 0, function () { var request, catchFn, thenFn, methodus, requestOptions, response; return __generator(this, function (_a) { switch (_a.label) { case 0: request = new web_request_1.WebRequest(); catchFn = jest.fn(), thenFn = jest.fn(); methodus = { verb: interfaces_1.Verbs.Get, _auth: { type: framework_commons_1.AuthType.None }, route: TESTBASE + "/posts/:postid", resolver: TESTBASE }; return [4, request.sendRequest(methodus, TESTBASE + "/posts/:postid", [1], [{ index: 0, name: 'postid', from: 'params' }])]; case 1: requestOptions = _a.sent(); response = request.send(requestOptions).then(thenFn).catch(catchFn); jest_mock_axios_1.default.mockResponse({ status: 200, data: { key: 2 } }); return [4, response]; case 2: _a.sent(); expect(jest_mock_axios_1.default.request).toHaveBeenCalledWith(jasmine.objectContaining({ method: 'get', timeout: 300000, url: TESTBASE + "/posts/1", })); expect(thenFn).toHaveBeenCalledTimes(1); expect(catchFn).toHaveBeenCalledTimes(0); return [2]; } }); }); }); it("Post request, JSON data " + TESTBASE + "/posts , body is an object", function () { return __awaiter(void 0, void 0, void 0, function () { var catchFn, thenFn, request, methodus, requestOptions, response; return __generator(this, function (_a) { switch (_a.label) { case 0: catchFn = jest.fn(), thenFn = jest.fn(); request = new web_request_1.WebRequest(); methodus = { verb: interfaces_1.Verbs.Post, _auth: { type: framework_commons_1.AuthType.None }, route: TESTBASE + "/posts", resolver: TESTBASE }; return [4, request.sendRequest(methodus, TESTBASE + "/posts/", [{ id: 1, userid: 1 }], [{ index: 0, from: 'body' }])]; case 1: requestOptions = _a.sent(); response = request.send(requestOptions).then(thenFn).catch(catchFn); jest_mock_axios_1.default.mockResponse({ status: 200, data: { key: 2 } }); return [4, response]; case 2: _a.sent(); expect(jest_mock_axios_1.default.request).toHaveBeenCalledWith({ headers: { 'Content-Type': 'application/json' }, method: 'post', timeout: 300000, data: { id: 1, userid: 1, }, url: TESTBASE + "/posts/", }); expect(thenFn).toHaveBeenCalledTimes(1); expect(catchFn).toHaveBeenCalledTimes(0); return [2]; } }); }); }); it("Post request , HTML data " + TESTBASE + "/posts , body is an html", function () { return __awaiter(void 0, void 0, void 0, function () { var catchFn, thenFn, request, methodus, requestOptions, response; return __generator(this, function (_a) { switch (_a.label) { case 0: catchFn = jest.fn(), thenFn = jest.fn(); request = new web_request_1.WebRequest(); methodus = { verb: interfaces_1.Verbs.Post, _auth: { type: framework_commons_1.AuthType.None }, route: TESTBASE + "/posts", resolver: TESTBASE }; return [4, request.sendRequest(methodus, TESTBASE + "/posts/", ["</html></html>"], [{ index: 0, from: 'body' }])]; case 1: requestOptions = _a.sent(); response = request.send(requestOptions).then(thenFn).catch(catchFn); jest_mock_axios_1.default.mockResponse({ status: 200, data: { key: 2 } }); return [4, response]; case 2: _a.sent(); expect(jest_mock_axios_1.default.request).toHaveBeenCalledWith({ headers: { 'Content-Type': 'application/xml' }, method: 'post', timeout: 300000, data: '</html></html>', url: TESTBASE + "/posts/", }); expect(thenFn).toHaveBeenCalledTimes(1); expect(catchFn).toHaveBeenCalledTimes(0); return [2]; } }); }); }); it('Put request, With headers collection', function () { return __awaiter(void 0, void 0, void 0, function () { var catchFn, thenFn, request, methodus, requestOptions, response; return __generator(this, function (_a) { switch (_a.label) { case 0: catchFn = jest.fn(), thenFn = jest.fn(); request = new web_request_1.WebRequest(); methodus = { verb: interfaces_1.Verbs.Put, _auth: { type: framework_commons_1.AuthType.None }, route: TESTBASE + "/posts/:postid", resolver: 'http://www.googl.eomon' }; return [4, request.sendRequest(methodus, TESTBASE + "/posts/:postid", [1, { id: 1, userid: 1 }, { 'Custom-Header': 'none' }], [ { index: 0, name: 'postid', from: 'params' }, { index: 1, from: 'body' }, { index: 2, from: 'headers' }, ])]; case 1: requestOptions = _a.sent(); response = request.send(requestOptions).then(thenFn).catch(catchFn); jest_mock_axios_1.default.mockResponse({ status: 200, data: { key: 2 } }); return [4, response]; case 2: _a.sent(); expect(jest_mock_axios_1.default.request).toHaveBeenCalledWith({ headers: { 'Content-Type': 'application/json', 'Custom-Header': 'none' }, method: 'put', timeout: 300000, data: { id: 1, userid: 1, }, url: TESTBASE + "/posts/1", }); expect(thenFn).toHaveBeenCalledTimes(1); expect(catchFn).toHaveBeenCalledTimes(0); return [2]; } }); }); }); }); describe('Test arguments collections', function () { it('test Request no name collection objects, Query as array', function () { return __awaiter(void 0, void 0, void 0, function () { var catchFn, thenFn, request, methodus, requestOptions, response; return __generator(this, function (_a) { switch (_a.label) { case 0: catchFn = jest.fn(), thenFn = jest.fn(); request = new web_request_1.WebRequest(); methodus = { verb: interfaces_1.Verbs.Post, _auth: { type: framework_commons_1.AuthType.None }, route: TESTBASE + "/posts/:key1/:key2", resolver: TESTBASE }; return [4, request.sendRequest(methodus, TESTBASE + "/posts/:key1/:key2", [{ key1: 'value1', key2: 'value2' }, { key1: 'value1', key2: 'value2' }, [], { key1: ['value1', 'value2', 'value3'] }, { user_id: 'id1' }], [ { index: 0, from: 'params' }, { index: 1, from: 'body' }, { index: 2, from: 'files' }, { index: 3, from: 'query' }, { index: 4, name: 'secure', from: 'security_context' }, ])]; case 1: requestOptions = _a.sent(); response = request.send(requestOptions).then(thenFn).catch(catchFn); jest_mock_axios_1.default.mockResponse({ status: 200, data: { key: 2 } }); return [4, response]; case 2: _a.sent(); expect(jest_mock_axios_1.default.request).toHaveBeenCalledWith({ headers: { 'Content-Type': 'application/json', security_context: JSON.stringify({ user_id: 'id1' }), }, method: 'post', timeout: 300000, data: { key1: 'value1', key2: 'value2', }, url: TESTBASE + "/posts/value1/value2?key1=value1&key1=value2&key1=value3", }); expect(thenFn).toHaveBeenCalledTimes(1); expect(catchFn).toHaveBeenCalledTimes(0); return [2]; } }); }); }); it('test Request no name collection objects, Query as array of Objects', function () { return __awaiter(void 0, void 0, void 0, function () { var catchFn, thenFn, request, methodus, date, requestOptions, response; return __generator(this, function (_a) { switch (_a.label) { case 0: catchFn = jest.fn(), thenFn = jest.fn(); request = new web_request_1.WebRequest(); methodus = { verb: interfaces_1.Verbs.Post, _auth: { type: framework_commons_1.AuthType.None }, route: TESTBASE + "/posts/:key1/:key2", resolver: TESTBASE }; date = new Date(); return [4, request.sendRequest(methodus, TESTBASE + "/posts/:key1/:key2", [{ key1: 'value1', key2: 'value2' }, { key1: 'value1', key2: 'value2' }, [], { key1: [date] }, { user_id: 'id1' }], [ { index: 0, from: 'params' }, { index: 1, from: 'body' }, { index: 2, from: 'files' }, { index: 3, from: 'query' }, { index: 4, name: 'secure', from: 'security_context' }, ])]; case 1: requestOptions = _a.sent(); response = request.send(requestOptions).then(thenFn).catch(catchFn); jest_mock_axios_1.default.mockResponse({ status: 200, data: { key: 2 } }); return [4, response]; case 2: _a.sent(); expect(jest_mock_axios_1.default.request).toHaveBeenCalledWith({ headers: { 'Content-Type': 'application/json', security_context: JSON.stringify({ user_id: 'id1' }) }, method: 'post', timeout: 300000, data: { key1: 'value1', key2: 'value2', }, url: TESTBASE + "/posts/value1/value2?key1=" + encodeURIComponent(JSON.stringify(date)), }); expect(thenFn).toHaveBeenCalledTimes(1); expect(catchFn).toHaveBeenCalledTimes(0); return [2]; } }); }); }); it('test Request no name collection objects, Query as Objects', function () { return __awaiter(void 0, void 0, void 0, function () { var catchFn, thenFn, request, methodus, date, requestOptions, response; return __generator(this, function (_a) { switch (_a.label) { case 0: catchFn = jest.fn(), thenFn = jest.fn(); request = new web_request_1.WebRequest(); methodus = { verb: interfaces_1.Verbs.Post, _auth: { type: framework_commons_1.AuthType.None }, route: TESTBASE + "/posts/:key1/:key2", resolver: TESTBASE }; date = new Date(); return [4, request.sendRequest(methodus, TESTBASE + "/posts/:key1/:key2", [{ key1: 'value1', key2: 'value2' }, { key1: 'value1', key2: 'value2' }, [], { key1: date }, { user_id: 'id1' }], [ { index: 0, from: 'params' }, { index: 1, from: 'body' }, { index: 2, from: 'files' }, { index: 3, from: 'query' }, { index: 4, name: 'secure', from: 'security_context' }, ])]; case 1: requestOptions = _a.sent(); response = request.send(requestOptions).then(thenFn).catch(catchFn); jest_mock_axios_1.default.mockResponse({ status: 200, data: { key: 2 } }); return [4, response]; case 2: _a.sent(); expect(jest_mock_axios_1.default.request).toHaveBeenCalledWith({ headers: { 'Content-Type': 'application/json', security_context: JSON.stringify({ user_id: 'id1' }) }, method: 'post', timeout: 300000, data: { key1: 'value1', key2: 'value2', }, url: TESTBASE + "/posts/value1/value2?key1=" + encodeURIComponent(date.toISOString()), }); expect(thenFn).toHaveBeenCalledTimes(1); expect(catchFn).toHaveBeenCalledTimes(0); return [2]; } }); }); }); it('test Request no name collection objects', function () { return __awaiter(void 0, void 0, void 0, function () { var catchFn, thenFn, request, methodus, requestOptions, response; return __generator(this, function (_a) { switch (_a.label) { case 0: catchFn = jest.fn(), thenFn = jest.fn(); request = new web_request_1.WebRequest(); methodus = { verb: interfaces_1.Verbs.Post, _auth: { type: framework_commons_1.AuthType.None }, route: TESTBASE + "/posts/:key1/:key2", resolver: TESTBASE }; return [4, request.sendRequest(methodus, TESTBASE + "/posts/:key1/:key2", [{ key1: 'value1', key2: 'value2' }, { key1: 'value1', key2: 'value2' }, [], { key1: 'value1', key2: 'value2' }, { user_id: 'id1' }], [ { index: 0, from: 'params' }, { index: 1, from: 'body' }, { index: 2, from: 'files' }, { index: 3, from: 'query' }, { index: 4, name: 'secure', from: 'security_context' }, ])]; case 1: requestOptions = _a.sent(); response = request.send(requestOptions).then(thenFn).catch(catchFn); jest_mock_axios_1.default.mockResponse({ status: 200, data: { key: 2 } }); return [4, response]; case 2: _a.sent(); expect(jest_mock_axios_1.default.request).toHaveBeenCalledWith({ headers: { 'Content-Type': 'application/json', security_context: JSON.stringify({ user_id: 'id1' }) }, method: 'post', timeout: 300000, data: { key1: 'value1', key2: 'value2', }, url: TESTBASE + "/posts/value1/value2?key1=value1&key2=value2", }); expect(thenFn).toHaveBeenCalledTimes(1); expect(catchFn).toHaveBeenCalledTimes(0); return [2]; } }); }); }); it('test Request named collection objects', function () { return __awaiter(void 0, void 0, void 0, function () { var catchFn, thenFn, request, methodus, requestOptions, response; return __generator(this, function (_a) { switch (_a.label) { case 0: catchFn = jest.fn(), thenFn = jest.fn(); request = new web_request_1.WebRequest(); methodus = { verb: interfaces_1.Verbs.Post, _auth: { type: framework_commons_1.AuthType.None }, route: TESTBASE + "/posts/:key1/:key2", resolver: TESTBASE }; return [4, request.sendRequest(methodus, TESTBASE + "/posts/:key1/:key2", ['value1', 'value2', 'value1', 'value2', { user_id: 'id1' }], [ { index: 0, from: 'params', name: 'key1' }, { index: 1, from: 'params', name: 'key2' }, { index: 2, from: 'query', name: 'key1' }, { index: 3, from: 'query', name: 'key2' }, { index: 4, from: 'body', name: 'formData' }, ])]; case 1: requestOptions = _a.sent(); response = request.send(requestOptions).then(thenFn).catch(catchFn); jest_mock_axios_1.default.mockResponse({ status: 200, data: { key: 2 } }); return [4, response]; case 2: _a.sent(); expect(jest_mock_axios_1.default.request).toHaveBeenCalledWith({ headers: { 'Content-Type': 'application/json' }, method: 'post', timeout: 300000, data: { formData: { user_id: 'id1', }, }, url: TESTBASE + "/posts/value1/value2?key1=value1&key2=value2", }); expect(thenFn).toHaveBeenCalledTimes(1); expect(catchFn).toHaveBeenCalledTimes(0); return [2]; } }); }); }); it('test files', function () { return __awaiter(void 0, void 0, void 0, function () { var catchFn, thenFn, request, methodus, requestOptions, response; return __generator(this, function (_a) { switch (_a.label) { case 0: catchFn = jest.fn(), thenFn = jest.fn(); request = new web_request_1.WebRequest(); methodus = { verb: interfaces_1.Verbs.Post, _auth: { type: framework_commons_1.AuthType.None }, route: TESTBASE + "/posts/:key1/:key2", resolver: TESTBASE }; return [4, request.sendRequest(methodus, TESTBASE + "/posts/:key1/:key2", ['value1', 'value2', 'value1', 'value2', { user_id: 'id1' }], [ { index: 0, from: 'params', name: 'key1' }, { index: 1, from: 'params', name: 'key2' }, { index: 2, from: 'query', name: 'key1' }, { index: 3, from: 'query', name: 'key2' }, { index: 4, from: 'body', name: 'formData' }, ])]; case 1: requestOptions = _a.sent(); response = request.send(requestOptions).then(thenFn).catch(catchFn); jest_mock_axios_1.default.mockResponse({ status: 200, data: { key: 2 } }); return [4, response]; case 2: _a.sent(); expect(jest_mock_axios_1.default.request).toHaveBeenCalledWith({ headers: { 'Content-Type': 'application/json' }, method: 'post', timeout: 300000, data: { formData: { user_id: 'id1', }, }, url: TESTBASE + "/posts/value1/value2?key1=value1&key2=value2", }); expect(thenFn).toHaveBeenCalledTimes(1); expect(catchFn).toHaveBeenCalledTimes(0); return [2]; } }); }); }); }); }); //# sourceMappingURL=web-request.spec.js.map