pax_global_header00006660000000000000000000000064136417266660014533gustar00rootroot0000000000000052 comment=f5bfbf1f254c9b86315010e91f8f6e47ea776268 node-http-errors-1.7.3/000077500000000000000000000000001364172666600147575ustar00rootroot00000000000000node-http-errors-1.7.3/.eslintignore000066400000000000000000000000261364172666600174600ustar00rootroot00000000000000coverage node_modules node-http-errors-1.7.3/.eslintrc.yml000066400000000000000000000000351364172666600174010ustar00rootroot00000000000000root: true extends: standard node-http-errors-1.7.3/.gitignore000066400000000000000000000001001364172666600167360ustar00rootroot00000000000000 .DS_Store* *.log *.gz node_modules coverage package-lock.json node-http-errors-1.7.3/.travis.yml000066400000000000000000000054751364172666600171030ustar00rootroot00000000000000language: node_js node_js: - "0.6" - "0.8" - "0.10" - "0.12" - "1.8" - "2.5" - "3.3" - "4.9" - "5.12" - "6.17" - "7.10" - "8.16" - "9.11" - "10.16" - "11.15" - "12.4" sudo: false dist: trusty env: global: # Suppress Node.js 0.6 compile warnings - "CXXCOM='$CXX -o $TARGET -c $CXXFLAGS $CCFLAGS -Wno-unused-local-typedefs -Wno-maybe-uninitialized -Wno-narrowing -Wno-strict-overflow $_CCCOMCOM $SOURCES'" cache: directories: - node_modules before_install: - | # Setup utility functions function node_version_lt () { [[ "$(v "$TRAVIS_NODE_VERSION")" -lt "$(v "${1}")" ]] } function npm_module_installed () { npm -lsp ls | grep -Fq "$(pwd)/node_modules/${1}:${1}@" } function npm_remove_module_re () { node -e ' fs = require("fs"); p = JSON.parse(fs.readFileSync("package.json", "utf8")); r = RegExp(process.argv[1]); for (k in p.devDependencies) { if (r.test(k)) delete p.devDependencies[k]; } fs.writeFileSync("package.json", JSON.stringify(p, null, 2) + "\n"); ' "$@" } function npm_use_module () { node -e ' fs = require("fs"); p = JSON.parse(fs.readFileSync("package.json", "utf8")); p.devDependencies[process.argv[1]] = process.argv[2]; fs.writeFileSync("package.json", JSON.stringify(p, null, 2) + "\n"); ' "$@" } function v () { tr '.' '\n' <<< "${1}" \ | awk '{ printf "%03d", $0 }' \ | sed 's/^0*//' } # Configure npm - | # Skip updating shrinkwrap / lock npm config set shrinkwrap false # Setup Node.js version-specific dependencies - | # Configure eslint for linting if node_version_lt '6.0'; then npm_remove_module_re '^eslint(-|$)' fi - | # Configure istanbul for coverage if node_version_lt '0.10'; then npm_remove_module_re '^istanbul$' fi - | # Configure mocha for testing if node_version_lt '0.8' ; then npm_use_module 'mocha' '1.21.5' elif node_version_lt '0.10'; then npm_use_module 'mocha' '2.5.3' elif node_version_lt '4.0' ; then npm_use_module 'mocha' '3.5.3' elif node_version_lt '6.0' ; then npm_use_module 'mocha' '5.2.0' fi # Update Node.js modules - | # Prune & rebuild node_modules if [[ -d node_modules ]]; then npm prune npm rebuild fi script: - | # Run test script, depending on istanbul install if npm_module_installed 'istanbul'; then npm run-script test-travis else npm test fi - | # Run linting, if eslint exists if npm_module_installed 'eslint'; then npm run-script lint fi after_script: - | # Upload coverage to coveralls, if exists if [[ -f ./coverage/lcov.info ]]; then npm install --save-dev coveralls@2 coveralls < ./coverage/lcov.info fi node-http-errors-1.7.3/HISTORY.md000066400000000000000000000062121364172666600164430ustar00rootroot000000000000002019-06-24 / 1.7.3 ================== * deps: inherits@2.0.4 2019-02-18 / 1.7.2 ================== * deps: setprototypeof@1.1.1 2018-09-08 / 1.7.1 ================== * Fix error creating objects in some environments 2018-07-30 / 1.7.0 ================== * Set constructor name when possible * Use `toidentifier` module to make class names * deps: statuses@'>= 1.5.0 < 2' 2018-03-29 / 1.6.3 ================== * deps: depd@~1.1.2 - perf: remove argument reassignment * deps: setprototypeof@1.1.0 * deps: statuses@'>= 1.4.0 < 2' 2017-08-04 / 1.6.2 ================== * deps: depd@1.1.1 - Remove unnecessary `Buffer` loading 2017-02-20 / 1.6.1 ================== * deps: setprototypeof@1.0.3 - Fix shim for old browsers 2017-02-14 / 1.6.0 ================== * Accept custom 4xx and 5xx status codes in factory * Add deprecation message to `"I'mateapot"` export * Deprecate passing status code as anything except first argument in factory * Deprecate using non-error status codes * Make `message` property enumerable for `HttpError`s 2016-11-16 / 1.5.1 ================== * deps: inherits@2.0.3 - Fix issue loading in browser * deps: setprototypeof@1.0.2 * deps: statuses@'>= 1.3.1 < 2' 2016-05-18 / 1.5.0 ================== * Support new code `421 Misdirected Request` * Use `setprototypeof` module to replace `__proto__` setting * deps: statuses@'>= 1.3.0 < 2' - Add `421 Misdirected Request` - perf: enable strict mode * perf: enable strict mode 2016-01-28 / 1.4.0 ================== * Add `HttpError` export, for `err instanceof createError.HttpError` * deps: inherits@2.0.1 * deps: statuses@'>= 1.2.1 < 2' - Fix message for status 451 - Remove incorrect nginx status code 2015-02-02 / 1.3.1 ================== * Fix regression where status can be overwritten in `createError` `props` 2015-02-01 / 1.3.0 ================== * Construct errors using defined constructors from `createError` * Fix error names that are not identifiers - `createError["I'mateapot"]` is now `createError.ImATeapot` * Set a meaningful `name` property on constructed errors 2014-12-09 / 1.2.8 ================== * Fix stack trace from exported function * Remove `arguments.callee` usage 2014-10-14 / 1.2.7 ================== * Remove duplicate line 2014-10-02 / 1.2.6 ================== * Fix `expose` to be `true` for `ClientError` constructor 2014-09-28 / 1.2.5 ================== * deps: statuses@1 2014-09-21 / 1.2.4 ================== * Fix dependency version to work with old `npm`s 2014-09-21 / 1.2.3 ================== * deps: statuses@~1.1.0 2014-09-21 / 1.2.2 ================== * Fix publish error 2014-09-21 / 1.2.1 ================== * Support Node.js 0.6 * Use `inherits` instead of `util` 2014-09-09 / 1.2.0 ================== * Fix the way inheriting functions * Support `expose` being provided in properties argument 2014-09-08 / 1.1.0 ================== * Default status to 500 * Support provided `error` to extend 2014-09-08 / 1.0.1 ================== * Fix accepting string message 2014-09-08 / 1.0.0 ================== * Initial release node-http-errors-1.7.3/LICENSE000066400000000000000000000022201364172666600157600ustar00rootroot00000000000000 The MIT License (MIT) Copyright (c) 2014 Jonathan Ong me@jongleberry.com Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. node-http-errors-1.7.3/README.md000066400000000000000000000126621364172666600162450ustar00rootroot00000000000000# http-errors [![NPM Version][npm-version-image]][npm-url] [![NPM Downloads][npm-downloads-image]][node-url] [![Node.js Version][node-image]][node-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] Create HTTP errors for Express, Koa, Connect, etc. with ease. ## Install This is a [Node.js](https://nodejs.org/en/) module available through the [npm registry](https://www.npmjs.com/). Installation is done using the [`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): ```bash $ npm install http-errors ``` ## Example ```js var createError = require('http-errors') var express = require('express') var app = express() app.use(function (req, res, next) { if (!req.user) return next(createError(401, 'Please login to view this page.')) next() }) ``` ## API This is the current API, currently extracted from Koa and subject to change. ### Error Properties - `expose` - can be used to signal if `message` should be sent to the client, defaulting to `false` when `status` >= 500 - `headers` - can be an object of header names to values to be sent to the client, defaulting to `undefined`. When defined, the key names should all be lower-cased - `message` - the traditional error message, which should be kept short and all single line - `status` - the status code of the error, mirroring `statusCode` for general compatibility - `statusCode` - the status code of the error, defaulting to `500` ### createError([status], [message], [properties]) Create a new error object with the given message `msg`. The error object inherits from `createError.HttpError`. ```js var err = createError(404, 'This video does not exist!') ``` - `status: 500` - the status code as a number - `message` - the message of the error, defaulting to node's text for that status code. - `properties` - custom properties to attach to the object ### createError([status], [error], [properties]) Extend the given `error` object with `createError.HttpError` properties. This will not alter the inheritance of the given `error` object, and the modified `error` object is the return value. ```js fs.readFile('foo.txt', function (err, buf) { if (err) { if (err.code === 'ENOENT') { var httpError = createError(404, err, { expose: false }) } else { var httpError = createError(500, err) } } }) ``` - `status` - the status code as a number - `error` - the error object to extend - `properties` - custom properties to attach to the object ### new createError\[code || name\](\[msg]\)) Create a new error object with the given message `msg`. The error object inherits from `createError.HttpError`. ```js var err = new createError.NotFound() ``` - `code` - the status code as a number - `name` - the name of the error as a "bumpy case", i.e. `NotFound` or `InternalServerError`. #### List of all constructors |Status Code|Constructor Name | |-----------|-----------------------------| |400 |BadRequest | |401 |Unauthorized | |402 |PaymentRequired | |403 |Forbidden | |404 |NotFound | |405 |MethodNotAllowed | |406 |NotAcceptable | |407 |ProxyAuthenticationRequired | |408 |RequestTimeout | |409 |Conflict | |410 |Gone | |411 |LengthRequired | |412 |PreconditionFailed | |413 |PayloadTooLarge | |414 |URITooLong | |415 |UnsupportedMediaType | |416 |RangeNotSatisfiable | |417 |ExpectationFailed | |418 |ImATeapot | |421 |MisdirectedRequest | |422 |UnprocessableEntity | |423 |Locked | |424 |FailedDependency | |425 |UnorderedCollection | |426 |UpgradeRequired | |428 |PreconditionRequired | |429 |TooManyRequests | |431 |RequestHeaderFieldsTooLarge | |451 |UnavailableForLegalReasons | |500 |InternalServerError | |501 |NotImplemented | |502 |BadGateway | |503 |ServiceUnavailable | |504 |GatewayTimeout | |505 |HTTPVersionNotSupported | |506 |VariantAlsoNegotiates | |507 |InsufficientStorage | |508 |LoopDetected | |509 |BandwidthLimitExceeded | |510 |NotExtended | |511 |NetworkAuthenticationRequired| ## License [MIT](LICENSE) [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/http-errors/master [coveralls-url]: https://coveralls.io/r/jshttp/http-errors?branch=master [node-image]: https://badgen.net/npm/node/http-errors [node-url]: https://nodejs.org/en/download [npm-downloads-image]: https://badgen.net/npm/dm/http-errors [npm-url]: https://npmjs.org/package/http-errors [npm-version-image]: https://badgen.net/npm/v/http-errors [travis-image]: https://badgen.net/travis/jshttp/http-errors/master [travis-url]: https://travis-ci.org/jshttp/http-errors node-http-errors-1.7.3/index.js000066400000000000000000000133661364172666600164350ustar00rootroot00000000000000/*! * http-errors * Copyright(c) 2014 Jonathan Ong * Copyright(c) 2016 Douglas Christopher Wilson * MIT Licensed */ 'use strict' /** * Module dependencies. * @private */ var deprecate = require('depd')('http-errors') var setPrototypeOf = require('setprototypeof') var statuses = require('statuses') var inherits = require('inherits') var toIdentifier = require('toidentifier') /** * Module exports. * @public */ module.exports = createError module.exports.HttpError = createHttpErrorConstructor() // Populate exports for all constructors populateConstructorExports(module.exports, statuses.codes, module.exports.HttpError) /** * Get the code class of a status code. * @private */ function codeClass (status) { return Number(String(status).charAt(0) + '00') } /** * Create a new HTTP Error. * * @returns {Error} * @public */ function createError () { // so much arity going on ~_~ var err var msg var status = 500 var props = {} for (var i = 0; i < arguments.length; i++) { var arg = arguments[i] if (arg instanceof Error) { err = arg status = err.status || err.statusCode || status continue } switch (typeof arg) { case 'string': msg = arg break case 'number': status = arg if (i !== 0) { deprecate('non-first-argument status code; replace with createError(' + arg + ', ...)') } break case 'object': props = arg break } } if (typeof status === 'number' && (status < 400 || status >= 600)) { deprecate('non-error status code; use only 4xx or 5xx status codes') } if (typeof status !== 'number' || (!statuses[status] && (status < 400 || status >= 600))) { status = 500 } // constructor var HttpError = createError[status] || createError[codeClass(status)] if (!err) { // create error err = HttpError ? new HttpError(msg) : new Error(msg || statuses[status]) Error.captureStackTrace(err, createError) } if (!HttpError || !(err instanceof HttpError) || err.status !== status) { // add properties to generic error err.expose = status < 500 err.status = err.statusCode = status } for (var key in props) { if (key !== 'status' && key !== 'statusCode') { err[key] = props[key] } } return err } /** * Create HTTP error abstract base class. * @private */ function createHttpErrorConstructor () { function HttpError () { throw new TypeError('cannot construct abstract class') } inherits(HttpError, Error) return HttpError } /** * Create a constructor for a client error. * @private */ function createClientErrorConstructor (HttpError, name, code) { var className = name.match(/Error$/) ? name : name + 'Error' function ClientError (message) { // create the error object var msg = message != null ? message : statuses[code] var err = new Error(msg) // capture a stack trace to the construction point Error.captureStackTrace(err, ClientError) // adjust the [[Prototype]] setPrototypeOf(err, ClientError.prototype) // redefine the error message Object.defineProperty(err, 'message', { enumerable: true, configurable: true, value: msg, writable: true }) // redefine the error name Object.defineProperty(err, 'name', { enumerable: false, configurable: true, value: className, writable: true }) return err } inherits(ClientError, HttpError) nameFunc(ClientError, className) ClientError.prototype.status = code ClientError.prototype.statusCode = code ClientError.prototype.expose = true return ClientError } /** * Create a constructor for a server error. * @private */ function createServerErrorConstructor (HttpError, name, code) { var className = name.match(/Error$/) ? name : name + 'Error' function ServerError (message) { // create the error object var msg = message != null ? message : statuses[code] var err = new Error(msg) // capture a stack trace to the construction point Error.captureStackTrace(err, ServerError) // adjust the [[Prototype]] setPrototypeOf(err, ServerError.prototype) // redefine the error message Object.defineProperty(err, 'message', { enumerable: true, configurable: true, value: msg, writable: true }) // redefine the error name Object.defineProperty(err, 'name', { enumerable: false, configurable: true, value: className, writable: true }) return err } inherits(ServerError, HttpError) nameFunc(ServerError, className) ServerError.prototype.status = code ServerError.prototype.statusCode = code ServerError.prototype.expose = false return ServerError } /** * Set the name of a function, if possible. * @private */ function nameFunc (func, name) { var desc = Object.getOwnPropertyDescriptor(func, 'name') if (desc && desc.configurable) { desc.value = name Object.defineProperty(func, 'name', desc) } } /** * Populate the exports object with constructors for every error class. * @private */ function populateConstructorExports (exports, codes, HttpError) { codes.forEach(function forEachCode (code) { var CodeError var name = toIdentifier(statuses[code]) switch (codeClass(code)) { case 400: CodeError = createClientErrorConstructor(HttpError, name, code) break case 500: CodeError = createServerErrorConstructor(HttpError, name, code) break } if (CodeError) { // export the constructor exports[code] = CodeError exports[name] = CodeError } }) // backwards-compatibility exports["I'mateapot"] = deprecate.function(exports.ImATeapot, '"I\'mateapot"; use "ImATeapot" instead') } node-http-errors-1.7.3/package.json000066400000000000000000000024751364172666600172550ustar00rootroot00000000000000{ "name": "http-errors", "description": "Create HTTP error objects", "version": "1.7.3", "author": "Jonathan Ong (http://jongleberry.com)", "contributors": [ "Alan Plum ", "Douglas Christopher Wilson " ], "license": "MIT", "repository": "jshttp/http-errors", "dependencies": { "depd": "~1.1.2", "inherits": "2.0.4", "setprototypeof": "1.1.1", "statuses": ">= 1.5.0 < 2", "toidentifier": "1.0.0" }, "devDependencies": { "eslint": "5.16.0", "eslint-config-standard": "12.0.0", "eslint-plugin-import": "2.18.0", "eslint-plugin-markdown": "1.0.0", "eslint-plugin-node": "8.0.1", "eslint-plugin-promise": "4.1.1", "eslint-plugin-standard": "4.0.0", "istanbul": "0.4.5", "mocha": "6.1.4" }, "engines": { "node": ">= 0.6" }, "scripts": { "lint": "eslint --plugin markdown --ext js,md . && node ./scripts/lint-readme-list.js", "test": "mocha --reporter spec --bail", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot" }, "keywords": [ "http", "error" ], "files": [ "index.js", "HISTORY.md", "LICENSE", "README.md" ] } node-http-errors-1.7.3/scripts/000077500000000000000000000000001364172666600164465ustar00rootroot00000000000000node-http-errors-1.7.3/scripts/lint-readme-list.js000066400000000000000000000013641364172666600221620ustar00rootroot00000000000000var assert = require('assert') var createError = require('..') var fs = require('fs') var path = require('path') var util = require('util') var README_PATH = path.join(__dirname, '..', 'README.md') var README_CONTENTS = fs.readFileSync(README_PATH, 'utf-8') for (var key in createError) { if (!createError.hasOwnProperty(key)) { continue } if (!isNaN(key)) { continue } var constructor = createError[key] var statusCode = constructor.prototype.statusCode if (createError[statusCode] !== constructor) { continue } var regexp = new RegExp(util.format('^\\|%d\\s*\\|%s\\s*\\|$', statusCode, key), 'm') assert.ok(regexp.test(README_CONTENTS), util.format('README constructor list contains %d %s', statusCode, key)) } node-http-errors-1.7.3/test/000077500000000000000000000000001364172666600157365ustar00rootroot00000000000000node-http-errors-1.7.3/test/.eslintrc.yml000066400000000000000000000000231364172666600203550ustar00rootroot00000000000000env: mocha: true node-http-errors-1.7.3/test/test.js000066400000000000000000000263631364172666600172650ustar00rootroot00000000000000 process.env.NO_DEPRECATION = 'http-errors' var assert = require('assert') var util = require('util') var createError = require('..') describe('createError(status)', function () { it('should create error object', function () { assert.ok(util.isError(createError(500))) // eslint-disable-line node/no-deprecated-api }) describe('when status 300', function () { before(function () { this.error = createError(300) }) it('should have "message" property of "Multiple Choices"', function () { assert.strictEqual(this.error.message, 'Multiple Choices') }) it('should have "name" property of "Error"', function () { assert.strictEqual(this.error.name, 'Error') }) it('should have "status" property of 300', function () { assert.strictEqual(this.error.status, 300) }) it('should have "statusCode" property of 300', function () { assert.strictEqual(this.error.statusCode, 300) }) }) describe('when status 404', function () { before(function () { this.error = createError(404) }) it('should have "message" property of "Not Found"', function () { assert.strictEqual(this.error.message, 'Not Found') }) it('should have "name" property of "NotFoundError"', function () { assert.strictEqual(this.error.name, 'NotFoundError') }) it('should have "status" property of 404', function () { assert.strictEqual(this.error.status, 404) }) it('should have "statusCode" property of 404', function () { assert.strictEqual(this.error.statusCode, 404) }) }) describe('when status unknown 4xx', function () { before(function () { this.error = createError(499) }) it('should have "message" property of "Bad Request"', function () { assert.strictEqual(this.error.message, 'Bad Request') }) it('should have "name" property of "BadRequestError"', function () { assert.strictEqual(this.error.name, 'BadRequestError') }) it('should have "status" property with code', function () { assert.strictEqual(this.error.status, 499) }) it('should have "statusCode" property with code', function () { assert.strictEqual(this.error.statusCode, 499) }) }) describe('when status unknown 5xx', function () { before(function () { this.error = createError(599) }) it('should have "message" property of "Internal Server Error"', function () { assert.strictEqual(this.error.message, 'Internal Server Error') }) it('should have "name" property of "InternalServerError"', function () { assert.strictEqual(this.error.name, 'InternalServerError') }) it('should have "status" property with code', function () { assert.strictEqual(this.error.status, 599) }) it('should have "statusCode" property with code', function () { assert.strictEqual(this.error.statusCode, 599) }) }) }) describe('createError(status, message)', function () { before(function () { this.error = createError(404, 'missing') }) it('should create error object', function () { assert.ok(util.isError(this.error)) // eslint-disable-line node/no-deprecated-api }) it('should have "message" property with message', function () { assert.strictEqual(this.error.message, 'missing') }) it('should have "status" property with status', function () { assert.strictEqual(this.error.status, 404) }) it('should have "statusCode" property with status', function () { assert.strictEqual(this.error.statusCode, 404) }) }) describe('HTTP Errors', function () { it('createError(status, props)', function () { var err = createError(404, { id: 1 }) assert.strictEqual(err.name, 'NotFoundError') assert.strictEqual(err.message, 'Not Found') assert.strictEqual(err.status, 404) assert.strictEqual(err.statusCode, 404) assert.strictEqual(err.id, 1) }) it('createError(status, props) with status prop', function () { var err = createError(404, { id: 1, status: 500 }) assert.strictEqual(err.name, 'NotFoundError') assert.strictEqual(err.message, 'Not Found') assert.strictEqual(err.status, 404) assert.strictEqual(err.statusCode, 404) assert.strictEqual(err.id, 1) }) it('createError(status, props) with statusCode prop', function () { var err = createError(404, { id: 1, statusCode: 500 }) assert.strictEqual(err.name, 'NotFoundError') assert.strictEqual(err.message, 'Not Found') assert.strictEqual(err.status, 404) assert.strictEqual(err.statusCode, 404) assert.strictEqual(err.id, 1) }) it('createError(props)', function () { var err = createError({ id: 1 }) assert.strictEqual(err.name, 'InternalServerError') assert.strictEqual(err.message, 'Internal Server Error') assert.strictEqual(err.status, 500) assert.strictEqual(err.statusCode, 500) assert.strictEqual(err.id, 1) }) it('createError(msg, status)', function () { var err = createError('LOL', 404) assert.strictEqual(err.name, 'NotFoundError') assert.strictEqual(err.message, 'LOL') assert.strictEqual(err.status, 404) assert.strictEqual(err.statusCode, 404) }) it('createError(msg)', function () { var err = createError('LOL') assert.strictEqual(err.name, 'InternalServerError') assert.strictEqual(err.message, 'LOL') assert.strictEqual(err.status, 500) assert.strictEqual(err.statusCode, 500) }) it('createError(msg, props)', function () { var err = createError('LOL', { id: 1 }) assert.strictEqual(err.name, 'InternalServerError') assert.strictEqual(err.message, 'LOL') assert.strictEqual(err.status, 500) assert.strictEqual(err.statusCode, 500) assert.strictEqual(err.id, 1) }) it('createError(err)', function () { var _err = new Error('LOL') _err.status = 404 var err = createError(_err) assert.strictEqual(err, _err) assert.strictEqual(err.name, 'Error') assert.strictEqual(err.message, 'LOL') assert.strictEqual(err.status, 404) assert.strictEqual(err.statusCode, 404) assert.strictEqual(err.expose, true) _err = new Error('LOL') err = createError(_err) assert.strictEqual(err, _err) assert.strictEqual(err.name, 'Error') assert.strictEqual(err.message, 'LOL') assert.strictEqual(err.status, 500) assert.strictEqual(err.statusCode, 500) assert.strictEqual(err.expose, false) err = createError(null) assert.notStrictEqual(err, null) assert.strictEqual(err.name, 'InternalServerError') assert.strictEqual(err.message, 'Internal Server Error') assert.strictEqual(err.status, 500) assert.strictEqual(err.statusCode, 500) assert.strictEqual(err.expose, false) }) it('createError(err) with invalid err.status', function () { var _err = new Error('Connection refused') _err.status = -1 var err = createError(_err) assert.strictEqual(err, _err) assert.strictEqual(err.name, 'Error') assert.strictEqual(err.message, 'Connection refused') assert.strictEqual(err.status, 500) assert.strictEqual(err.statusCode, 500) assert.strictEqual(err.expose, false) }) it('createError(err, props)', function () { var _err = new Error('LOL') _err.status = 404 var err = createError(_err, { id: 1 }) assert.strictEqual(err.name, 'Error') assert.strictEqual(err.message, 'LOL') assert.strictEqual(err.status, 404) assert.strictEqual(err.statusCode, 404) assert.strictEqual(err.id, 1) assert.strictEqual(err.expose, true) }) it('createError(status, err, props)', function () { var _err = new Error('LOL') var err = createError(404, _err, { id: 1 }) assert.strictEqual(err, _err) assert.strictEqual(err.name, 'Error') assert.strictEqual(err.message, 'LOL') assert.strictEqual(err.status, 404) assert.strictEqual(err.statusCode, 404) assert.strictEqual(err.id, 1) }) it('createError(status, msg, props)', function () { var err = createError(404, 'LOL', { id: 1 }) assert.strictEqual(err.name, 'NotFoundError') assert.strictEqual(err.message, 'LOL') assert.strictEqual(err.status, 404) assert.strictEqual(err.statusCode, 404) assert.strictEqual(err.id, 1) }) it('createError(status, msg, { expose: false })', function () { var err = createError(404, 'LOL', { expose: false }) assert.strictEqual(err.expose, false) }) it('new createError.HttpError()', function () { assert.throws(function () { new createError.HttpError() // eslint-disable-line no-new }, /cannot construct abstract class/) }) it('new createError.NotFound()', function () { var err = new createError.NotFound() assert.strictEqual(err.name, 'NotFoundError') assert.strictEqual(err.message, 'Not Found') assert.strictEqual(err.status, 404) assert.strictEqual(err.statusCode, 404) assert.strictEqual(err.expose, true) assert(err.stack) }) it('new createError.InternalServerError()', function () { var err = new createError.InternalServerError() assert.strictEqual(err.name, 'InternalServerError') assert.strictEqual(err.message, 'Internal Server Error') assert.strictEqual(err.status, 500) assert.strictEqual(err.statusCode, 500) assert.strictEqual(err.expose, false) assert(err.stack) }) it('new createError["404"]()', function () { var err = new createError['404']() assert.strictEqual(err.name, 'NotFoundError') assert.strictEqual(err.message, 'Not Found') assert.strictEqual(err.status, 404) assert.strictEqual(err.statusCode, 404) assert.strictEqual(err.expose, true) assert(err.stack) }) it('should preserve error [[Class]]', function () { assert.strictEqual(Object.prototype.toString.call(createError('LOL')), '[object Error]') assert.strictEqual(Object.prototype.toString.call(new createError[404]()), '[object Error]') assert.strictEqual(Object.prototype.toString.call(new createError[500]()), '[object Error]') }) it('should support err instanceof Error', function () { assert(createError(404) instanceof Error) assert((new createError['404']()) instanceof Error) assert((new createError['500']()) instanceof Error) }) it('should support err instanceof exposed constructor', function () { assert(createError(404) instanceof createError.NotFound) assert(createError(500) instanceof createError.InternalServerError) assert((new createError['404']()) instanceof createError.NotFound) assert((new createError['500']()) instanceof createError.InternalServerError) assert((new createError.NotFound()) instanceof createError.NotFound) assert((new createError.InternalServerError()) instanceof createError.InternalServerError) }) it('should support err instanceof HttpError', function () { assert(createError(404) instanceof createError.HttpError) assert((new createError['404']()) instanceof createError.HttpError) assert((new createError['500']()) instanceof createError.HttpError) }) it('should support util.isError()', function () { /* eslint-disable node/no-deprecated-api */ assert(util.isError(createError(404))) assert(util.isError(new createError['404']())) assert(util.isError(new createError['500']())) /* eslint-enable node/no-deprecated-api */ }) })