From 45b35d3433a0673db4b5e15c4dde32315823abec Mon Sep 17 00:00:00 2001 From: 2019UCP1350 <2019UCP1350@mnit.ac.in> Date: Sat, 27 Mar 2021 09:44:26 +0530 Subject: [PATCH 01/13] added new codegenerator for reactjs --- codegens/react-axios/.gitignore | 69 + codegens/react-axios/README.md | 67 + codegens/react-axios/index.js | 1 + codegens/react-axios/lib/axios.js | 227 +++ codegens/react-axios/lib/index.js | 4 + codegens/react-axios/lib/lodash.js | 456 ++++++ codegens/react-axios/lib/parseRequest.js | 198 +++ codegens/react-axios/lib/util.js | 125 ++ codegens/react-axios/npm/test-lint.js | 56 + codegens/react-axios/npm/test-newman.js | 59 + codegens/react-axios/npm/test.js | 19 + codegens/react-axios/package-lock.json | 94 ++ codegens/react-axios/package.json | 37 + codegens/react-axios/run.mjs | 21 + codegens/react-axios/test/.eslintrc | 30 + .../react-axios/test/newman/newman.test.js | 27 + codegens/react-axios/test/unit/.gitkeep | 0 .../fixtures/testcollection/collection.json | 1349 +++++++++++++++++ .../react-axios/test/unit/snippet.test.js | 464 ++++++ .../react-axios/test/unit/validation.test.js | 30 + codegens/react-axios/testfile1.exe | 1 + codegens/react-axios/testfile2.txt | 1 + codegens/react-axios/testfile3.txt | 1 + 23 files changed, 3336 insertions(+) create mode 100644 codegens/react-axios/.gitignore create mode 100644 codegens/react-axios/README.md create mode 100644 codegens/react-axios/index.js create mode 100644 codegens/react-axios/lib/axios.js create mode 100644 codegens/react-axios/lib/index.js create mode 100644 codegens/react-axios/lib/lodash.js create mode 100644 codegens/react-axios/lib/parseRequest.js create mode 100644 codegens/react-axios/lib/util.js create mode 100644 codegens/react-axios/npm/test-lint.js create mode 100644 codegens/react-axios/npm/test-newman.js create mode 100644 codegens/react-axios/npm/test.js create mode 100644 codegens/react-axios/package-lock.json create mode 100644 codegens/react-axios/package.json create mode 100644 codegens/react-axios/run.mjs create mode 100644 codegens/react-axios/test/.eslintrc create mode 100644 codegens/react-axios/test/newman/newman.test.js create mode 100644 codegens/react-axios/test/unit/.gitkeep create mode 100644 codegens/react-axios/test/unit/fixtures/testcollection/collection.json create mode 100644 codegens/react-axios/test/unit/snippet.test.js create mode 100644 codegens/react-axios/test/unit/validation.test.js create mode 100644 codegens/react-axios/testfile1.exe create mode 100644 codegens/react-axios/testfile2.txt create mode 100644 codegens/react-axios/testfile3.txt diff --git a/codegens/react-axios/.gitignore b/codegens/react-axios/.gitignore new file mode 100644 index 000000000..dd41cd99b --- /dev/null +++ b/codegens/react-axios/.gitignore @@ -0,0 +1,69 @@ +.DS_Store +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# temporarily generated file +run.js + +# Prevent IDE stuff +.idea +.vscode +*.sublime-* + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +.coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Typescript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env + +out/ diff --git a/codegens/react-axios/README.md b/codegens/react-axios/README.md new file mode 100644 index 000000000..d4e0b6f20 --- /dev/null +++ b/codegens/react-axios/README.md @@ -0,0 +1,67 @@ +# codegen-nodejs-axios + +> Converts Postman-SDK Request into code snippet for NodeJS-axios. + +#### Prerequisites +To run the module, ensure that you have NodeJS >= v8. A copy of the NodeJS installable can be downloaded from https://nodejs.org/en/download/package-manager. + +## Using the Module +The module will expose an object which will have property `convert` which is the function for converting the Postman-SDK request to nodejs-axios code snippet and `getOptions` function which returns an array of supported options. + +### convert function +Convert function will take three parameters +* `request`- Postman-SDK Request object + +* `options`- options is an object which can have following properties + * `indentType`- String denoting type of indentation for code snippet. eg: 'Space', 'Tab' + * `indentCount`- positiveInteger representing count of indentation required. + * `requestTimeout` : Integer denoting time after which the request will bail out in milli-seconds + * `trimRequestBody` : Trim request body fields + * `followRedirect` : Boolean denoting whether to redirect a request + +* `callback`- callback function with first parameter as error and second parameter as string for code snippet + +##### Example: +```js +var request = new sdk.Request('www.google.com'), //using postman sdk to create request + options = { + indentType: 'Space', + indentCount: 2, + ES6_enabled: true + }; +convert(request, options, function(error, snippet) { + if (error) { + // handle error + } + // handle snippet +}); +``` + +### getOptions function + +This function returns a list of options supported by this codegen. + +#### Example +```js +var options = getOptions(); + +console.log(options); +// output +// [ +// { +// name: 'Set indentation count', +// id: 'indentCount', +// type: 'positiveInteger', +// default: 2, +// description: 'Set the number of indentation characters to add per code level' +// }, +// ... +// ] +``` + +### Guideline for using generated snippet +* Generated snippet requires `axios`, `form-data`, `qs` and `fs` modules. + +* Since Postman-SDK Request object doesn't provide complete path of the file, it needs to be manually inserted in case of uploading a file. + +* This module doesn't support cookies. diff --git a/codegens/react-axios/index.js b/codegens/react-axios/index.js new file mode 100644 index 000000000..bb0a047c4 --- /dev/null +++ b/codegens/react-axios/index.js @@ -0,0 +1 @@ +module.exports = require('./lib'); diff --git a/codegens/react-axios/lib/axios.js b/codegens/react-axios/lib/axios.js new file mode 100644 index 000000000..390287a97 --- /dev/null +++ b/codegens/react-axios/lib/axios.js @@ -0,0 +1,227 @@ +const _ = require('./lodash'); +const parseRequest = require('./parseRequest'); +const sanitize = require('./util').sanitize; +const sanitizeOptions = require('./util').sanitizeOptions; +const addFormParam = require('./util').addFormParam; + +/** + * returns snippet of nodejs(axios) by parsing data from Postman-SDK request object + * + * @param {Object} request - Postman SDK request object + * @param {String} indentString - indentation required for code snippet + * @param {Object} options + * @returns {String} - nodejs(axios) code snippet for given request object + */ +function makeSnippet (request, indentString, options) { + + var snippet ="", + configArray = [], + dataSnippet = '', + body, + headers; + + snippet += 'import axios from \'axios\' ;\n'; + if (request.body && !request.headers.has('Content-Type')) { + if (request.body.mode === 'file') { + request.addHeader({ + key: 'Content-Type', + value: 'text/plain' + }); + } + else if (request.body.mode === 'graphql') { + request.addHeader({ + key: 'Content-Type', + value: 'application/json' + }); + } + } + + // The following code handles multiple files in the same formdata param. + // It removes the form data params where the src property is an array of filepath strings + // Splits that array into different form data params with src set as a single filepath string + if (request.body && request.body.mode === 'formdata') { + let formdata = request.body.formdata, + formdataArray = []; + formdata.members.forEach((param) => { + let key = param.key, + type = param.type, + disabled = param.disabled, + contentType = param.contentType; + // check if type is file or text + if (type === 'file') { + // if src is not of type string we check for array(multiple files) + if (typeof param.src !== 'string') { + // if src is an array(not empty), iterate over it and add files as separate form fields + if (Array.isArray(param.src) && param.src.length) { + param.src.forEach((filePath) => { + addFormParam(formdataArray, key, param.type, filePath, disabled, contentType); + }); + } + // if src is not an array or string, or is an empty array, add a placeholder for file path(no files case) + else { + addFormParam(formdataArray, key, param.type, '/path/to/file', disabled, contentType); + } + } + // if src is string, directly add the param with src as filepath + else { + addFormParam(formdataArray, key, param.type, param.src, disabled, contentType); + } + } + // if type is text, directly add it to formdata array + else { + addFormParam(formdataArray, key, param.type, param.value, disabled, contentType); + } + }); + + request.body.update({ + mode: 'formdata', + formdata: formdataArray + }); + } + + body = request.body && request.body.toJSON(); + + dataSnippet = !_.isEmpty(body) ? parseRequest.parseBody(body, + options.trimRequestBody, + indentString, + request.headers.get('Content-Type'), + options.ES6_enabled) : ''; + snippet += dataSnippet + '\n'; + + configArray.push(indentString + `method: '${request.method.toLowerCase()}'`); + configArray.push(indentString + `url: '${sanitize(request.url.toString())}'`); + + headers = parseRequest.parseHeader(request, indentString); + // https://github.com/axios/axios/issues/789#issuecomment-577177492 + if (!_.isEmpty(body) && body.formdata) { + // we can assume that data object is filled up + headers.push(`${indentString.repeat(2)}...data.getHeaders()`); + } + let headerSnippet = indentString + 'headers: { '; + if (headers.length > 0) { + headerSnippet += '\n'; + headerSnippet += headers.join(', \n') + '\n'; + headerSnippet += indentString + '}'; + } + else { + headerSnippet += '}'; + } + + configArray.push(headerSnippet); + + if (options.requestTimeout) { + configArray.push(indentString + `timeout: ${options.requestTimeout}`); + } + if (options.followRedirect === false) { + // setting the maxRedirects to 0 will disable any redirects. + // by default, maxRedirects are set to 5 + configArray.push(indentString + 'maxRedirects: 0'); + } + if (dataSnippet !== '') { + // although just data is enough, whatever :shrug: + configArray.push(indentString + 'data : data'); + } + snippet+=(options.ES6_enabled?"let":"var"); + snippet += ' config = {\n'; + snippet += configArray.join(',\n') + '\n'; + snippet += '};\n\n'; + snippet+=(options.ES6_enabled?"let":"var"); + snippet+=" Apicall = async ()=>{ \n"; + snippet+=indentString+"try { \n"; + snippet+=indentString+indentString+(options.ES6_enabled?"let":"var")+" response ="; + snippet += 'await axios(config) ;\n'; + snippet += indentString+indentString + 'console.log(JSON.stringify(response.data));\n'; + snippet += indentString+'}catch(err){\n'; + snippet += indentString +indentString+ 'console.log(err);\n'; + snippet += indentString+'};\n'; + snippet+='};\n\n'; + snippet+="Apicall();"; + return snippet; +} + +/** + * Used to get the options specific to this codegen + * + * @returns {Array} - Returns an array of option objects + */ +function getOptions () { + return [ + { + name: 'Set indentation count', + id: 'indentCount', + type: 'positiveInteger', + default: 2, + description: 'Set the number of indentation characters to add per code level' + }, + { + name: 'Set indentation type', + id: 'indentType', + type: 'enum', + availableOptions: ['Tab', 'Space'], + default: 'Space', + description: 'Select the character used to indent lines of code' + }, + { + name: 'Set request timeout', + id: 'requestTimeout', + type: 'positiveInteger', + default: 0, + description: 'Set number of milliseconds the request should wait for a response' + + ' before timing out (use 0 for infinity)' + }, + { + name: 'Follow redirects', + id: 'followRedirect', + type: 'boolean', + default: true, + description: 'Automatically follow HTTP redirects' + }, + { + name: 'Trim request body fields', + id: 'trimRequestBody', + type: 'boolean', + default: false, + description: 'Remove white space and additional lines that may affect the server\'s response' + }, + { + name: 'Enable ES6 features', + id: 'ES6_enabled', + type: 'boolean', + default: false, + description: 'Modifies code snippet to incorporate ES6 (EcmaScript) features' + } + ]; +} + + +/** + * Converts Postman sdk request object to nodejs axios code snippet + * + * @param {Object} request - postman-SDK request object + * @param {Object} options + * @param {String} options.indentType - type for indentation eg: Space, Tab + * @param {String} options.indentCount - number of spaces or tabs for indentation. + * @param {Boolean} options.followRedirect - whether to enable followredirect + * @param {Boolean} options.trimRequestBody - whether to trim fields in request body or not + * @param {Number} options.requestTimeout : time in milli-seconds after which request will bail out + * @param {Function} callback - callback function with parameters (error, snippet) + */ +function convert (request, options, callback) { + if (!_.isFunction(callback)) { + throw new Error('ReactJS-Axios-Converter : callback is not valid function'); + } + options = sanitizeOptions(options, getOptions()); + + // String representing value of indentation required + var indentString; + + indentString = options.indentType === 'Tab' ? '\t' : ' '; + indentString = indentString.repeat(options.indentCount); + + return callback(null, makeSnippet(request, indentString, options)); +} + +module.exports = { + convert: convert, + getOptions: getOptions +}; \ No newline at end of file diff --git a/codegens/react-axios/lib/index.js b/codegens/react-axios/lib/index.js new file mode 100644 index 000000000..3c01771b0 --- /dev/null +++ b/codegens/react-axios/lib/index.js @@ -0,0 +1,4 @@ +module.exports = { + convert: require('./axios').convert, + getOptions: require('./axios').getOptions +}; diff --git a/codegens/react-axios/lib/lodash.js b/codegens/react-axios/lib/lodash.js new file mode 100644 index 000000000..55ea6666d --- /dev/null +++ b/codegens/react-axios/lib/lodash.js @@ -0,0 +1,456 @@ +/* istanbul ignore next */ +module.exports = { + + /** + * Checks if `value` is an empty object, array or string. + * + * Objects are considered empty if they have no own enumerable string keyed + * properties. + * + * Values such as strings, arrays are considered empty if they have a `length` of `0`. + * + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is empty, else `false`. + * @example + * + * isEmpty(null) + * // => true + * + * isEmpty(true) + * // => true + * + * isEmpty(1) + * // => true + * + * isEmpty([1, 2, 3]) + * // => false + * + * isEmpty('abc') + * // => false + * + * isEmpty({ 'a': 1 }) + * // => false + */ + isEmpty: function (value) { + // eslint-disable-next-line lodash/prefer-is-nil + if (value === null || value === undefined) { + return true; + } + if (Array.isArray(value) || typeof value === 'string' || typeof value.splice === 'function') { + return !value.length; + } + + for (const key in value) { + if (Object.prototype.hasOwnProperty.call(value, key)) { + return false; + } + } + + return true; + }, + + /** + * Checks if `value` is `undefined`. + * + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. + * @example + * + * isUndefined(void 0) + * // => true + * + * isUndefined(null) + * // => false + */ + isUndefined: function (value) { + return value === undefined; + }, + + /** + * Checks if `func` is classified as a `Function` object. + * + * @param {*} func The value to check. + * @returns {boolean} Returns `true` if `func` is a function, else `false`. + * @example + * + * isFunction(self.isEmpty) + * // => true + * + * isFunction(/abc/) + * // => false + */ + isFunction: function (func) { + return typeof func === 'function'; + }, + + /** + * Converts the first character of `string` to upper case and the remaining + * to lower case. + * + * @param {string} [string=''] The string to capitalize. + * @returns {string} Returns the capitalized string. + * @example + * + * capitalize('FRED') + * // => 'Fred' + * + * capitalize('john') + * // => 'John' + */ + + capitalize: function (string) { + return string.charAt(0).toUpperCase() + string.slice(1).toLowerCase(); + }, + + /** + * Reduces `array` to a value which is the accumulated result of running + * each element in `array` thru `iteratee`, where each successive + * invocation is supplied the return value of the previous. If `accumulator` + * is not given, the first element of `array` is used as the initial + * value. The iteratee is invoked with four arguments: + * (accumulator, value, index|key, array). + * + * @param {Array} array The Array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @returns {*} Returns the accumulated value. + * @example + * + * reduce([1, 2], (sum, n) => sum + n, 0) + * // => 3 + * + */ + reduce: function (array, iteratee, accumulator) { + return array.reduce(iteratee, accumulator); + }, + + /** + * Iterates over elements of `array`, returning an array of all elements + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index, array). + * + * @param {Array} array The array to iterate over. + * @param {Function|object} predicate The function/object invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @example + * + * const users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false } + * ] + * + * filter(users, ({ active }) => active) + * // => object for ['barney'] + */ + filter: function (array, predicate) { + if (typeof predicate === 'function') { + return array.filter(predicate); + } + var key = Object.keys(predicate), + val = predicate[key], + res = []; + array.forEach(function (item) { + if (item[key] && item[key] === val) { + res.push(item); + } + }); + return res; + }, + + /** + * The opposite of `filter` this method returns the elements of `array` + * that `predicate` does **not** return truthy for. + * + * @param {Array} array collection to iterate over. + * @param {String} predicate The String that needs to have truthy value, invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @example + * + * const users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false } + * ] + * + * reject(users, 'active') + * // => object for ['fred'] + */ + reject: function (array, predicate) { + var res = []; + array.forEach((object) => { + if (!object[predicate]) { + res.push(object); + } + }); + return res; + }, + + /** + * Creates an array of values by running each element of `array` thru `iteratee`. + * The iteratee is invoked with three arguments: (value, index, array). + * + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + * @example + * + * function square(n) { + * return n * n + * } + * + * map([4, 8], square) + * // => [16, 64] + */ + map: function (array, iteratee) { + return array.map(iteratee); + }, + + /** + * Iterates over elements of `collection` and invokes `iteratee` for each element. + * The iteratee is invoked with three arguments: (value, index|key, collection). + * + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @example + * + * forEach([1, 2], value => console.log(value)) + * // => Logs `1` then `2`. + * + * forEach({ 'a': 1, 'b': 2 }, (value, key) => console.log(key)) + * // => Logs 'a' then 'b' + */ + + forEach: function (collection, iteratee) { + if (collection === null) { + return null; + } + + if (Array.isArray(collection)) { + return collection.forEach(iteratee); + } + const iterable = Object(collection), + props = Object.keys(collection); + var index = -1, + key, i; + + for (i = 0; i < props.length; i++) { + key = props[++index]; + iteratee(iterable[key], key, iterable); + } + return collection; + }, + + /** + * Checks if `value` is in `collection`. If `collection` is a string, it's + * checked for a substring of `value`, otherwise it checks if the `value` is present + * as a key in a `collection` object. + * + * @param {Array|Object|string} collection The collection to inspect. + * @param {*} value The value to search for. + * @returns {boolean} Returns `true` if `value` is found, else `false`. + * @example + * + * _.includes([1, 2, 3], 1); + * // => true + * + * _.includes({ 'a': 1, 'b': 2 }, 1); + * // => true + * + * _.includes('abcd', 'bc'); + * // => true + */ + includes: function (collection, value) { + if (Array.isArray(collection) || typeof collection === 'string') { + return collection.includes(value); + } + for (var key in collection) { + if (collection.hasOwnProperty(key)) { + if (collection[key] === value) { + return true; + } + } + } + return false; + }, + + /** + * Gets the size of `collection` by returning its length for array and strings. + * For objects it returns the number of enumerable string keyed + * properties. + * + * @param {Array|Object|string} collection The collection to inspect. + * @returns {number} Returns the collection size. + * @example + * + * size([1, 2, 3]) + * // => 3 + * + * size({ 'a': 1, 'b': 2 }) + * // => 2 + * + * size('pebbles') + * // => 7 + */ + size: function (collection) { + // eslint-disable-next-line lodash/prefer-is-nil + if (collection === null || collection === undefined) { + return 0; + } + if (Array.isArray(collection) || typeof collection === 'string') { + return collection.length; + } + + return Object.keys(collection).length; + }, + + /** + * Converts all elements in `array` into a string separated by `separator`. + * + * @param {Array} array The array to convert. + * @param {string} [separator=','] The element separator. + * @returns {string} Returns the joined string. + * @example + * + * _.join(['a', 'b', 'c'], '~'); + * // => 'a~b~c' + */ + join: function (array, separator) { + if (array === null) { + return ''; + } + return array.join(separator); + }, + + /** + * Removes trailing whitespace or specified characters from `string`. + * + * @param {string} [string=''] The string to trim. + * @param {string} [chars=whitespace] The characters to trim. + * @returns {string} Returns the trimmed string. + * @example + * + * trimEnd(' abc ') + * // => ' abc' + * + * trimEnd('-_-abc-_-', '_-') + * // => '-_-abc' + */ + trimEnd: function (string, chars) { + if (!string) { + return ''; + } + if (string && !chars) { + return string.replace(/\s*$/, ''); + } + chars += '$'; + return string.replace(new RegExp(chars, 'g'), ''); + }, + + /** + * Returns the index of the first + * element `predicate` returns truthy for. + * + * @param {Array} array The array to inspect. + * @param {Object} predicate The exact object to be searched for in the array. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.findIndex(users, { 'user': 'fred', 'active': false }); + * // => 1 + * + * _.findIndex(users, {'active' : false}); + * // => 0 + * + */ + findIndex: function (array, predicate) { + var length = array === null ? 0 : array.length, + index = -1, + keys = Object.keys(predicate), + found, i; + if (!length) { + return -1; + } + for (i = 0; i < array.length; i++) { + found = true; + // eslint-disable-next-line no-loop-func + keys.forEach((key) => { + if (!(array[i][key] && array[i][key] === predicate[key])) { + found = false; + } + }); + if (found) { + index = i; + break; + } + } + return index; + }, + + /** + * Gets the value at `path` of `object`. If the resolved value is + * `undefined`, the `defaultValue` is returned in its place. + * + * @param {Object} object The object to query. + * @param {string} path The path of the property to get. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * const object = { a: {b : 'c'} } + * + * + * get(object, 'a.b.c', 'default') + * // => 'default' + * + * get(object, 'a.b', 'default') + * // => 'c' + */ + get: function (object, path, defaultValue) { + if (object === null) { + return undefined; + } + var arr = path.split('.'), + res = object, + i; + for (i = 0; i < arr.length; i++) { + res = res[arr[i]]; + if (res === undefined) { + return defaultValue; + } + } + return res; + }, + + /** + * Checks if `predicate` returns truthy for **all** elements of `array`. + * Iteration is stopped once `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index, array). + * + * @param {Array} array The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + * @example + * + * every([true, 1, null, 'yes'], Boolean) + * // => false + */ + every: function (array, predicate) { + var index = -1, + length = array === null ? 0 : array.length; + + while (++index < length) { + if (!predicate(array[index], index, array)) { + return false; + } + } + return true; + } + +}; diff --git a/codegens/react-axios/lib/parseRequest.js b/codegens/react-axios/lib/parseRequest.js new file mode 100644 index 000000000..a02889b0a --- /dev/null +++ b/codegens/react-axios/lib/parseRequest.js @@ -0,0 +1,198 @@ +var _ = require('./lodash'); +var sanitize = require('./util').sanitize; + +/** + * Parses URLEncoded body from request to axios syntax + * + * @param {Object} body URLEncoded Body + * @param {boolean} trim trim body option + * @param {boolean} ES6_enabled ES6 syntax option + * @param {string} indentString The indentation string + */ +function parseURLEncodedBody (body, trim, ES6_enabled, indentString) { + var bodySnippet ='import qs from \'qs\' ;\n', + dataArray = []; + + _.forEach(body, function (data) { + if (!data.disabled) { + dataArray.push(`'${sanitize(data.key, trim)}': '${sanitize(data.value, trim)}'`); + } + }); + bodySnippet+=(ES6_enabled?'let':'var'); + bodySnippet += ` data = qs.stringify({\n${indentString}${dataArray.join(',\n'+indentString)} \n});`; + return bodySnippet; +} + +/** + * Parses Formdata from request to axios syntax + * + * @param {Object} body FormData body + * @param {boolean} trim trim body option + * @param {boolean} ES6_enabled ES6 syntax option + */ +function parseFormData (body, trim, ES6_enabled) { + + var bodySnippet ='import FormData from \'form-data\' ;\n'; + // check if there's file + const fileArray = body.filter(function (item) { return !item.disabled && item.type === 'file'; }); + if (fileArray.length > 0) { + bodySnippet +='import fs from \'fs\' ;\n'; + } + bodySnippet+=(ES6_enabled?'let':'var'); + bodySnippet += ' data = new FormData();\n'; + + _.forEach(body, function (data) { + if (!data.disabled) { + if (data.type === 'file') { + var fileContent = `fs.createReadStream('${data.src}')`; + bodySnippet += `data.append('${sanitize(data.key, trim)}', ${fileContent});\n`; + }else { + bodySnippet += `data.append('${sanitize(data.key, trim)}', '${sanitize(data.value, trim)}'`; + if (data.contentType) { + bodySnippet += `, {contentType: '${sanitize(data.contentType, trim)}'}`; + } + bodySnippet += ');\n'; + } + } + }); + return bodySnippet; +} + +/** + * Parses Raw data to axios syntax + * + * @param {Object} body Raw body data + * @param {boolean} trim trim body option + * @param {String} contentType Content type of the body being sent + * @param {boolean} ES6_enabled ES6 syntax option + * @param {String} indentString Indentation string + */ +function parseRawBody (body, trim, contentType, ES6_enabled, indentString) { + var varDeclare = ES6_enabled ? 'let' : 'var', + bodySnippet = varDeclare + ' data = '; + // Match any application type whose underlying structure is json + // For example application/vnd.api+json + // All of them have +json as suffix + if (contentType && (contentType === 'application/json' || contentType.match(/\+json$/))) { + try { + let jsonBody = JSON.parse(body); + bodySnippet += `JSON.stringify(${JSON.stringify(jsonBody, null, indentString.length)});\n`; + } + catch (error) { + bodySnippet += `'${sanitize(body.toString(), trim)}';\n`; + } + } + else { + bodySnippet += `'${sanitize(body.toString(), trim)}';\n`; + } + return bodySnippet; +} + +/** + * Parses graphql data to axios syntax + * + * @param {Object} body graphql body data + * @param {boolean} trim trim body option + * @param {String} indentString indentation to be added to the snippet + * @param {boolean} ES6_enabled ES6 syntax option + */ +function parseGraphQL (body, trim, indentString, ES6_enabled) { + var varDeclare = ES6_enabled ? 'let' : 'var'; + let query = body.query, + graphqlVariables, + bodySnippet; + try { + graphqlVariables = JSON.parse(body.variables); + } + catch (e) { + graphqlVariables = {}; + } + bodySnippet = varDeclare + ' data = JSON.stringify({\n'; + bodySnippet += `${indentString}query: \`${query.trim()}\`,\n`; + bodySnippet += `${indentString}variables: ${JSON.stringify(graphqlVariables)}\n});\n`; + return bodySnippet; +} + + +/* istanbul ignore next */ +/** + * parses binamry file data + * + * @param {boolean} ES6_enabled ES6 syntax option + */ +function parseFileData (ES6_enabled) { + var varDeclare = ES6_enabled ? 'let' : 'var', + bodySnippet = varDeclare + ' data = \'\';\n'; + return bodySnippet; +} + +/** + * Parses Body from the Request + * + * @param {Object} body body object from request. + * @param {boolean} trim trim body option + * @param {String} indentString indentation to be added to the snippet + * @param {String} contentType Content type of the body being sent + * @param {boolean} ES6_enabled ES6 syntax option + */ +function parseBody (body, trim, indentString, contentType, ES6_enabled) { + if (!_.isEmpty(body)) { + switch (body.mode) { + case 'urlencoded': + return parseURLEncodedBody(body.urlencoded, trim, ES6_enabled, indentString); + case 'raw': + return parseRawBody(body.raw, trim, contentType, ES6_enabled, indentString); + case 'graphql': + return parseGraphQL(body.graphql, trim, indentString, ES6_enabled); + case 'formdata': + return parseFormData(body.formdata, trim, ES6_enabled); + /* istanbul ignore next */ + case 'file': + return parseFileData(ES6_enabled); + default: + return parseRawBody(body[body.mode], trim, contentType, ES6_enabled); + } + } + return ''; +} + + +/** + * parses header of request object and returns code snippet of nodejs axios to add headers + * + * @param {Object} request - Postman SDK request object + * @param {String} indentString - indentation required in code snippet + * @returns {String} - code snippet of nodejs request to add header + */ +function parseHeader (request, indentString) { + var headerObject = request.getHeaders({enabled: true}), + headerArray = []; + + if (!_.isEmpty(headerObject)) { + headerArray = _.reduce(Object.keys(headerObject), function (accumalator, key) { + if (Array.isArray(headerObject[key])) { + var headerValues = []; + _.forEach(headerObject[key], (value) => { + headerValues.push(`${sanitize(value)}`); + }); + accumalator.push( + indentString.repeat(2) + `'${sanitize(key, true)}': '${headerValues.join(', ')}'` + ); + } + else { + accumalator.push( + indentString.repeat(2) + `'${sanitize(key, true)}': '${sanitize(headerObject[key])}'` + ); + } + return accumalator; + }, []); + } + + return headerArray; +} + +module.exports = { + parseBody: parseBody, + parseHeader: parseHeader, + parseFormData: parseFormData +}; \ No newline at end of file diff --git a/codegens/react-axios/lib/util.js b/codegens/react-axios/lib/util.js new file mode 100644 index 000000000..689e6970d --- /dev/null +++ b/codegens/react-axios/lib/util.js @@ -0,0 +1,125 @@ + +/** + * sanitizes input string by handling escape characters eg: converts '''' to '\'\'' + * and trim input if required + * + * @param {String} inputString + * @param {Boolean} [trim] - indicates whether to trim string or not + * @returns {String} + */ +function sanitize (inputString, trim) { + if (typeof inputString !== 'string') { + return ''; + } + (trim) && (inputString = inputString.trim()); + return inputString.replace(/\\/g, '\\\\').replace(/'/g, '\\\'') + .replace(/\n/g, '\\n') + .replace(/\r/g, '\\r') + .replace(/\t/g, '\\t'); +} + +/** + * sanitizes input options + * + * @param {Object} options - Options provided by the user + * @param {Array} optionsArray - options array received from getOptions function + * + * @returns {Object} - Sanitized options object + */ +function sanitizeOptions (options, optionsArray) { + var result = {}, + defaultOptions = {}, + id; + optionsArray.forEach((option) => { + defaultOptions[option.id] = { + default: option.default, + type: option.type + }; + if (option.type === 'enum') { + defaultOptions[option.id].availableOptions = option.availableOptions; + } + }); + + for (id in options) { + if (options.hasOwnProperty(id)) { + if (defaultOptions[id] === undefined) { + continue; + } + switch (defaultOptions[id].type) { + case 'boolean': + if (typeof options[id] !== 'boolean') { + result[id] = defaultOptions[id].default; + } + else { + result[id] = options[id]; + } + break; + case 'positiveInteger': + if (typeof options[id] !== 'number' || options[id] < 0) { + result[id] = defaultOptions[id].default; + } + else { + result[id] = options[id]; + } + break; + case 'enum': + if (!defaultOptions[id].availableOptions.includes(options[id])) { + result[id] = defaultOptions[id].default; + } + else { + result[id] = options[id]; + } + break; + default: + result[id] = options[id]; + } + } + } + + for (id in defaultOptions) { + if (defaultOptions.hasOwnProperty(id)) { + if (result[id] === undefined) { + result[id] = defaultOptions[id].default; + } + } + } + return result; +} + +/** + * + * @param {Array} array - form data array + * @param {String} key - key of form data param + * @param {String} type - type of form data param(file/text) + * @param {String} val - value/src property of form data param + * @param {String} disabled - Boolean denoting whether the param is disabled or not + * @param {String} contentType - content type header of the param + * + * Appends a single param to form data array + */ +function addFormParam (array, key, type, val, disabled, contentType) { + if (type === 'file') { + array.push({ + key: key, + type: type, + src: val, + disabled: disabled, + contentType: contentType + }); + } + else { + array.push({ + key: key, + type: type, + value: val, + disabled: disabled, + contentType: contentType + }); + } +} + +module.exports = { + sanitize: sanitize, + sanitizeOptions: sanitizeOptions, + addFormParam: addFormParam +}; diff --git a/codegens/react-axios/npm/test-lint.js b/codegens/react-axios/npm/test-lint.js new file mode 100644 index 000000000..f21f88e76 --- /dev/null +++ b/codegens/react-axios/npm/test-lint.js @@ -0,0 +1,56 @@ +#!/usr/bin/env node +var shell = require('shelljs'), + chalk = require('chalk'), + async = require('async'), + ESLintCLIEngine = require('eslint').CLIEngine, + + /** + * The list of source code files / directories to be linted. + * + * @type {Array} + */ + LINT_SOURCE_DIRS = [ + './lib', + './test', + './npm/*.js', + './index.js' + ]; + +module.exports = function (exit) { + // banner line + console.info(chalk.yellow.bold('\nLinting files using eslint...')); + + async.waterfall([ + + /** + * Instantiates an ESLint CLI engine and runs it in the scope defined within LINT_SOURCE_DIRS. + * + * @param {Function} next - The callback function whose invocation marks the end of the lint test run. + * @returns {*} + */ + function (next) { + next(null, (new ESLintCLIEngine({fix:true})).executeOnFiles(LINT_SOURCE_DIRS)); + }, + + /** + * Processes a test report from the Lint test runner, and displays meaningful results. + * + * @param {Object} report - The overall test report for the current lint test. + * @param {Object} report.results - The set of test results for the current lint run. + * @param {Function} next - The callback whose invocation marks the completion of the post run tasks. + * @returns {*} + */ + function (report, next) { + var errorReport = ESLintCLIEngine.getErrorResults(report.results); + // log the result to CLI + console.info(ESLintCLIEngine.getFormatter()(report.results)); + // log the success of the parser if it has no errors + (errorReport && !errorReport.length) && console.info(chalk.green('eslint ok!')); + // ensure that the exit code is non zero in case there was an error + next(Number(errorReport && errorReport.length) || 0); + } + ], exit); +}; + +// ensure we run this script exports if this is a direct stdin.tty run +!module.parent && module.exports(shell.exit); diff --git a/codegens/react-axios/npm/test-newman.js b/codegens/react-axios/npm/test-newman.js new file mode 100644 index 000000000..0c8559a8e --- /dev/null +++ b/codegens/react-axios/npm/test-newman.js @@ -0,0 +1,59 @@ +#!/usr/bin/env node +/* eslint-env node, es6 */ +// --------------------------------------------------------------------------------------------------------------------- +// This script is intended to execute all unit tests. +// --------------------------------------------------------------------------------------------------------------------- + +var shell = require('shelljs'), + + // set directories and files for test and coverage report + path = require('path'), + + NYC = require('nyc'), + chalk = require('chalk'), + recursive = require('recursive-readdir'), + + COV_REPORT_PATH = '.coverage', + SPEC_SOURCE_DIR = path.join(__dirname, '..', 'test', 'newman'); + +module.exports = function (exit) { + // banner line + console.info(chalk.yellow.bold('Running newman tests using mocha on node...')); + + shell.test('-d', COV_REPORT_PATH) && shell.rm('-rf', COV_REPORT_PATH); + shell.mkdir('-p', COV_REPORT_PATH); + + var Mocha = require('mocha'), + nyc = new NYC({ + reportDir: COV_REPORT_PATH, + tempDirectory: COV_REPORT_PATH, + reporter: ['text', 'lcov', 'text-summary'], + exclude: ['config', 'test'], + hookRunInContext: true, + hookRunInThisContext: true + }); + + nyc.wrap(); + // add all spec files to mocha + recursive(SPEC_SOURCE_DIR, function (err, files) { + if (err) { console.error(err); return exit(1); } + + var mocha = new Mocha({ timeout: 1000 * 60 }); + + files.filter(function (file) { // extract all test files + return (file.substr(-8) === '.test.js'); + }).forEach(mocha.addFile.bind(mocha)); + + mocha.run(function (runError) { + runError && console.error(runError.stack || runError); + + nyc.reset(); + nyc.writeCoverageFile(); + nyc.report(); + exit(runError ? 1 : 0); + }); + }); +}; + +// ensure we run this script exports if this is a direct stdin.tty run +!module.parent && module.exports(shell.exit); diff --git a/codegens/react-axios/npm/test.js b/codegens/react-axios/npm/test.js new file mode 100644 index 000000000..ee0be8b7d --- /dev/null +++ b/codegens/react-axios/npm/test.js @@ -0,0 +1,19 @@ +#!/usr/bin/env node +var chalk = require('chalk'), + exit = require('shelljs').exit, + prettyms = require('pretty-ms'), + startedAt = Date.now(), + name = require('../package.json').name; + +require('async').series([ + require('./test-lint'), + require('./test-newman') + // Add a separate folder for every new suite of tests + // require('./test-unit') + // require('./test-browser') + // require('./test-integration') +], function (code) { + // eslint-disable-next-line max-len + console.info(chalk[code ? 'red' : 'green'](`\n${name}: duration ${prettyms(Date.now() - startedAt)}\n${name}: ${code ? 'not ok' : 'ok'}!`)); + exit(code && (typeof code === 'number' ? code : 1) || 0); +}); diff --git a/codegens/react-axios/package-lock.json b/codegens/react-axios/package-lock.json new file mode 100644 index 000000000..47a75bcbd --- /dev/null +++ b/codegens/react-axios/package-lock.json @@ -0,0 +1,94 @@ +{ + "name": "@postman/codegen-reactjs-axios", + "version": "0.0.1", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "axios": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz", + "integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==", + "dev": true, + "requires": { + "follow-redirects": "1.5.10" + } + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "follow-redirects": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", + "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", + "dev": true, + "requires": { + "debug": "=3.1.0" + } + }, + "form-data": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.0.tgz", + "integrity": "sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "mime-db": { + "version": "1.43.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz", + "integrity": "sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==", + "dev": true + }, + "mime-types": { + "version": "2.1.26", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz", + "integrity": "sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==", + "dev": true, + "requires": { + "mime-db": "1.43.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "qs": { + "version": "6.9.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.2.tgz", + "integrity": "sha512-2eQ6zajpK7HwqrY1rRtGw5IZvjgtELXzJECaEDuzDFo2jjnIXpJSimzd4qflWZq6bLLi+Zgfj5eDrAzl/lptyg==", + "dev": true + } + } +} diff --git a/codegens/react-axios/package.json b/codegens/react-axios/package.json new file mode 100644 index 000000000..67cad5515 --- /dev/null +++ b/codegens/react-axios/package.json @@ -0,0 +1,37 @@ +{ + "name": "@postman/codegen-reactjs-axios", + "version": "0.0.1", + "description": "Converts Postman-SDK Request into code snippet for ReactJS(Axios)", + "com_postman_plugin": { + "type": "code_generator", + "lang": "reactjs", + "variant": "Axios", + "syntax_mode": "javascript" + }, + "main": "index.js", + "directories": { + "lib": "lib", + "test": "test" + }, + "scripts": { + "test": "node npm/test.js", + "test-lint": "node npm/test-lint.js", + "test-newman": "node npm/test-newman.js" + }, + "repository": { + "type": "git", + "url": "" + }, + "author": "Postman Labs ", + "license": "Apache-2.0", + "homepage": "https://github.com/postmanlabs/code-generators/tree/master/codegens/reactjs-axios", + "dependencies": {}, + "devDependencies": { + "axios": "0.19.2", + "form-data": "3.0.0", + "qs": "6.9.2" + }, + "engines": { + "node": ">=8" + } +} diff --git a/codegens/react-axios/run.mjs b/codegens/react-axios/run.mjs new file mode 100644 index 000000000..9b013d5e1 --- /dev/null +++ b/codegens/react-axios/run.mjs @@ -0,0 +1,21 @@ +/* eslint-disable */ +import axios from 'axios' ; + +let config = { + method: 'get', + url: 'https://postman-echo.com/get', + headers: { + 'key': 'value1, value2' + } +}; + +let Apicall = async ()=>{ + try { + let response =await axios(config) ; + console.log(JSON.stringify(response.data)); + }catch(err){ + console.log(err); + }; +}; + +Apicall(); \ No newline at end of file diff --git a/codegens/react-axios/test/.eslintrc b/codegens/react-axios/test/.eslintrc new file mode 100644 index 000000000..f0fefbaea --- /dev/null +++ b/codegens/react-axios/test/.eslintrc @@ -0,0 +1,30 @@ +{ + "plugins": [ + "mocha" + ], + "env": { + "mocha": true, + "node": true, + "es6": true + }, + "rules": { + // Mocha + "mocha/handle-done-callback": "error", + "mocha/max-top-level-suites": "error", + // "mocha/no-exclusive-tests": "error", + "mocha/no-global-tests": "error", + "mocha/no-hooks-for-single-case": "off", + "mocha/no-hooks": "off", + "mocha/no-identical-title": "error", + "mocha/no-mocha-arrows": "error", + "mocha/no-nested-tests": "error", + "mocha/no-pending-tests": "error", + "mocha/no-return-and-callback": "error", + "mocha/no-sibling-hooks": "error", + "mocha/no-skipped-tests": "warn", + "mocha/no-synchronous-tests": "off", + "mocha/no-top-level-hooks": "warn", + "mocha/valid-test-description": "off", + "mocha/valid-suite-description": "off" + } +} diff --git a/codegens/react-axios/test/newman/newman.test.js b/codegens/react-axios/test/newman/newman.test.js new file mode 100644 index 000000000..2763efee8 --- /dev/null +++ b/codegens/react-axios/test/newman/newman.test.js @@ -0,0 +1,27 @@ +var runNewmanTest = require('../../../../test/codegen/newman/newmanTestUtil').runNewmanTest, + convert = require('../../lib/index').convert; + +describe('Convert for different types of request', function () { + var options = {indentCount: 2, indentType: 'Space'}, + testConfig = { + compileScript: null, + runScript: 'node run.mjs', + fileName: 'run.mjs', + headerSnippet: '/* eslint-disable */\n' + }; + + runNewmanTest(convert, options, testConfig); + + describe('Convert for request incorporating ES6 features', function () { + var options = {indentCount: 2, indentType: 'Space', ES6_enabled: true}, + testConfig = { + compileScript: null, + runScript: 'node run.mjs', + fileName: 'run.mjs', + headerSnippet: '/* eslint-disable */\n' + }; + + runNewmanTest(convert, options, testConfig); + }); + +}); diff --git a/codegens/react-axios/test/unit/.gitkeep b/codegens/react-axios/test/unit/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/codegens/react-axios/test/unit/fixtures/testcollection/collection.json b/codegens/react-axios/test/unit/fixtures/testcollection/collection.json new file mode 100644 index 000000000..186aa9ce5 --- /dev/null +++ b/codegens/react-axios/test/unit/fixtures/testcollection/collection.json @@ -0,0 +1,1349 @@ +{ + "info": { + "name": "Code-Gen Test Cases", + "_postman_id": "41182fad-912e-6bc9-d6b9-dfb6f5bf5ffb", + "description": "This collection contains requests that will be used to test validity of plugin created to convert postman request into code snippet of particular language.", + "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" + }, + "item": [ + { + "name": "Request Headers with disabled headers", + "event": [ + { + "listen": "test", + "script": { + "type": "text/javascript", + "exec": [ + "var responseJSON;", + "try {", + " tests[\"Body contains headers\"] = responseBody.has(\"headers\");", + " responseJSON = JSON.parse(responseBody);", + " tests[\"Header contains host\"] = \"host\" in responseJSON.headers;", + " tests[\"Header contains test parameter sent as part of request header\"] = \"my-sample-header\" in responseJSON.headers;", + "}", + "catch (e) { }", + "", + "", + "", + "" + ] + } + } + ], + "request": { + "method": "GET", + "header": [ + { + "key": "my-sample-header", + "value": "Lorem ipsum dolor sit amet" + }, + { + "key": "not-disabled-header", + "value": "ENABLED" + }, + { + "key": "disabled header", + "value": "DISABLED", + "disabled": true + } + ], + "body": {}, + "url": { + "raw": "https://postman-echo.com/headers", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "headers" + ] + }, + "description": "A `GET` request to this endpoint returns the list of all request headers as part of the response JSON.\nIn Postman, sending your own set of headers through the [Headers tab](https://www.getpostman.com/docs/requests#headers?source=echo-collection-app-onboarding) will reveal the headers as part of the response." + }, + "response": [] + }, + { + "name": "GET Request with disabled query", + "event": [ + { + "listen": "test", + "script": { + "type": "text/javascript", + "exec": [ + "var responseJSON;", + "", + "try { ", + " responseJSON = JSON.parse(responseBody); ", + " tests['response is valid JSON'] = true;", + "}", + "catch (e) { ", + " responseJSON = {}; ", + " tests['response is valid JSON'] = false;", + "}", + "", + "tests['response json contains headers'] = _.has(responseJSON, 'headers');", + "tests['response json contains args'] = _.has(responseJSON, 'args');", + "tests['response json contains url'] = _.has(responseJSON, 'url');", + "", + "tests['args key contains argument passed as url parameter'] = ('test' in responseJSON.args);", + "tests['args passed via request url params has value \"123\"'] = (_.get(responseJSON, 'args.test') === \"123\");" + ] + } + } + ], + "request": { + "method": "GET", + "header": [], + "body": {}, + "url": { + "raw": "https://postman-echo.com/get?test=123&anotherone=232", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "get" + ], + "query": [ + { + "key": "test", + "value": "123", + "equals": true + }, + { + "key": "anotherone", + "value": "232", + "equals": true + }, + { + "key": "anotheroneone", + "value": "sdfsdf", + "equals": true, + "disabled": true + } + ] + }, + "description": "The HTTP `GET` request method is meant to retrieve data from a server. The data\nis identified by a unique URI (Uniform Resource Identifier). \n\nA `GET` request can pass parameters to the server using \"Query String \nParameters\". For example, in the following request,\n\n> http://example.com/hi/there?hand=wave\n\nThe parameter \"hand\" has the value \"wave\".\n\nThis endpoint echoes the HTTP headers, request parameters and the complete\nURI requested." + }, + "response": [] + }, + { + "name": "POST Raw Text", + "event": [ + { + "listen": "test", + "script": { + "id": "753f8a33-adb6-402f-8d19-386c1981ecb6", + "type": "text/javascript", + "exec": [ + "var responseJSON;", + "", + "try { ", + " responseJSON = JSON.parse(responseBody); ", + " tests['response is valid JSON'] = true;", + "}", + "catch (e) { ", + " responseJSON = {}; ", + " tests['response is valid JSON'] = false;", + "}", + "", + "", + "tests['response has post data'] = _.has(responseJSON, 'data');", + "tests['response matches the data posted'] = (responseJSON.data && responseJSON.data.length === 256);", + "", + "tests[\"content-type equals text/plain\"] = responseJSON && responseJSON.headers && (responseJSON.headers[\"content-type\"] === 'text/plain');" + ] + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + } + ], + "body": { + "mode": "raw", + "raw": "\"'Duis posuere augue vel cursus pharetra. In luctus a ex nec pretium. Praesent neque quam, tincidunt nec leo eget, rutrum vehicula magna.\nMaecenas consequat elementum elit, \"id\" \"se\\\"mper\" sem tristique et. Integer pulvinar enim quis consectetur interdum volutpat.'\"" + }, + "url": { + "raw": "https://postman-echo.com/post", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "post" + ] + }, + "description": "The HTTP `POST` request method is meant to transfer data to a server \n(and elicit a response). What data is returned depends on the implementation\nof the server.\n\nA `POST` request can pass parameters to the server using \"Query String \nParameters\", as well as the Request Body. For example, in the following request,\n\n> POST /hi/there?hand=wave\n>\n> \n\nThe parameter \"hand\" has the value \"wave\". The request body can be in multiple\nformats. These formats are defined by the MIME type of the request. The MIME \nType can be set using the ``Content-Type`` HTTP header. The most commonly used \nMIME types are:\n\n* `multipart/form-data`\n* `application/x-www-form-urlencoded`\n* `application/json`\n\nThis endpoint echoes the HTTP headers, request parameters, the contents of\nthe request body and the complete URI requested." + }, + "response": [] + }, + { + "name": "POST form data with file", + "event": [ + { + "listen": "test", + "script": { + "type": "text/javascript", + "exec": [ + "var responseJSON;", + "", + "try { ", + " responseJSON = JSON.parse(responseBody); ", + " tests['response is valid JSON'] = true;", + "}", + "catch (e) { ", + " responseJSON = {}; ", + " tests['response is valid JSON'] = false;", + "}", + "", + "", + "tests['response has post data'] = _.has(responseJSON, 'data');", + "tests['response matches the data posted'] = (responseJSON.data && responseJSON.data.length === 256);", + "", + "tests[\"content-type equals text/plain\"] = responseJSON && responseJSON.headers && (responseJSON.headers[\"content-type\"] === 'text/plain');" + ] + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded", + "disabled": true + }, + { + "key": "content-type", + "value": "application/json", + "disabled": true + } + ], + "body": { + "mode": "formdata", + "formdata": [ + { + "key": "fdjks", + "value": "dsf", + "type": "text" + }, + { + "key": "sdf", + "value": "helo", + "type": "text" + }, + { + "key": "12", + "value": "\"23\"", + "description": "", + "type": "text" + }, + { + "key": "'123'", + "value": "'\"23\\\"4\\\"\"'", + "description": "", + "type": "text" + }, + { + "key": "", + "value": "", + "description": "", + "type": "text", + "disabled": true + } + ] + }, + "url": { + "raw": "https://postman-echo.com/post", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "post" + ] + }, + "description": "The HTTP `POST` request method is meant to transfer data to a server \n(and elicit a response). What data is returned depends on the implementation\nof the server.\n\nA `POST` request can pass parameters to the server using \"Query String \nParameters\", as well as the Request Body. For example, in the following request,\n\n> POST /hi/there?hand=wave\n>\n> \n\nThe parameter \"hand\" has the value \"wave\". The request body can be in multiple\nformats. These formats are defined by the MIME type of the request. The MIME \nType can be set using the ``Content-Type`` HTTP header. The most commonly used \nMIME types are:\n\n* `multipart/form-data`\n* `application/x-www-form-urlencoded`\n* `application/json`\n\nThis endpoint echoes the HTTP headers, request parameters, the contents of\nthe request body and the complete URI requested." + }, + "response": [] + }, + { + "name": "POST urlencoded data with disabled entries", + "event": [ + { + "listen": "test", + "script": { + "type": "text/javascript", + "exec": [ + "var responseJSON;", + "", + "try { ", + " responseJSON = JSON.parse(responseBody); ", + " tests['response is valid JSON'] = true;", + "}", + "catch (e) { ", + " responseJSON = {}; ", + " tests['response is valid JSON'] = false;", + "}", + "", + "", + "tests['response has post data'] = _.has(responseJSON, 'data');", + "tests['response matches the data posted'] = (responseJSON.data && responseJSON.data.length === 256);", + "", + "tests[\"content-type equals text/plain\"] = responseJSON && responseJSON.headers && (responseJSON.headers[\"content-type\"] === 'text/plain');" + ] + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "1", + "value": "a", + "description": "", + "type": "text" + }, + { + "key": "2", + "value": "b", + "description": "", + "type": "text" + }, + { + "key": "\"\"12\"\"", + "value": "\"23\"", + "description": "", + "type": "text" + }, + { + "key": "'1\"2\\\"\"3'", + "value": "'1\"23\"4'", + "description": "", + "type": "text" + } + ] + }, + "url": { + "raw": "https://postman-echo.com/post/?hardik=\"me\"", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "post", + "" + ], + "query": [ + { + "key": "hardik", + "value": "\"me\"", + "equals": true + } + ] + }, + "description": "The HTTP `POST` request method is meant to transfer data to a server \n(and elicit a response). What data is returned depends on the implementation\nof the server.\n\nA `POST` request can pass parameters to the server using \"Query String \nParameters\", as well as the Request Body. For example, in the following request,\n\n> POST /hi/there?hand=wave\n>\n> \n\nThe parameter \"hand\" has the value \"wave\". The request body can be in multiple\nformats. These formats are defined by the MIME type of the request. The MIME \nType can be set using the ``Content-Type`` HTTP header. The most commonly used \nMIME types are:\n\n* `multipart/form-data`\n* `application/x-www-form-urlencoded`\n* `application/json`\n\nThis endpoint echoes the HTTP headers, request parameters, the contents of\nthe request body and the complete URI requested." + }, + "response": [] + }, + { + "name": "POST json with raw", + "event": [ + { + "listen": "test", + "script": { + "type": "text/javascript", + "exec": [ + "var responseJSON;", + "", + "try { ", + " responseJSON = JSON.parse(responseBody); ", + " tests['response is valid JSON'] = true;", + "}", + "catch (e) { ", + " responseJSON = {}; ", + " tests['response is valid JSON'] = false;", + "}", + "", + "", + "tests['response has post data'] = _.has(responseJSON, 'data');", + "tests['response matches the data posted'] = (responseJSON.data && responseJSON.data.length === 256);", + "", + "tests[\"content-type equals text/plain\"] = responseJSON && responseJSON.headers && (responseJSON.headers[\"content-type\"] === 'text/plain');" + ] + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"json\": \"Test-Test\"\n}" + }, + "url": { + "raw": "https://postman-echo.com/post", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "post" + ] + }, + "description": "The HTTP `POST` request method is meant to transfer data to a server \n(and elicit a response). What data is returned depends on the implementation\nof the server.\n\nA `POST` request can pass parameters to the server using \"Query String \nParameters\", as well as the Request Body. For example, in the following request,\n\n> POST /hi/there?hand=wave\n>\n> \n\nThe parameter \"hand\" has the value \"wave\". The request body can be in multiple\nformats. These formats are defined by the MIME type of the request. The MIME \nType can be set using the ``Content-Type`` HTTP header. The most commonly used \nMIME types are:\n\n* `multipart/form-data`\n* `application/x-www-form-urlencoded`\n* `application/json`\n\nThis endpoint echoes the HTTP headers, request parameters, the contents of\nthe request body and the complete URI requested." + }, + "response": [ + { + "id": "a331f873-b13f-459f-82f4-506d65e41bef", + "name": "POST json with raw", + "originalRequest": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": { + "mode": "raw", + "raw": "{\n \"json\": \"Test-Test\"\n}" + }, + "url": { + "raw": "https://postman-echo.com/post", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "post" + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Access-Control-Allow-Credentials", + "value": "", + "name": "Access-Control-Allow-Credentials", + "description": "Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials." + }, + { + "key": "Access-Control-Allow-Headers", + "value": "", + "name": "Access-Control-Allow-Headers", + "description": "Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request." + }, + { + "key": "Access-Control-Allow-Methods", + "value": "", + "name": "Access-Control-Allow-Methods", + "description": "Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request." + }, + { + "key": "Access-Control-Allow-Origin", + "value": "", + "name": "Access-Control-Allow-Origin", + "description": "Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource." + }, + { + "key": "Access-Control-Expose-Headers", + "value": "", + "name": "Access-Control-Expose-Headers", + "description": "Lets a server whitelist headers that browsers are allowed to access." + }, + { + "key": "Connection", + "value": "keep-alive", + "name": "Connection", + "description": "Options that are desired for the connection" + }, + { + "key": "Content-Encoding", + "value": "gzip", + "name": "Content-Encoding", + "description": "The type of encoding used on the data." + }, + { + "key": "Content-Length", + "value": "385", + "name": "Content-Length", + "description": "The length of the response body in octets (8-bit bytes)" + }, + { + "key": "Content-Type", + "value": "application/json; charset=utf-8", + "name": "Content-Type", + "description": "The mime type of this content" + }, + { + "key": "Date", + "value": "Wed, 07 Feb 2018 10:06:15 GMT", + "name": "Date", + "description": "The date and time that the message was sent" + }, + { + "key": "ETag", + "value": "W/\"215-u7EU1nFtauIn0/aVifjuXA\"", + "name": "ETag", + "description": "An identifier for a specific version of a resource, often a message digest" + }, + { + "key": "Server", + "value": "nginx", + "name": "Server", + "description": "A name for the server" + }, + { + "key": "Vary", + "value": "X-HTTP-Method-Override, Accept-Encoding", + "name": "Vary", + "description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server." + }, + { + "key": "set-cookie", + "value": "sails.sid=s%3AxRBxgrc9M-jKK_l1mX3y3rM_ry8wYLz4.Of4qpOzd9hi6uO0sAQIj%2Bxs2VeppWxYjJa4OpIW3PKg; Path=/; HttpOnly", + "name": "set-cookie", + "description": "an HTTP cookie" + } + ], + "cookie": [ + { + "expires": "Tue Jan 19 2038 08:44:07 GMT+0530 (IST)", + "httpOnly": true, + "domain": "postman-echo.com", + "path": "/", + "secure": false, + "value": "s%3AxRBxgrc9M-jKK_l1mX3y3rM_ry8wYLz4.Of4qpOzd9hi6uO0sAQIj%2Bxs2VeppWxYjJa4OpIW3PKg", + "key": "sails.sid" + } + ], + "body": "{\"args\":{},\"data\":\"{\\n \\\"json\\\": \\\"Test-Test\\\"\\n}\",\"files\":{},\"form\":{},\"headers\":{\"host\":\"postman-echo.com\",\"content-length\":\"25\",\"accept\":\"*/*\",\"accept-encoding\":\"gzip, deflate\",\"cache-control\":\"no-cache\",\"content-type\":\"text/plain\",\"cookie\":\"sails.sid=s%3AkOgtF1XmXtVFx-Eg3S7-37BKKaMqMDPe.hnwldNwyvsaASUiRR0Y0vcowadkMXO4HMegTeVIPgqo\",\"postman-token\":\"2ced782f-a141-428e-8af6-04ce954a77d5\",\"user-agent\":\"PostmanRuntime/7.1.1\",\"x-forwarded-port\":\"443\",\"x-forwarded-proto\":\"https\"},\"json\":null,\"url\":\"https://postman-echo.com/post\"}" + } + ] + }, + { + "name": "POST javascript with raw", + "event": [ + { + "listen": "test", + "script": { + "type": "text/javascript", + "exec": [ + "var responseJSON;", + "", + "try { ", + " responseJSON = JSON.parse(responseBody); ", + " tests['response is valid JSON'] = true;", + "}", + "catch (e) { ", + " responseJSON = {}; ", + " tests['response is valid JSON'] = false;", + "}", + "", + "", + "tests['response has post data'] = _.has(responseJSON, 'data');", + "tests['response matches the data posted'] = (responseJSON.data && responseJSON.data.length === 256);", + "", + "tests[\"content-type equals text/plain\"] = responseJSON && responseJSON.headers && (responseJSON.headers[\"content-type\"] === 'text/plain');" + ] + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/javascript" + } + ], + "body": { + "mode": "raw", + "raw": "var val = 6;\nconsole.log(val);" + }, + "url": { + "raw": "https://postman-echo.com/post", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "post" + ] + }, + "description": "The HTTP `POST` request method is meant to transfer data to a server \n(and elicit a response). What data is returned depends on the implementation\nof the server.\n\nA `POST` request can pass parameters to the server using \"Query String \nParameters\", as well as the Request Body. For example, in the following request,\n\n> POST /hi/there?hand=wave\n>\n> \n\nThe parameter \"hand\" has the value \"wave\". The request body can be in multiple\nformats. These formats are defined by the MIME type of the request. The MIME \nType can be set using the ``Content-Type`` HTTP header. The most commonly used \nMIME types are:\n\n* `multipart/form-data`\n* `application/x-www-form-urlencoded`\n* `application/json`\n\nThis endpoint echoes the HTTP headers, request parameters, the contents of\nthe request body and the complete URI requested." + }, + "response": [] + }, + { + "name": "POST text/xml with raw", + "event": [ + { + "listen": "test", + "script": { + "type": "text/javascript", + "exec": [ + "var responseJSON;", + "", + "try { ", + " responseJSON = JSON.parse(responseBody); ", + " tests['response is valid JSON'] = true;", + "}", + "catch (e) { ", + " responseJSON = {}; ", + " tests['response is valid JSON'] = false;", + "}", + "", + "", + "tests['response has post data'] = _.has(responseJSON, 'data');", + "tests['response matches the data posted'] = (responseJSON.data && responseJSON.data.length === 256);", + "", + "tests[\"content-type equals text/plain\"] = responseJSON && responseJSON.headers && (responseJSON.headers[\"content-type\"] === 'text/plain');" + ] + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/xml" + } + ], + "body": { + "mode": "raw", + "raw": "\n Test Test\n" + }, + "url": { + "raw": "https://postman-echo.com/post", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "post" + ] + }, + "description": "The HTTP `POST` request method is meant to transfer data to a server \n(and elicit a response). What data is returned depends on the implementation\nof the server.\n\nA `POST` request can pass parameters to the server using \"Query String \nParameters\", as well as the Request Body. For example, in the following request,\n\n> POST /hi/there?hand=wave\n>\n> \n\nThe parameter \"hand\" has the value \"wave\". The request body can be in multiple\nformats. These formats are defined by the MIME type of the request. The MIME \nType can be set using the ``Content-Type`` HTTP header. The most commonly used \nMIME types are:\n\n* `multipart/form-data`\n* `application/x-www-form-urlencoded`\n* `application/json`\n\nThis endpoint echoes the HTTP headers, request parameters, the contents of\nthe request body and the complete URI requested." + }, + "response": [] + }, + { + "name": "POST text/html with raw", + "event": [ + { + "listen": "test", + "script": { + "type": "text/javascript", + "exec": [ + "var responseJSON;", + "", + "try { ", + " responseJSON = JSON.parse(responseBody); ", + " tests['response is valid JSON'] = true;", + "}", + "catch (e) { ", + " responseJSON = {}; ", + " tests['response is valid JSON'] = false;", + "}", + "", + "", + "tests['response has post data'] = _.has(responseJSON, 'data');", + "tests['response matches the data posted'] = (responseJSON.data && responseJSON.data.length === 256);", + "", + "tests[\"content-type equals text/plain\"] = responseJSON && responseJSON.headers && (responseJSON.headers[\"content-type\"] === 'text/plain');" + ] + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "text/html" + } + ], + "body": { + "mode": "raw", + "raw": "\n Test Test\n" + }, + "url": { + "raw": "https://postman-echo.com/post", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "post" + ] + }, + "description": "The HTTP `POST` request method is meant to transfer data to a server \n(and elicit a response). What data is returned depends on the implementation\nof the server.\n\nA `POST` request can pass parameters to the server using \"Query String \nParameters\", as well as the Request Body. For example, in the following request,\n\n> POST /hi/there?hand=wave\n>\n> \n\nThe parameter \"hand\" has the value \"wave\". The request body can be in multiple\nformats. These formats are defined by the MIME type of the request. The MIME \nType can be set using the ``Content-Type`` HTTP header. The most commonly used \nMIME types are:\n\n* `multipart/form-data`\n* `application/x-www-form-urlencoded`\n* `application/json`\n\nThis endpoint echoes the HTTP headers, request parameters, the contents of\nthe request body and the complete URI requested." + }, + "response": [] + }, + { + "name": "Resolve URL", + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + } + ], + "body": { + "mode": "raw", + "raw": "Duis posuere augue vel cursus pharetra. In luctus a ex nec pretium. Praesent neque quam, tincidunt nec leo eget, rutrum vehicula magna.\nMaecenas consequat elementum elit, id semper sem tristique et. Integer pulvinar enim quis consectetur interdum volutpat." + }, + "url": { + "raw": "https://postman-echo.com/:action", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + ":action" + ], + "variable": [ + { + "key": "action", + "value": "post" + } + ] + }, + "description": null + }, + "response": [] + }, + { + "name": "PUT Request", + "event": [ + { + "listen": "test", + "script": { + "type": "text/javascript", + "exec": [ + "var responseJSON;", + "", + "try { ", + " responseJSON = JSON.parse(responseBody); ", + " tests['response is valid JSON'] = true;", + "}", + "catch (e) { ", + " responseJSON = {}; ", + " tests['response is valid JSON'] = false;", + "}", + "", + "", + "tests['response has PUT data'] = _.has(responseJSON, 'data');", + "tests['response matches the data sent in request'] = (responseJSON.data && responseJSON.data.length === 256);" + ] + } + } + ], + "request": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + } + ], + "body": { + "mode": "raw", + "raw": "Etiam mi lacus, cursus vitae felis et, blandit pellentesque neque. Vestibulum eget nisi a tortor commodo dignissim.\nQuisque ipsum ligula, faucibus a felis a, commodo elementum nisl. Mauris vulputate sapien et tincidunt viverra. Donec vitae velit nec metus." + }, + "url": { + "raw": "https://postman-echo.com/put", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "put" + ] + }, + "description": "The HTTP `PUT` request method is similar to HTTP `POST`. It too is meant to \ntransfer data to a server (and elicit a response). What data is returned depends on the implementation\nof the server.\n\nA `PUT` request can pass parameters to the server using \"Query String \nParameters\", as well as the Request Body. For example, in the following \nraw HTTP request,\n\n> PUT /hi/there?hand=wave\n>\n> \n\n\n" + }, + "response": [] + }, + { + "name": "PATCH Request", + "event": [ + { + "listen": "test", + "script": { + "type": "text/javascript", + "exec": [ + "var responseJSON;", + "", + "try { ", + " responseJSON = JSON.parse(responseBody); ", + " tests['response is valid JSON'] = true;", + "}", + "catch (e) { ", + " responseJSON = {}; ", + " tests['response is valid JSON'] = false;", + "}", + "", + "", + "tests['response has PUT data'] = _.has(responseJSON, 'data');", + "tests['response matches the data sent in request'] = (responseJSON.data && responseJSON.data.length === 256);" + ] + } + } + ], + "request": { + "method": "PATCH", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + } + ], + "body": { + "mode": "raw", + "raw": "Curabitur auctor, elit nec pulvinar porttitor, ex augue condimentum enim, eget suscipit urna felis quis neque.\nSuspendisse sit amet luctus massa, nec venenatis mi. Suspendisse tincidunt massa at nibh efficitur fringilla. Nam quis congue mi. Etiam volutpat." + }, + "url": { + "raw": "https://postman-echo.com/patch", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "patch" + ] + }, + "description": "The HTTP `PATCH` method is used to update resources on a server. The exact\nuse of `PATCH` requests depends on the server in question. There are a number\nof server implementations which handle `PATCH` differently. Technically, \n`PATCH` supports both Query String parameters and a Request Body.\n\nThis endpoint accepts an HTTP `PATCH` request and provides debug information\nsuch as the HTTP headers, Query String arguments, and the Request Body." + }, + "response": [] + }, + { + "name": "DELETE Request", + "event": [ + { + "listen": "test", + "script": { + "type": "text/javascript", + "exec": [ + "var responseJSON;", + "", + "try { ", + " responseJSON = JSON.parse(responseBody); ", + " tests['response is valid JSON'] = true;", + "}", + "catch (e) { ", + " responseJSON = {}; ", + " tests['response is valid JSON'] = false;", + "}", + "", + "", + "tests['response has PUT data'] = _.has(responseJSON, 'data');", + "tests['response matches the data sent in request'] = (responseJSON.data && responseJSON.data.length === 256);" + ] + } + } + ], + "request": { + "method": "DELETE", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Content-Length", + "value": "1000", + "disabled": true + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "dsfs", + "value": "sfdds", + "description": "", + "type": "text" + }, + { + "key": "sfdsdf", + "value": "sdf", + "description": "", + "type": "text" + } + ] + }, + "url": { + "raw": "https://postman-echo.com/delete", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "delete" + ] + }, + "description": "The HTTP `DELETE` method is used to delete resources on a server. The exact\nuse of `DELETE` requests depends on the server implementation. In general, \n`DELETE` requests support both, Query String parameters as well as a Request \nBody.\n\nThis endpoint accepts an HTTP `DELETE` request and provides debug information\nsuch as the HTTP headers, Query String arguments, and the Request Body." + }, + "response": [] + }, + { + "name": "OPTIONS to postman echo", + "event": [ + { + "listen": "test", + "script": { + "type": "text/javascript", + "exec": [ + "var responseJSON;", + "", + "try { ", + " responseJSON = JSON.parse(responseBody); ", + " tests['response is valid JSON'] = true;", + "}", + "catch (e) { ", + " responseJSON = {}; ", + " tests['response is valid JSON'] = false;", + "}", + "", + "", + "tests['response has post data'] = _.has(responseJSON, 'data');", + "tests['response matches the data posted'] = (responseJSON.data && responseJSON.data.length === 256);", + "", + "tests[\"content-type equals text/plain\"] = responseJSON && responseJSON.headers && (responseJSON.headers[\"content-type\"] === 'text/plain');" + ] + } + } + ], + "request": { + "method": "OPTIONS", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + } + ], + "body": {}, + "url": { + "raw": "https://postman-echo.com/post", + "protocol": "https", + "host": [ + "postman-echo", + "com" + ], + "path": [ + "post" + ] + }, + "description": "The HTTP `POST` request method is meant to transfer data to a server \n(and elicit a response). What data is returned depends on the implementation\nof the server.\n\nA `POST` request can pass parameters to the server using \"Query String \nParameters\", as well as the Request Body. For example, in the following request,\n\n> POST /hi/there?hand=wave\n>\n> \n\nThe parameter \"hand\" has the value \"wave\". The request body can be in multiple\nformats. These formats are defined by the MIME type of the request. The MIME \nType can be set using the ``Content-Type`` HTTP header. The most commonly used \nMIME types are:\n\n* `multipart/form-data`\n* `application/x-www-form-urlencoded`\n* `application/json`\n\nThis endpoint echoes the HTTP headers, request parameters, the contents of\nthe request body and the complete URI requested." + }, + "response": [] + }, + { + "name": "HEAD request", + "request": { + "method": "HEAD", + "header": [ + { + "key": "hello", + "value": "helloagain", + "disabled": true + } + ], + "body": {}, + "url": { + "raw": "https://bf1621bb-f962-46b8-bf28-459e03b513ff.mock.pstmn.io/head", + "protocol": "https", + "host": [ + "bf1621bb-f962-46b8-bf28-459e03b513ff", + "mock", + "pstmn", + "io" + ], + "path": [ + "head" + ] + }, + "description": "" + }, + "response": [] + }, + { + "name": "LINK request", + "request": { + "method": "LINK", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + } + ], + "body": { + "mode": "raw", + "raw": "" + }, + "url": { + "raw": "https://mockbin.org/request", + "protocol": "https", + "host": [ + "mockbin", + "org" + ], + "path": [ + "request" + ] + }, + "description": "" + }, + "response": [] + }, + { + "name": "UNLINK request", + "request": { + "method": "UNLINK", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + } + ], + "body": { + "mode": "raw", + "raw": "" + }, + "url": { + "raw": "https://mockbin.org/request", + "protocol": "https", + "host": [ + "mockbin", + "org" + ], + "path": [ + "request" + ] + }, + "description": "" + }, + "response": [] + }, + { + "name": "LOCK request", + "request": { + "method": "LOCK", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + } + ], + "body": { + "mode": "raw", + "raw": "" + }, + "url": { + "raw": "https://mockbin.org/request", + "protocol": "https", + "host": [ + "mockbin", + "org" + ], + "path": [ + "request" + ] + }, + "description": "" + }, + "response": [] + }, + { + "name": "UNLOCK request", + "request": { + "method": "UNLOCK", + "header": [], + "body": {}, + "url": { + "raw": "https://mockbin.org/request", + "protocol": "https", + "host": [ + "mockbin", + "org" + ], + "path": [ + "request" + ] + }, + "description": "" + }, + "response": [] + }, + { + "name": "PROPFIND request", + "request": { + "method": "PROPFIND", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + } + ], + "body": { + "mode": "raw", + "raw": "" + }, + "url": { + "raw": "https://mockbin.org/request", + "protocol": "https", + "host": [ + "mockbin", + "org" + ], + "path": [ + "request" + ] + }, + "description": "" + }, + "response": [] + }, + { + "name": "VIEW request", + "request": { + "method": "VIEW", + "header": [ + { + "key": "Content-Type", + "value": "text/plain" + } + ], + "body": { + "mode": "raw", + "raw": "" + }, + "url": { + "raw": "https://mockbin.org/request", + "protocol": "https", + "host": [ + "mockbin", + "org" + ], + "path": [ + "request" + ] + }, + "description": "" + }, + "response": [] + }, + { + "name": "PURGE Request", + "request": { + "method": "PURGE", + "header": [], + "body": {}, + "url": { + "raw": "https://9c76407d-5b8d-4b22-99fb-8c47a85d9848.mock.pstmn.io", + "protocol": "https", + "host": [ + "9c76407d-5b8d-4b22-99fb-8c47a85d9848", + "mock", + "pstmn", + "io" + ] + }, + "description": null + }, + "response": [ + { + "id": "95c11e09-9abe-4b26-a6b0-bc7f40dded08", + "name": "PURGE Request", + "originalRequest": { + "method": "PURGE", + "header": [], + "body": {}, + "url": { + "raw": "https://9c76407d-5b8d-4b22-99fb-8c47a85d9848.mock.pstmn.io", + "protocol": "https", + "host": [ + "9c76407d-5b8d-4b22-99fb-8c47a85d9848", + "mock", + "pstmn", + "io" + ] + } + }, + "status": "Not Found", + "code": 404, + "_postman_previewlanguage": "text", + "header": [ + { + "key": "Access-Control-Allow-Credentials", + "value": "", + "name": "Access-Control-Allow-Credentials", + "description": "" + }, + { + "key": "Access-Control-Allow-Headers", + "value": "", + "name": "Access-Control-Allow-Headers", + "description": "" + }, + { + "key": "Access-Control-Allow-Methods", + "value": "", + "name": "Access-Control-Allow-Methods", + "description": "" + }, + { + "key": "Access-Control-Allow-Origin", + "value": "*", + "name": "Access-Control-Allow-Origin", + "description": "" + }, + { + "key": "Access-Control-Expose-Headers", + "value": "", + "name": "Access-Control-Expose-Headers", + "description": "" + }, + { + "key": "Connection", + "value": "keep-alive", + "name": "Connection", + "description": "" + }, + { + "key": "Content-Encoding", + "value": "gzip", + "name": "Content-Encoding", + "description": "" + }, + { + "key": "Content-Length", + "value": "152", + "name": "Content-Length", + "description": "" + }, + { + "key": "Content-Type", + "value": "application/json; charset=utf-8", + "name": "Content-Type", + "description": "" + }, + { + "key": "Date", + "value": "Tue, 13 Feb 2018 13:58:56 GMT", + "name": "Date", + "description": "" + }, + { + "key": "ETag", + "value": "W/\"a7-kIxN5L9H0YwilUQPUUio9A\"", + "name": "ETag", + "description": "" + }, + { + "key": "Server", + "value": "nginx", + "name": "Server", + "description": "" + }, + { + "key": "Vary", + "value": "Accept-Encoding", + "name": "Vary", + "description": "" + } + ], + "cookie": [], + "responseTime": "375", + "body": "{\n \"args\": {},\n \"data\": \"Curabitur auctor, elit nec pulvinar porttitor, ex augue condimentum enim, eget suscipit urna felis quis neque.\\nSuspendisse sit amet luctus massa, nec venenatis mi. Suspendisse tincidunt massa at nibh efficitur fringilla. Nam quis congue mi. Etiam volutpat.\",\n \"files\": {},\n \"form\": {},\n \"headers\": {\n \"host\": \"postman-echo.com\",\n \"content-length\": \"256\",\n \"accept\": \"*/*\",\n \"accept-encoding\": \"gzip, deflate\",\n \"content-type\": \"text/plain\",\n \"cookie\": \"sails.sid=s%3A1wOi4AdoZEbqBjGi6oSUC5Vlfje8wJvs.DHQfRLXfIBvZ%2Bv0KhLAThMDz%2FXvxh9gyxWYa0u1EZOU\",\n \"user-agent\": \"PostmanRuntime/7.1.1\",\n \"x-forwarded-port\": \"443\",\n \"x-forwarded-proto\": \"https\"\n },\n \"json\": null,\n \"url\": \"https://9c76407d-5b8d-4b22-99fb-8c47a85d9848.mock.pstmn.io\"\n}" + } + ] + }, + { + "name": "COPY Request", + "request": { + "method": "COPY", + "header": [], + "body": {}, + "url": { + "raw": "https://9c76407d-5b8d-4b22-99fb-8c47a85d9848.mock.pstmn.io", + "protocol": "https", + "host": [ + "9c76407d-5b8d-4b22-99fb-8c47a85d9848", + "mock", + "pstmn", + "io" + ] + } + }, + "response": [ + { + "id": "b8517e1f-3aad-4c0e-bc2d-fb8d834adba7", + "name": "COPY Request", + "originalRequest": { + "method": "COPY", + "header": [], + "body": {}, + "url": { + "raw": "https://9c76407d-5b8d-4b22-99fb-8c47a85d9848.mock.pstmn.io", + "protocol": "https", + "host": [ + "9c76407d-5b8d-4b22-99fb-8c47a85d9848", + "mock", + "pstmn", + "io" + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [], + "cookie": [], + "responseTime": "0", + "body": "{\n \"args\": {},\n \"data\": \"Curabitur auctor, elit nec pulvinar porttitor, ex augue condimentum enim, eget suscipit urna felis quis neque.\\nSuspendisse sit amet luctus massa, nec venenatis mi. Suspendisse tincidunt massa at nibh efficitur fringilla. Nam quis congue mi. Etiam volutpat.\",\n \"files\": {},\n \"form\": {},\n \"headers\": {\n \"host\": \"postman-echo.com\",\n \"content-length\": \"256\",\n \"accept\": \"*/*\",\n \"accept-encoding\": \"gzip, deflate\",\n \"content-type\": \"text/plain\",\n \"cookie\": \"sails.sid=s%3A1wOi4AdoZEbqBjGi6oSUC5Vlfje8wJvs.DHQfRLXfIBvZ%2Bv0KhLAThMDz%2FXvxh9gyxWYa0u1EZOU\",\n \"user-agent\": \"PostmanRuntime/7.1.1\",\n \"x-forwarded-port\": \"443\",\n \"x-forwarded-proto\": \"https\"\n },\n \"json\": null,\n \"url\": \"https://9c76407d-5b8d-4b22-99fb-8c47a85d9848.mock.pstmn.io\"\n}" + } + ] + } + ] +} \ No newline at end of file diff --git a/codegens/react-axios/test/unit/snippet.test.js b/codegens/react-axios/test/unit/snippet.test.js new file mode 100644 index 000000000..314c79050 --- /dev/null +++ b/codegens/react-axios/test/unit/snippet.test.js @@ -0,0 +1,464 @@ +var expect = require('chai').expect, + sdk = require('postman-collection'), + sanitize = require('../../lib/util').sanitize, + parseBody = require('../../lib/parseRequest').parseBody, + getOptions = require('../../lib/index').getOptions, + convert = require('../../lib/index').convert, + mainCollection = require('./fixtures/testcollection/collection.json'); + +describe('nodejs-axios convert function', function () { + describe('Convert function', function () { + var request, + reqObject, + options = {}, + snippetArray, + line_no; + + it('should return a Tab indented snippet ', function () { + request = new sdk.Request(mainCollection.item[0].request); + options = { + indentType: 'Tab', + indentCount: 1 + }; + convert(request, options, function (error, snippet) { + if (error) { + expect.fail(null, null, error); + return; + } + + expect(snippet).to.be.a('string'); + snippetArray = snippet.split('\n'); + for (var i = 0; i < snippetArray.length; i++) { + if (snippetArray[i] === 'var config = {') { line_no = i + 1; } + } + expect(snippetArray[line_no].charAt(0)).to.equal('\t'); + }); + }); + + it('should return snippet with timeout property when timeout is set to non zero', function () { + request = new sdk.Request(mainCollection.item[0].request); + options = { + requestTimeout: 1000 + }; + convert(request, options, function (error, snippet) { + if (error) { + expect.fail(null, null, error); + return; + } + expect(snippet).to.be.a('string'); + expect(snippet).to.include('timeout: 1000'); + }); + }); + + it('should use JSON.parse if the content-type is application/vnd.api+json', function () { + request = new sdk.Request({ + 'method': 'POST', + 'header': [ + { + 'key': 'Content-Type', + 'value': 'application/vnd.api+json' + } + ], + 'body': { + 'mode': 'raw', + 'raw': '{"data": {"hello": "world"} }' + }, + 'url': { + 'raw': 'https://postman-echo.com/get', + 'protocol': 'https', + 'host': [ + 'postman-echo', + 'com' + ], + 'path': [ + 'get' + ] + } + }); + convert(request, {}, function (error, snippet) { + if (error) { + expect.fail(null, null, error); + } + expect(snippet).to.be.a('string'); + expect(snippet).to.contain('JSON.stringify({\n "data": {\n "hello": "world"\n }\n})'); + }); + }); + + it('should return snippet with maxRedirects property set to ' + + '0 for no follow redirect', function () { + request = new sdk.Request(mainCollection.item[0].request); + options = { + followRedirect: false + }; + convert(request, options, function (error, snippet) { + if (error) { + expect.fail(null, null, error); + return; + } + + expect(snippet).to.be.a('string'); + expect(snippet).to.include('maxRedirects: 0'); + }); + }); + + it('should return valid code snippet for no headers and no body', function () { + reqObject = { + 'description': 'This is a sample POST request without headers and body', + 'url': 'https://echo.getpostman.com/post', + 'method': 'POST' + }; + request = new sdk.Request(reqObject); + convert(request, options, function (error, snippet) { + if (error) { + expect.fail(null, null, error); + return; + } + expect(snippet).to.be.a('string'); + expect(snippet).to.include('headers: { }'); + }); + }); + + it('should not fail for a random body mode', function () { + request = new sdk.Request(mainCollection.item[2].request); + request.body.mode = 'random'; + request.body[request.body.mode] = {}; + + convert(request, options, function (error, snippet) { + + if (error) { + expect.fail(null, null, error); + return; + } + expect(snippet).to.be.a('string'); + expect(snippet).to.not.include('body:'); + }); + }); + + it('should generate snippet for file body mode', function () { + request = new sdk.Request({ + 'url': 'https://echo.getpostman.com/post', + 'method': 'POST', + 'body': { + 'mode': 'file', + 'file': [ + { + 'key': 'fileName', + 'src': 'file', + 'type': 'file' + } + ] + } + }); + options = { indentType: 'Space', indentCount: 2 }; + convert(request, options, function (error, snippet) { + if (error) { + expect.fail(null, null, error); + } + expect(snippet).to.be.a('string'); + expect(snippet).to.not.equal(''); + }); + }); + + it('should add content type if formdata field contains a content-type', function () { + request = new sdk.Request({ + 'method': 'POST', + 'body': { + 'mode': 'formdata', + 'formdata': [ + { + 'key': 'json', + 'value': '{"hello": "world"}', + 'contentType': 'application/json', + 'type': 'text' + } + ] + }, + 'url': { + 'raw': 'http://postman-echo.com/post', + 'host': [ + 'postman-echo', + 'com' + ], + 'path': [ + 'post' + ] + } + }); + + convert(request, {}, function (error, snippet) { + if (error) { + expect.fail(null, null, error); + } + expect(snippet).to.be.a('string'); + expect(snippet).to.contain('data.append(\'json\', \'{"hello": "world"}\', {contentType: \'application/json\'});'); // eslint-disable-line max-len + }); + }); + + it('should return snippet with proper semicolon placed where required', function () { + // testing for the below snippet + /* + const axios = require('axios'); + const config = { + 'method': 'get', + 'url': 'https://postman-echo.com/headers', + 'headers': { + 'my-sample-header': 'Lorem ipsum dolor sit amet', + 'not-disabled-header': 'ENABLED' + } + } + axios(config) + .then(function (response) { + console.log(JSON.stringify(response.data)); + }) + .catch(function (error) { + console.log(error); + }); + */ + request = new sdk.Request(mainCollection.item[0].request); + options = {}; + convert(request, options, function (error, snippet) { + if (error) { + expect.fail(null, null, error); + } + expect(snippet).to.be.a('string'); + var snippetArray = snippet.split('\n'); + snippetArray.forEach(function (line) { + if (line.charAt(line.length - 2) === ')') { + expect(line.charAt(line.length - 1)).to.equal(';'); + } + }); + // -2 because last one is a newline + const lastLine = snippetArray[snippetArray.length - 2] + expect(lastLine.charAt(lastLine.length - 1)).to.equal(';'); + }); + }); + + it('should return snippet with no trailing comma when requestTimeout ' + + 'is set to non zero', function () { + request = new sdk.Request(mainCollection.item[0].request); + options = { + requestTimeout: 1000 + }; + convert(request, options, function (error, snippet) { + if (error) { + expect.fail(null, null, error); + return; + } + + expect(snippet).to.be.a('string'); + expect(snippet).to.not.include('timeout: 1000,'); + expect(snippet).to.include('timeout: 1000'); + }); + }); + + it('should return snippet with just a single comma when requestTimeout ' + + 'is set to non zero and followRedirect as false', function () { + request = new sdk.Request(mainCollection.item[0].request); + options = { + requestTimeout: 1000, + followRedirect: false, + indentCount: 1, + indentType: 'space' + }; + convert(request, options, function (error, snippet) { + if (error) { + expect.fail(null, null, error); + return; + } + + expect(snippet).to.be.a('string'); + expect(snippet).to.not.include('timeout: 1000,,'); + expect(snippet).to.include('timeout: 1000,\n maxRedirects: 0'); + }); + }); + + it('should not require unused fs', function () { + request = new sdk.Request({ + 'url': 'https://postman-echo.com/get', + 'method': 'GET', + 'body': { + 'mode': 'raw', + 'raw': '' + } + }); + convert(request, {}, (error, snippet) => { + if (error) { + expect.fail(null, null, error); + } + expect(snippet).to.be.a('string'); + expect(snippet).to.not.include('const fs = require(\'fs\')'); + }); + }); + + it('should add fs for form-data file upload', function () { + request = new sdk.Request({ + 'url': 'https://postman-echo.com/post', + 'method': 'POST', + 'body': { + 'mode': 'formdata', + 'formdata': [ + { + 'key': 'fileName', + 'src': '/some/path/file.txt', + 'type': 'file' + } + ] + } + }); + convert(request, {}, (error, snippet) => { + if (error) { + expect.fail(null, null, error); + } + expect(snippet).to.be.a('string'); + expect(snippet).to.include('var data = new FormData()'); + }); + }); + + it('should trim header keys and not trim header values', function () { + var request = new sdk.Request({ + 'method': 'GET', + 'header': [ + { + 'key': ' key_containing_whitespaces ', + 'value': ' value_containing_whitespaces ' + } + ], + 'url': { + 'raw': 'https://google.com', + 'protocol': 'https', + 'host': [ + 'google', + 'com' + ] + } + }); + convert(request, {}, function (error, snippet) { + if (error) { + expect.fail(null, null, error); + } + expect(snippet).to.be.a('string'); + expect(snippet).to.include('\'key_containing_whitespaces\': \' value_containing_whitespaces \''); + }); + }); + + it('should include JSON.stringify in the snippet for raw json bodies', function () { + var request = new sdk.Request({ + 'method': 'POST', + 'header': [ + { + 'key': 'Content-Type', + 'value': 'application/json' + } + ], + 'body': { + 'mode': 'raw', + 'raw': '{\n "json": "Test-Test"\n}' + }, + 'url': { + 'raw': 'https://postman-echo.com/post', + 'protocol': 'https', + 'host': [ + 'postman-echo', + 'com' + ], + 'path': [ + 'post' + ] + } + }); + convert(request, {}, function (error, snippet) { + if (error) { + expect.fail(null, null, error); + } + expect(snippet).to.be.a('string'); + expect(snippet).to.include('data = JSON.stringify({\n "json": "Test-Test"\n})'); + }); + }); + + it('should generate snippets for no files in form data', function () { + var request = new sdk.Request({ + 'method': 'POST', + 'header': [], + 'body': { + 'mode': 'formdata', + 'formdata': [ + { + 'key': 'no file', + 'value': '', + 'type': 'file', + 'src': [] + }, + { + 'key': 'no src', + 'value': '', + 'type': 'file' + }, + { + 'key': 'invalid src', + 'value': '', + 'type': 'file', + 'src': {} + } + ] + }, + 'url': { + 'raw': 'https://postman-echo.com/post', + 'protocol': 'https', + 'host': [ + 'postman-echo', + 'com' + ], + 'path': [ + 'post' + ] + } + }); + convert(request, {}, function (error, snippet) { + if (error) { + expect.fail(null, null, error); + } + expect(snippet).to.be.a('string'); + expect(snippet).to.include('data.append(\'no file\', fs.createReadStream(\'/path/to/file\'));'); + expect(snippet).to.include('data.append(\'no src\', fs.createReadStream(\'/path/to/file\'));'); + expect(snippet).to.include('data.append(\'invalid src\', fs.createReadStream(\'/path/to/file\'));'); + }); + }); + + describe('getOptions function', function () { + + it('should return an array of specific options', function () { + expect(getOptions()).to.be.an('array'); + }); + + it('should return all the valid options', function () { + expect(getOptions()[0]).to.have.property('id', 'indentCount'); + expect(getOptions()[1]).to.have.property('id', 'indentType'); + expect(getOptions()[2]).to.have.property('id', 'requestTimeout'); + expect(getOptions()[3]).to.have.property('id', 'followRedirect'); + expect(getOptions()[4]).to.have.property('id', 'trimRequestBody'); + // expect(getOptions()[5]).to.have.property('id', 'AsyncAwait_enabled'); + }); + }); + + describe('Sanitize function', function () { + + it('should return empty string when input is not a string type', function () { + expect(sanitize(123, false)).to.equal(''); + expect(sanitize(null, false)).to.equal(''); + expect(sanitize({}, false)).to.equal(''); + expect(sanitize([], false)).to.equal(''); + }); + + it('should trim input string when needed', function () { + expect(sanitize('inputString ', true)).to.equal('inputString'); + }); + }); + + describe('parseRequest function', function () { + + it('should return empty string for empty body', function () { + expect(parseBody(null, ' ', false)).to.equal(''); + }); + }); + }); +}); diff --git a/codegens/react-axios/test/unit/validation.test.js b/codegens/react-axios/test/unit/validation.test.js new file mode 100644 index 000000000..f1083b153 --- /dev/null +++ b/codegens/react-axios/test/unit/validation.test.js @@ -0,0 +1,30 @@ +var expect = require('chai').expect, + path = require('path'), + + package = require(path.resolve('.', 'package.json')); + + +describe('package.json', function () { + it('should have com_postman_plugin object with valid properties', function () { + expect(package).to.have.property('com_postman_plugin'); + + expect(package.com_postman_plugin.type).to.equal('code_generator'); + expect(package.com_postman_plugin.lang).to.be.a('string'); + expect(package.com_postman_plugin.variant).to.be.a('string'); + expect(package.com_postman_plugin.syntax_mode).to.be.equal('javascript'); + }); + it('should have main property with relative path to object with convert property', function () { + var languageModule; + + expect(package.main).to.be.a('string'); + + try { + languageModule = require(path.resolve('.', package.main)); + } + catch (error) { + console.error(error); + } + expect(languageModule).to.be.a('object'); + expect(languageModule.convert).to.be.a('function'); + }); +}); diff --git a/codegens/react-axios/testfile1.exe b/codegens/react-axios/testfile1.exe new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/codegens/react-axios/testfile1.exe @@ -0,0 +1 @@ + diff --git a/codegens/react-axios/testfile2.txt b/codegens/react-axios/testfile2.txt new file mode 100644 index 000000000..f03583617 --- /dev/null +++ b/codegens/react-axios/testfile2.txt @@ -0,0 +1 @@ +file to test formdatacollection \ No newline at end of file diff --git a/codegens/react-axios/testfile3.txt b/codegens/react-axios/testfile3.txt new file mode 100644 index 000000000..f03583617 --- /dev/null +++ b/codegens/react-axios/testfile3.txt @@ -0,0 +1 @@ +file to test formdatacollection \ No newline at end of file From d21331a3de7b5ec4fa6a90e66dbaaf5822594e7c Mon Sep 17 00:00:00 2001 From: 2019UCP1350 <2019UCP1350@mnit.ac.in> Date: Sat, 27 Mar 2021 09:50:46 +0530 Subject: [PATCH 02/13] modified readme and renamed react-axios folder to reactjs-axios --- codegens/{react-axios => reactjs-axios}/.gitignore | 0 codegens/{react-axios => reactjs-axios}/README.md | 8 +++++--- codegens/{react-axios => reactjs-axios}/index.js | 0 codegens/{react-axios => reactjs-axios}/lib/axios.js | 0 codegens/{react-axios => reactjs-axios}/lib/index.js | 0 codegens/{react-axios => reactjs-axios}/lib/lodash.js | 0 .../{react-axios => reactjs-axios}/lib/parseRequest.js | 0 codegens/{react-axios => reactjs-axios}/lib/util.js | 0 codegens/{react-axios => reactjs-axios}/npm/test-lint.js | 0 .../{react-axios => reactjs-axios}/npm/test-newman.js | 0 codegens/{react-axios => reactjs-axios}/npm/test.js | 0 codegens/{react-axios => reactjs-axios}/package-lock.json | 0 codegens/{react-axios => reactjs-axios}/package.json | 2 +- codegens/{react-axios => reactjs-axios}/run.mjs | 0 codegens/{react-axios => reactjs-axios}/test/.eslintrc | 0 .../test/newman/newman.test.js | 0 .../{react-axios => reactjs-axios}/test/unit/.gitkeep | 0 .../test/unit/fixtures/testcollection/collection.json | 0 .../test/unit/snippet.test.js | 0 .../test/unit/validation.test.js | 0 codegens/{react-axios => reactjs-axios}/testfile1.exe | 0 codegens/{react-axios => reactjs-axios}/testfile2.txt | 0 codegens/{react-axios => reactjs-axios}/testfile3.txt | 0 23 files changed, 6 insertions(+), 4 deletions(-) rename codegens/{react-axios => reactjs-axios}/.gitignore (100%) rename codegens/{react-axios => reactjs-axios}/README.md (86%) rename codegens/{react-axios => reactjs-axios}/index.js (100%) rename codegens/{react-axios => reactjs-axios}/lib/axios.js (100%) rename codegens/{react-axios => reactjs-axios}/lib/index.js (100%) rename codegens/{react-axios => reactjs-axios}/lib/lodash.js (100%) rename codegens/{react-axios => reactjs-axios}/lib/parseRequest.js (100%) rename codegens/{react-axios => reactjs-axios}/lib/util.js (100%) rename codegens/{react-axios => reactjs-axios}/npm/test-lint.js (100%) rename codegens/{react-axios => reactjs-axios}/npm/test-newman.js (100%) rename codegens/{react-axios => reactjs-axios}/npm/test.js (100%) rename codegens/{react-axios => reactjs-axios}/package-lock.json (100%) rename codegens/{react-axios => reactjs-axios}/package.json (97%) rename codegens/{react-axios => reactjs-axios}/run.mjs (100%) rename codegens/{react-axios => reactjs-axios}/test/.eslintrc (100%) rename codegens/{react-axios => reactjs-axios}/test/newman/newman.test.js (100%) rename codegens/{react-axios => reactjs-axios}/test/unit/.gitkeep (100%) rename codegens/{react-axios => reactjs-axios}/test/unit/fixtures/testcollection/collection.json (100%) rename codegens/{react-axios => reactjs-axios}/test/unit/snippet.test.js (100%) rename codegens/{react-axios => reactjs-axios}/test/unit/validation.test.js (100%) rename codegens/{react-axios => reactjs-axios}/testfile1.exe (100%) rename codegens/{react-axios => reactjs-axios}/testfile2.txt (100%) rename codegens/{react-axios => reactjs-axios}/testfile3.txt (100%) diff --git a/codegens/react-axios/.gitignore b/codegens/reactjs-axios/.gitignore similarity index 100% rename from codegens/react-axios/.gitignore rename to codegens/reactjs-axios/.gitignore diff --git a/codegens/react-axios/README.md b/codegens/reactjs-axios/README.md similarity index 86% rename from codegens/react-axios/README.md rename to codegens/reactjs-axios/README.md index d4e0b6f20..f196a6ca2 100644 --- a/codegens/react-axios/README.md +++ b/codegens/reactjs-axios/README.md @@ -1,9 +1,9 @@ -# codegen-nodejs-axios +# codegen-Reactjs-axios -> Converts Postman-SDK Request into code snippet for NodeJS-axios. +> Converts Postman-SDK Request into code snippet for ReactJS-axios. #### Prerequisites -To run the module, ensure that you have NodeJS >= v8. A copy of the NodeJS installable can be downloaded from https://nodejs.org/en/download/package-manager. +To run the module, ensure that you have NodeJS >= v12. A copy of the NodeJS installable can be downloaded from https://nodejs.org/en/download/package-manager. ## Using the Module The module will expose an object which will have property `convert` which is the function for converting the Postman-SDK request to nodejs-axios code snippet and `getOptions` function which returns an array of supported options. @@ -65,3 +65,5 @@ console.log(options); * Since Postman-SDK Request object doesn't provide complete path of the file, it needs to be manually inserted in case of uploading a file. * This module doesn't support cookies. + +* testfile1, testfile2, testfile3 are random files generated for testing \ No newline at end of file diff --git a/codegens/react-axios/index.js b/codegens/reactjs-axios/index.js similarity index 100% rename from codegens/react-axios/index.js rename to codegens/reactjs-axios/index.js diff --git a/codegens/react-axios/lib/axios.js b/codegens/reactjs-axios/lib/axios.js similarity index 100% rename from codegens/react-axios/lib/axios.js rename to codegens/reactjs-axios/lib/axios.js diff --git a/codegens/react-axios/lib/index.js b/codegens/reactjs-axios/lib/index.js similarity index 100% rename from codegens/react-axios/lib/index.js rename to codegens/reactjs-axios/lib/index.js diff --git a/codegens/react-axios/lib/lodash.js b/codegens/reactjs-axios/lib/lodash.js similarity index 100% rename from codegens/react-axios/lib/lodash.js rename to codegens/reactjs-axios/lib/lodash.js diff --git a/codegens/react-axios/lib/parseRequest.js b/codegens/reactjs-axios/lib/parseRequest.js similarity index 100% rename from codegens/react-axios/lib/parseRequest.js rename to codegens/reactjs-axios/lib/parseRequest.js diff --git a/codegens/react-axios/lib/util.js b/codegens/reactjs-axios/lib/util.js similarity index 100% rename from codegens/react-axios/lib/util.js rename to codegens/reactjs-axios/lib/util.js diff --git a/codegens/react-axios/npm/test-lint.js b/codegens/reactjs-axios/npm/test-lint.js similarity index 100% rename from codegens/react-axios/npm/test-lint.js rename to codegens/reactjs-axios/npm/test-lint.js diff --git a/codegens/react-axios/npm/test-newman.js b/codegens/reactjs-axios/npm/test-newman.js similarity index 100% rename from codegens/react-axios/npm/test-newman.js rename to codegens/reactjs-axios/npm/test-newman.js diff --git a/codegens/react-axios/npm/test.js b/codegens/reactjs-axios/npm/test.js similarity index 100% rename from codegens/react-axios/npm/test.js rename to codegens/reactjs-axios/npm/test.js diff --git a/codegens/react-axios/package-lock.json b/codegens/reactjs-axios/package-lock.json similarity index 100% rename from codegens/react-axios/package-lock.json rename to codegens/reactjs-axios/package-lock.json diff --git a/codegens/react-axios/package.json b/codegens/reactjs-axios/package.json similarity index 97% rename from codegens/react-axios/package.json rename to codegens/reactjs-axios/package.json index 67cad5515..9d798cb71 100644 --- a/codegens/react-axios/package.json +++ b/codegens/reactjs-axios/package.json @@ -32,6 +32,6 @@ "qs": "6.9.2" }, "engines": { - "node": ">=8" + "node": ">=12" } } diff --git a/codegens/react-axios/run.mjs b/codegens/reactjs-axios/run.mjs similarity index 100% rename from codegens/react-axios/run.mjs rename to codegens/reactjs-axios/run.mjs diff --git a/codegens/react-axios/test/.eslintrc b/codegens/reactjs-axios/test/.eslintrc similarity index 100% rename from codegens/react-axios/test/.eslintrc rename to codegens/reactjs-axios/test/.eslintrc diff --git a/codegens/react-axios/test/newman/newman.test.js b/codegens/reactjs-axios/test/newman/newman.test.js similarity index 100% rename from codegens/react-axios/test/newman/newman.test.js rename to codegens/reactjs-axios/test/newman/newman.test.js diff --git a/codegens/react-axios/test/unit/.gitkeep b/codegens/reactjs-axios/test/unit/.gitkeep similarity index 100% rename from codegens/react-axios/test/unit/.gitkeep rename to codegens/reactjs-axios/test/unit/.gitkeep diff --git a/codegens/react-axios/test/unit/fixtures/testcollection/collection.json b/codegens/reactjs-axios/test/unit/fixtures/testcollection/collection.json similarity index 100% rename from codegens/react-axios/test/unit/fixtures/testcollection/collection.json rename to codegens/reactjs-axios/test/unit/fixtures/testcollection/collection.json diff --git a/codegens/react-axios/test/unit/snippet.test.js b/codegens/reactjs-axios/test/unit/snippet.test.js similarity index 100% rename from codegens/react-axios/test/unit/snippet.test.js rename to codegens/reactjs-axios/test/unit/snippet.test.js diff --git a/codegens/react-axios/test/unit/validation.test.js b/codegens/reactjs-axios/test/unit/validation.test.js similarity index 100% rename from codegens/react-axios/test/unit/validation.test.js rename to codegens/reactjs-axios/test/unit/validation.test.js diff --git a/codegens/react-axios/testfile1.exe b/codegens/reactjs-axios/testfile1.exe similarity index 100% rename from codegens/react-axios/testfile1.exe rename to codegens/reactjs-axios/testfile1.exe diff --git a/codegens/react-axios/testfile2.txt b/codegens/reactjs-axios/testfile2.txt similarity index 100% rename from codegens/react-axios/testfile2.txt rename to codegens/reactjs-axios/testfile2.txt diff --git a/codegens/react-axios/testfile3.txt b/codegens/reactjs-axios/testfile3.txt similarity index 100% rename from codegens/react-axios/testfile3.txt rename to codegens/reactjs-axios/testfile3.txt From 58e374c0d314032200f453274d0aec075b39ad77 Mon Sep 17 00:00:00 2001 From: 2019UCP1350 <2019UCP1350@mnit.ac.in> Date: Sat, 27 Mar 2021 17:17:25 +0530 Subject: [PATCH 03/13] fixed node version comflicts --- .travis.yml | 2 +- codegens/reactjs-axios/package.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4e95bf5d4..c8c672083 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ dist: 'xenial' language: node_js node_js: - - '8' + - '12' before_install: - echo "Installing additional dependencies required for running tests on travis" - npm run cirequirements diff --git a/codegens/reactjs-axios/package.json b/codegens/reactjs-axios/package.json index 9d798cb71..35b76369c 100644 --- a/codegens/reactjs-axios/package.json +++ b/codegens/reactjs-axios/package.json @@ -34,4 +34,4 @@ "engines": { "node": ">=12" } -} +} \ No newline at end of file diff --git a/package.json b/package.json index 4504cecbd..96ed2bda6 100644 --- a/package.json +++ b/package.json @@ -54,6 +54,6 @@ "watchify": "3.11.1" }, "engines": { - "node": ">=6" + "node": ">=12" } } From ac0bfe12b4c3729047c979bd813cbcddd5c53914 Mon Sep 17 00:00:00 2001 From: 2019UCP1350 <2019UCP1350@mnit.ac.in> Date: Sat, 27 Mar 2021 19:22:53 +0530 Subject: [PATCH 04/13] settled node dependencies --- .travis.yml | 2 +- codegens/reactjs-axios/package.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c8c672083..4e95bf5d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ dist: 'xenial' language: node_js node_js: - - '12' + - '8' before_install: - echo "Installing additional dependencies required for running tests on travis" - npm run cirequirements diff --git a/codegens/reactjs-axios/package.json b/codegens/reactjs-axios/package.json index 35b76369c..89f187755 100644 --- a/codegens/reactjs-axios/package.json +++ b/codegens/reactjs-axios/package.json @@ -32,6 +32,6 @@ "qs": "6.9.2" }, "engines": { - "node": ">=12" + "node": ">=8" } } \ No newline at end of file diff --git a/package.json b/package.json index 96ed2bda6..e97d1381b 100644 --- a/package.json +++ b/package.json @@ -54,6 +54,6 @@ "watchify": "3.11.1" }, "engines": { - "node": ">=12" + "node": ">=8" } } From b077e00bba999cbd99af549d013afbf1e1d23060 Mon Sep 17 00:00:00 2001 From: 2019UCP1350 <2019UCP1350@mnit.ac.in> Date: Sat, 27 Mar 2021 19:51:48 +0530 Subject: [PATCH 05/13] trying to settle node version --- codegens/reactjs-axios/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegens/reactjs-axios/package.json b/codegens/reactjs-axios/package.json index 89f187755..67cad5515 100644 --- a/codegens/reactjs-axios/package.json +++ b/codegens/reactjs-axios/package.json @@ -34,4 +34,4 @@ "engines": { "node": ">=8" } -} \ No newline at end of file +} From d1d26e1c6c6a41993c60cd81314e4c12f1d3898d Mon Sep 17 00:00:00 2001 From: 2019UCP1350 <2019UCP1350@mnit.ac.in> Date: Sat, 27 Mar 2021 20:10:34 +0530 Subject: [PATCH 06/13] trying to settle node version --- .travis.yml | 2 +- codegens/reactjs-axios/package.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4e95bf5d4..bfeb999aa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ dist: 'xenial' language: node_js node_js: - - '8' + - '6' before_install: - echo "Installing additional dependencies required for running tests on travis" - npm run cirequirements diff --git a/codegens/reactjs-axios/package.json b/codegens/reactjs-axios/package.json index 67cad5515..79e9e85d1 100644 --- a/codegens/reactjs-axios/package.json +++ b/codegens/reactjs-axios/package.json @@ -32,6 +32,6 @@ "qs": "6.9.2" }, "engines": { - "node": ">=8" + "node": ">=6" } } diff --git a/package.json b/package.json index e97d1381b..4504cecbd 100644 --- a/package.json +++ b/package.json @@ -54,6 +54,6 @@ "watchify": "3.11.1" }, "engines": { - "node": ">=8" + "node": ">=6" } } From 1c4d9d75c41e68df4be54942c994cd6f4d468d6b Mon Sep 17 00:00:00 2001 From: 2019UCP1350 <2019UCP1350@mnit.ac.in> Date: Sat, 27 Mar 2021 20:25:07 +0530 Subject: [PATCH 07/13] trying to settle node version attempt 3 --- .travis.yml | 2 +- codegens/reactjs-axios/package.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index bfeb999aa..4e95bf5d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ dist: 'xenial' language: node_js node_js: - - '6' + - '8' before_install: - echo "Installing additional dependencies required for running tests on travis" - npm run cirequirements diff --git a/codegens/reactjs-axios/package.json b/codegens/reactjs-axios/package.json index 79e9e85d1..67cad5515 100644 --- a/codegens/reactjs-axios/package.json +++ b/codegens/reactjs-axios/package.json @@ -32,6 +32,6 @@ "qs": "6.9.2" }, "engines": { - "node": ">=6" + "node": ">=8" } } diff --git a/package.json b/package.json index 4504cecbd..e97d1381b 100644 --- a/package.json +++ b/package.json @@ -54,6 +54,6 @@ "watchify": "3.11.1" }, "engines": { - "node": ">=6" + "node": ">=8" } } From 96afdbe4c03b82de34d7658139d1ef18bceed36f Mon Sep 17 00:00:00 2001 From: 2019UCP1350 <2019UCP1350@mnit.ac.in> Date: Sat, 27 Mar 2021 20:35:22 +0530 Subject: [PATCH 08/13] trying to settle node version attempt 4 --- .travis.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4e95bf5d4..bfeb999aa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ dist: 'xenial' language: node_js node_js: - - '8' + - '6' before_install: - echo "Installing additional dependencies required for running tests on travis" - npm run cirequirements diff --git a/package.json b/package.json index e97d1381b..4504cecbd 100644 --- a/package.json +++ b/package.json @@ -54,6 +54,6 @@ "watchify": "3.11.1" }, "engines": { - "node": ">=8" + "node": ">=6" } } From fb62eb197bd922d6debd646c4c50bff5988cbf44 Mon Sep 17 00:00:00 2001 From: 2019UCP1350 <2019UCP1350@mnit.ac.in> Date: Sat, 27 Mar 2021 21:41:59 +0530 Subject: [PATCH 09/13] trying to settle node version attempt 5 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bfeb999aa..4e95bf5d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ dist: 'xenial' language: node_js node_js: - - '6' + - '8' before_install: - echo "Installing additional dependencies required for running tests on travis" - npm run cirequirements From 15f0d7b03aa896de408973828a0d5b45170e2fe6 Mon Sep 17 00:00:00 2001 From: 2019UCP1350 <2019UCP1350@mnit.ac.in> Date: Sat, 27 Mar 2021 22:08:06 +0530 Subject: [PATCH 10/13] add esm --- codegens/reactjs-axios/package-lock.json | 39 +++++++------------ codegens/reactjs-axios/package.json | 6 ++- .../reactjs-axios/test/newman/newman.test.js | 4 +- 3 files changed, 19 insertions(+), 30 deletions(-) diff --git a/codegens/reactjs-axios/package-lock.json b/codegens/reactjs-axios/package-lock.json index 47a75bcbd..f8a997c8d 100644 --- a/codegens/reactjs-axios/package-lock.json +++ b/codegens/reactjs-axios/package-lock.json @@ -11,12 +11,12 @@ "dev": true }, "axios": { - "version": "0.19.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz", - "integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==", + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz", + "integrity": "sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==", "dev": true, "requires": { - "follow-redirects": "1.5.10" + "follow-redirects": "^1.10.0" } }, "combined-stream": { @@ -28,29 +28,22 @@ "delayed-stream": "~1.0.0" } }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", "dev": true }, + "esm": { + "version": "3.2.25", + "resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz", + "integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" + }, "follow-redirects": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", - "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", - "dev": true, - "requires": { - "debug": "=3.1.0" - } + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz", + "integrity": "sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA==", + "dev": true }, "form-data": { "version": "3.0.0", @@ -78,12 +71,6 @@ "mime-db": "1.43.0" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, "qs": { "version": "6.9.2", "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.2.tgz", diff --git a/codegens/reactjs-axios/package.json b/codegens/reactjs-axios/package.json index 67cad5515..995060309 100644 --- a/codegens/reactjs-axios/package.json +++ b/codegens/reactjs-axios/package.json @@ -25,9 +25,11 @@ "author": "Postman Labs ", "license": "Apache-2.0", "homepage": "https://github.com/postmanlabs/code-generators/tree/master/codegens/reactjs-axios", - "dependencies": {}, + "dependencies": { + "esm": "^3.2.25" + }, "devDependencies": { - "axios": "0.19.2", + "axios": "^0.21.1", "form-data": "3.0.0", "qs": "6.9.2" }, diff --git a/codegens/reactjs-axios/test/newman/newman.test.js b/codegens/reactjs-axios/test/newman/newman.test.js index 2763efee8..ad6b60059 100644 --- a/codegens/reactjs-axios/test/newman/newman.test.js +++ b/codegens/reactjs-axios/test/newman/newman.test.js @@ -5,7 +5,7 @@ describe('Convert for different types of request', function () { var options = {indentCount: 2, indentType: 'Space'}, testConfig = { compileScript: null, - runScript: 'node run.mjs', + runScript: 'node -r esm run.js', fileName: 'run.mjs', headerSnippet: '/* eslint-disable */\n' }; @@ -16,7 +16,7 @@ describe('Convert for different types of request', function () { var options = {indentCount: 2, indentType: 'Space', ES6_enabled: true}, testConfig = { compileScript: null, - runScript: 'node run.mjs', + runScript: 'node -r esm run.js', fileName: 'run.mjs', headerSnippet: '/* eslint-disable */\n' }; From c7635ce521a14c4120dbae61c3c51a56e07c12df Mon Sep 17 00:00:00 2001 From: 2019UCP1350 <2019UCP1350@mnit.ac.in> Date: Sun, 28 Mar 2021 00:18:10 +0530 Subject: [PATCH 11/13] settled reactjs package.json --- codegens/reactjs-axios/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codegens/reactjs-axios/package.json b/codegens/reactjs-axios/package.json index 995060309..69c9c0370 100644 --- a/codegens/reactjs-axios/package.json +++ b/codegens/reactjs-axios/package.json @@ -26,10 +26,10 @@ "license": "Apache-2.0", "homepage": "https://github.com/postmanlabs/code-generators/tree/master/codegens/reactjs-axios", "dependencies": { - "esm": "^3.2.25" + "esm": "3.2.25" }, "devDependencies": { - "axios": "^0.21.1", + "axios": "0.21.1", "form-data": "3.0.0", "qs": "6.9.2" }, From 87fdeb7ea1704a499e003ad2525bc8f639a6aed6 Mon Sep 17 00:00:00 2001 From: 2019UCP1350 <2019UCP1350@mnit.ac.in> Date: Sun, 28 Mar 2021 00:37:40 +0530 Subject: [PATCH 12/13] added run.js --- codegens/reactjs-axios/README.md | 2 -- codegens/reactjs-axios/run.mjs | 21 --------------------- codegens/reactjs-axios/testfile1.exe | 1 - codegens/reactjs-axios/testfile2.txt | 1 - codegens/reactjs-axios/testfile3.txt | 1 - 5 files changed, 26 deletions(-) delete mode 100644 codegens/reactjs-axios/run.mjs delete mode 100644 codegens/reactjs-axios/testfile1.exe delete mode 100644 codegens/reactjs-axios/testfile2.txt delete mode 100644 codegens/reactjs-axios/testfile3.txt diff --git a/codegens/reactjs-axios/README.md b/codegens/reactjs-axios/README.md index f196a6ca2..16678995a 100644 --- a/codegens/reactjs-axios/README.md +++ b/codegens/reactjs-axios/README.md @@ -65,5 +65,3 @@ console.log(options); * Since Postman-SDK Request object doesn't provide complete path of the file, it needs to be manually inserted in case of uploading a file. * This module doesn't support cookies. - -* testfile1, testfile2, testfile3 are random files generated for testing \ No newline at end of file diff --git a/codegens/reactjs-axios/run.mjs b/codegens/reactjs-axios/run.mjs deleted file mode 100644 index 9b013d5e1..000000000 --- a/codegens/reactjs-axios/run.mjs +++ /dev/null @@ -1,21 +0,0 @@ -/* eslint-disable */ -import axios from 'axios' ; - -let config = { - method: 'get', - url: 'https://postman-echo.com/get', - headers: { - 'key': 'value1, value2' - } -}; - -let Apicall = async ()=>{ - try { - let response =await axios(config) ; - console.log(JSON.stringify(response.data)); - }catch(err){ - console.log(err); - }; -}; - -Apicall(); \ No newline at end of file diff --git a/codegens/reactjs-axios/testfile1.exe b/codegens/reactjs-axios/testfile1.exe deleted file mode 100644 index 8b1378917..000000000 --- a/codegens/reactjs-axios/testfile1.exe +++ /dev/null @@ -1 +0,0 @@ - diff --git a/codegens/reactjs-axios/testfile2.txt b/codegens/reactjs-axios/testfile2.txt deleted file mode 100644 index f03583617..000000000 --- a/codegens/reactjs-axios/testfile2.txt +++ /dev/null @@ -1 +0,0 @@ -file to test formdatacollection \ No newline at end of file diff --git a/codegens/reactjs-axios/testfile3.txt b/codegens/reactjs-axios/testfile3.txt deleted file mode 100644 index f03583617..000000000 --- a/codegens/reactjs-axios/testfile3.txt +++ /dev/null @@ -1 +0,0 @@ -file to test formdatacollection \ No newline at end of file From f947847e6028b1b30ed52555c77f5ba0e5033bc4 Mon Sep 17 00:00:00 2001 From: 2019UCP1350 <2019UCP1350@mnit.ac.in> Date: Sun, 28 Mar 2021 00:57:33 +0530 Subject: [PATCH 13/13] trying to settle run.js --- codegens/reactjs-axios/test/newman/newman.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codegens/reactjs-axios/test/newman/newman.test.js b/codegens/reactjs-axios/test/newman/newman.test.js index ad6b60059..89b7221e1 100644 --- a/codegens/reactjs-axios/test/newman/newman.test.js +++ b/codegens/reactjs-axios/test/newman/newman.test.js @@ -6,7 +6,7 @@ describe('Convert for different types of request', function () { testConfig = { compileScript: null, runScript: 'node -r esm run.js', - fileName: 'run.mjs', + fileName: 'run.js', headerSnippet: '/* eslint-disable */\n' }; @@ -17,7 +17,7 @@ describe('Convert for different types of request', function () { testConfig = { compileScript: null, runScript: 'node -r esm run.js', - fileName: 'run.mjs', + fileName: 'run.js', headerSnippet: '/* eslint-disable */\n' };