[Pkg-javascript-commits] [node-mocks-http] 246/296: Fix lint in (legacy) `mockRequest`
Thorsten Alteholz
alteholz at moszumanska.debian.org
Mon Feb 8 18:13:41 UTC 2016
This is an automated email from the git hooks/post-receive script.
alteholz pushed a commit to branch master
in repository node-mocks-http.
commit 1c60de61f13e1bc204481796a53fdddcc2744ce8
Author: Johnny Estilles <johnny.estilles at agentia.asia>
Date: Wed Jun 3 13:03:46 2015 +0800
Fix lint in (legacy) `mockRequest`
---
lib/mockRequest.js | 470 ++++++++++++++++++++++++++---------------------------
1 file changed, 235 insertions(+), 235 deletions(-)
diff --git a/lib/mockRequest.js b/lib/mockRequest.js
index 2b0c9e3..8a93677 100644
--- a/lib/mockRequest.js
+++ b/lib/mockRequest.js
@@ -32,264 +32,264 @@
var url = require('url');
function convertKeysToLowerCase(map) {
- var newMap = {};
- for(var key in map) {
- newMap[key.toLowerCase()] = map[key];
- }
- return newMap;
+ var newMap = {};
+ for(var key in map) {
+ newMap[key.toLowerCase()] = map[key];
+ }
+ return newMap;
}
function createRequest(options) {
- if (!options) {
- options = {};
- }
+ if (!options) {
+ options = {};
+ }
- // creat mockRequest
+ // creat mockRequest
- var mockRequest = {};
+ var mockRequest = {};
- mockRequest.method = (options.method) ? options.method : 'GET';
- mockRequest.url = (options.url) ? options.url : '';
- mockRequest.originalUrl = options.originalUrl || mockRequest.url;
- mockRequest.path = (options.url) ? url.parse(options.url).pathname : '';
- mockRequest.params = (options.params) ? options.params : {};
- if (options.session) {
- mockRequest.session = options.session;
- }
- mockRequest.cookies = (options.cookies) ? options.cookies : {};
- if (options.signedCookies) {
- mockRequest.signedCookies = options.signedCookies;
- }
- mockRequest.headers = (options.headers) ? convertKeysToLowerCase(options.headers) : {};
- mockRequest.body = (options.body) ? options.body : {};
- mockRequest.query = (options.query) ? options.query : {};
- mockRequest.files = (options.files) ? options.files : {};
+ mockRequest.method = (options.method) ? options.method : 'GET';
+ mockRequest.url = (options.url) ? options.url : '';
+ mockRequest.originalUrl = options.originalUrl || mockRequest.url;
+ mockRequest.path = (options.url) ? url.parse(options.url).pathname : '';
+ mockRequest.params = (options.params) ? options.params : {};
+ if (options.session) {
+ mockRequest.session = options.session;
+ }
+ mockRequest.cookies = (options.cookies) ? options.cookies : {};
+ if (options.signedCookies) {
+ mockRequest.signedCookies = options.signedCookies;
+ }
+ mockRequest.headers = (options.headers) ? convertKeysToLowerCase(options.headers) : {};
+ mockRequest.body = (options.body) ? options.body : {};
+ mockRequest.query = (options.query) ? options.query : {};
+ mockRequest.files = (options.files) ? options.files : {};
- //parse query string from url to object
- if (Object.keys(mockRequest.query).length === 0) {
- mockRequest.query = require('querystring').parse(mockRequest.url.split('?')[1]);
- }
+ //parse query string from url to object
+ if (Object.keys(mockRequest.query).length === 0) {
+ mockRequest.query = require('querystring').parse(mockRequest.url.split('?')[1]);
+ }
- /**
- * Return request header.
- *
- * The `Referrer` header field is special-cased,
- * both `Referrer` and `Referer` are interchangeable.
- *
- * Examples:
- *
- * mockRequest.get('Content-Type');
- * // => "text/plain"
- *
- * mockRequest.get('content-type');
- * // => "text/plain"
- *
- * mockRequest.get('Something');
- * // => undefined
- *
- * Aliased as `mockRequest.header()`.
- *
- * @param {String} name
- * @return {String}
- * @api public
- */
+ /**
+ * Return request header.
+ *
+ * The `Referrer` header field is special-cased,
+ * both `Referrer` and `Referer` are interchangeable.
+ *
+ * Examples:
+ *
+ * mockRequest.get('Content-Type');
+ * // => "text/plain"
+ *
+ * mockRequest.get('content-type');
+ * // => "text/plain"
+ *
+ * mockRequest.get('Something');
+ * // => undefined
+ *
+ * Aliased as `mockRequest.header()`.
+ *
+ * @param {String} name
+ * @return {String}
+ * @api public
+ */
- mockRequest.get =
- mockRequest.header = function(name) {
- name = name.toLowerCase();
- switch (name) {
- case 'referer':
- case 'referrer':
- return mockRequest.headers.referrer || mockRequest.headers.referer;
- default:
- return mockRequest.headers[name];
- }
- };
+ mockRequest.get =
+ mockRequest.header = function(name) {
+ name = name.toLowerCase();
+ switch (name) {
+ case 'referer':
+ case 'referrer':
+ return mockRequest.headers.referrer || mockRequest.headers.referer;
+ default:
+ return mockRequest.headers[name];
+ }
+ };
- /**
- * Function: param
- *
- * Return the value of param name when present.
- * Lookup is performed in the following order:
- * - req.params
- * - req.body
- * - req.query
- */
- mockRequest.param = function(parameterName) {
- if (mockRequest.params[parameterName]) {
- return mockRequest.params[parameterName];
- } else if (mockRequest.body[parameterName]) {
- return mockRequest.body[parameterName];
- } else if (mockRequest.query[parameterName]) {
- return mockRequest.query[parameterName];
- }
- return null;
- };
+ /**
+ * Function: param
+ *
+ * Return the value of param name when present.
+ * Lookup is performed in the following order:
+ * - req.params
+ * - req.body
+ * - req.query
+ */
+ mockRequest.param = function(parameterName) {
+ if (mockRequest.params[parameterName]) {
+ return mockRequest.params[parameterName];
+ } else if (mockRequest.body[parameterName]) {
+ return mockRequest.body[parameterName];
+ } else if (mockRequest.query[parameterName]) {
+ return mockRequest.query[parameterName];
+ }
+ return null;
+ };
- /**
- * Function: _setParameter
- *
- * Set parameters that the client can then get using the 'params'
- * key.
- *
- * Parameters:
- *
- * key - The key. For instance, 'bob' would be accessed: request.params.bob
- * value - The value to return when accessed.
- */
- mockRequest._setParameter = function(key, value) {
- mockRequest.params[key] = value;
- };
+ /**
+ * Function: _setParameter
+ *
+ * Set parameters that the client can then get using the 'params'
+ * key.
+ *
+ * Parameters:
+ *
+ * key - The key. For instance, 'bob' would be accessed: request.params.bob
+ * value - The value to return when accessed.
+ */
+ mockRequest._setParameter = function(key, value) {
+ mockRequest.params[key] = value;
+ };
- /**
- * Sets a variable that is stored in the session.
- *
- * @param variable The variable to store in the session
- * @param value The value associated with the variable
- */
- mockRequest._setSessionVariable = function(variable, value) {
- if (typeof mockRequest.session !== 'object') {
- mockRequest.session = {};
- }
- mockRequest.session[variable] = value;
- };
+ /**
+ * Sets a variable that is stored in the session.
+ *
+ * @param variable The variable to store in the session
+ * @param value The value associated with the variable
+ */
+ mockRequest._setSessionVariable = function(variable, value) {
+ if (typeof mockRequest.session !== 'object') {
+ mockRequest.session = {};
+ }
+ mockRequest.session[variable] = value;
+ };
- /**
- * Sets a variable that is stored in the cookies.
- *
- * @param variable The variable to store in the cookies
- * @param value The value associated with the variable
- */
- mockRequest._setCookiesVariable = function(variable, value) {
- mockRequest.cookies[variable] = value;
- };
+ /**
+ * Sets a variable that is stored in the cookies.
+ *
+ * @param variable The variable to store in the cookies
+ * @param value The value associated with the variable
+ */
+ mockRequest._setCookiesVariable = function(variable, value) {
+ mockRequest.cookies[variable] = value;
+ };
- /**
- * Sets a variable that is stored in the signed cookies.
- *
- * @param variable The variable to store in the signed cookies
- * @param value The value associated with the variable
- */
- mockRequest._setSignedCookiesVariable = function(variable, value) {
- if (typeof mockRequest.signedCookies !== 'object') {
- mockRequest.signedCookies = {};
- }
- mockRequest.signedCookies[variable] = value;
- };
+ /**
+ * Sets a variable that is stored in the signed cookies.
+ *
+ * @param variable The variable to store in the signed cookies
+ * @param value The value associated with the variable
+ */
+ mockRequest._setSignedCookiesVariable = function(variable, value) {
+ if (typeof mockRequest.signedCookies !== 'object') {
+ mockRequest.signedCookies = {};
+ }
+ mockRequest.signedCookies[variable] = value;
+ };
- /**
- * Sets a variable that is stored in the headers.
- *
- * @param variable The variable to store in the headers
- * @param value The value associated with the variable
- */
- mockRequest._setHeadersVariable = function(variable, value) {
- variable = variable.toLowerCase();
- mockRequest.headers[variable] = value;
- };
+ /**
+ * Sets a variable that is stored in the headers.
+ *
+ * @param variable The variable to store in the headers
+ * @param value The value associated with the variable
+ */
+ mockRequest._setHeadersVariable = function(variable, value) {
+ variable = variable.toLowerCase();
+ mockRequest.headers[variable] = value;
+ };
- /**
- * Sets a variable that is stored in the files.
- *
- * @param variable The variable to store in the files
- * @param value The value associated with the variable
- */
- mockRequest._setFilesVariable = function(variable, value) {
- mockRequest.files[variable] = value;
- };
+ /**
+ * Sets a variable that is stored in the files.
+ *
+ * @param variable The variable to store in the files
+ * @param value The value associated with the variable
+ */
+ mockRequest._setFilesVariable = function(variable, value) {
+ mockRequest.files[variable] = value;
+ };
- /**
- * Function: _setMethod
- *
- * Sets the HTTP method that the client gets when the called the 'method'
- * property. This defaults to 'GET' if it is not set.
- *
- * Parameters:
- *
- * method - The HTTP method, e.g. GET, POST, PUT, DELETE, etc.
- *
- * Note: We don't validate the string. We just return it.
- */
- mockRequest._setMethod = function(method) {
- mockRequest.method = method;
- };
+ /**
+ * Function: _setMethod
+ *
+ * Sets the HTTP method that the client gets when the called the 'method'
+ * property. This defaults to 'GET' if it is not set.
+ *
+ * Parameters:
+ *
+ * method - The HTTP method, e.g. GET, POST, PUT, DELETE, etc.
+ *
+ * Note: We don't validate the string. We just return it.
+ */
+ mockRequest._setMethod = function(method) {
+ mockRequest.method = method;
+ };
- /**
- * Function: _setURL
- *
- * Sets the URL value that the client gets when the called the 'url'
- * property.
- *
- * Parameters:
- *
- * value - The request path, e.g. /my-route/452
- *
- * Note: We don't validate the string. We just return it. Typically, these
- * do not include hostname, port or that part of the URL.
- */
- mockRequest._setURL = function(value) {
- mockRequest.url = value;
- };
+ /**
+ * Function: _setURL
+ *
+ * Sets the URL value that the client gets when the called the 'url'
+ * property.
+ *
+ * Parameters:
+ *
+ * value - The request path, e.g. /my-route/452
+ *
+ * Note: We don't validate the string. We just return it. Typically, these
+ * do not include hostname, port or that part of the URL.
+ */
+ mockRequest._setURL = function(value) {
+ mockRequest.url = value;
+ };
- /**
- * Function: _setOriginalUrl
- *
- * Sets the URL value that the client gets when the called the 'originalUrl'
- * property.
- *
- * Parameters:
- *
- * value - The request path, e.g. /my-route/452
- *
- * Note: We don't validate the string. We just return it. Typically, these
- * do not include hostname, port or that part of the URL.
- */
- mockRequest._setOriginalUrl = function(value) {
- mockRequest.originalUrl = value;
- };
+ /**
+ * Function: _setOriginalUrl
+ *
+ * Sets the URL value that the client gets when the called the 'originalUrl'
+ * property.
+ *
+ * Parameters:
+ *
+ * value - The request path, e.g. /my-route/452
+ *
+ * Note: We don't validate the string. We just return it. Typically, these
+ * do not include hostname, port or that part of the URL.
+ */
+ mockRequest._setOriginalUrl = function(value) {
+ mockRequest.originalUrl = value;
+ };
- /**
- * Function: _setBody
- *
- * Sets the body that the client gets when the called the 'body'
- * parameter. This defaults to 'GET' if it is not set.
- *
- * Parameters:
- *
- * body - An object representing the body.
- *
- * If you expect the 'body' to come from a form, this typically means that
- * it would be a flat object of properties and values, as in:
- *
- * > { name: 'Howard Abrams',
- * > age: 522
- * > }
- *
- * If the client is expecting a JSON object through a REST interface, then
- * this object could be anything.
- */
- mockRequest._setBody = function(body) {
- mockRequest.body = body;
- };
+ /**
+ * Function: _setBody
+ *
+ * Sets the body that the client gets when the called the 'body'
+ * parameter. This defaults to 'GET' if it is not set.
+ *
+ * Parameters:
+ *
+ * body - An object representing the body.
+ *
+ * If you expect the 'body' to come from a form, this typically means that
+ * it would be a flat object of properties and values, as in:
+ *
+ * > { name: 'Howard Abrams',
+ * > age: 522
+ * > }
+ *
+ * If the client is expecting a JSON object through a REST interface, then
+ * this object could be anything.
+ */
+ mockRequest._setBody = function(body) {
+ mockRequest.body = body;
+ };
- /**
- * Function: _addBody
- *
- * Adds another body parameter the client gets when calling the 'body'
- * parameter with another property value, e.g. the name of a form element
- * that was passed in.
- *
- * Parameters:
- *
- * key - The key. For instance, 'bob' would be accessed: request.params.bob
- * value - The value to return when accessed.
- */
- mockRequest._addBody = function(key, value) {
- mockRequest.body[key] = value;
- };
+ /**
+ * Function: _addBody
+ *
+ * Adds another body parameter the client gets when calling the 'body'
+ * parameter with another property value, e.g. the name of a form element
+ * that was passed in.
+ *
+ * Parameters:
+ *
+ * key - The key. For instance, 'bob' would be accessed: request.params.bob
+ * value - The value to return when accessed.
+ */
+ mockRequest._addBody = function(key, value) {
+ mockRequest.body[key] = value;
+ };
- return mockRequest;
+ return mockRequest;
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-mocks-http.git
More information about the Pkg-javascript-commits
mailing list