Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,23 @@ function toString () {
return `${this.name} [${this.code}]: ${this.message}`
}

const FastifyGenericErrorSymbol = Symbol.for('fastify-error-generic')

function createError (code, message, statusCode = 500, Base = Error, captureStackTrace = createError.captureStackTrace) {
const shouldCreateFastifyGenericError = code === FastifyGenericErrorSymbol

if (shouldCreateFastifyGenericError) {
code = 'FST_ERR'
}

if (!code) throw new Error('Fastify error code must not be empty')
if (!message) throw new Error('Fastify error message must not be empty')

code = code.toUpperCase()
!statusCode && (statusCode = undefined)

const FastifySpecificErrorSymbol = Symbol.for(`fastify-error ${code}`)

function FastifyError (...args) {
if (!new.target) {
return new FastifyError(...args)
Expand All @@ -38,9 +48,41 @@ function createError (code, message, statusCode = 500, Base = Error, captureStac
enumerable: false,
writable: true,
configurable: true
},
[FastifyGenericErrorSymbol]: {
value: true,
enumerable: false,
writable: false,
configurable: false
},
[FastifySpecificErrorSymbol]: {
value: true,
enumerable: false,
writable: false,
configurable: false
}
})

if (shouldCreateFastifyGenericError) {
Object.defineProperty(FastifyError, Symbol.hasInstance, {
value (instance) {
return instance && instance[FastifyGenericErrorSymbol]
},
configurable: false,
writable: false,
enumerable: false
})
} else {
Object.defineProperty(FastifyError, Symbol.hasInstance, {
value (instance) {
return instance && instance[FastifySpecificErrorSymbol]
},
configurable: false,
writable: false,
enumerable: false
})
}

FastifyError.prototype[Symbol.toStringTag] = 'Error'

FastifyError.prototype.toString = toString
Expand All @@ -50,6 +92,9 @@ function createError (code, message, statusCode = 500, Base = Error, captureStac

createError.captureStackTrace = true

const FastifyErrorConstructor = createError(FastifyGenericErrorSymbol, 'Fastify Error', 500, Error)

module.exports = createError
module.exports.FastifyError = FastifyErrorConstructor
module.exports.default = createError
module.exports.createError = createError
11 changes: 10 additions & 1 deletion test/index.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict'

const test = require('node:test')
const createError = require('..')
const { createError, FastifyError } = require('..')

test('Create error with zero parameter', (t) => {
t.plan(6)
Expand Down Expand Up @@ -221,3 +221,12 @@ test('Create an error with last argument null', (t) => {
t.assert.ok(err instanceof Error)
t.assert.ifError(err.cause)
})

test('check if FastifyError is instantiable', (t) => {
t.plan(2)

const err = new FastifyError()

t.assert.ok(err instanceof FastifyError)
t.assert.ok(err instanceof Error)
})
183 changes: 183 additions & 0 deletions test/instanceof.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
'use strict'

const cp = require('node:child_process')
const fs = require('node:fs')
const path = require('node:path')
const os = require('node:os')
const test = require('node:test')
const { createError, FastifyError } = require('..')

test('check if createError creates an Error which is instanceof Error', (t) => {
t.plan(3)

const CustomFastifyError = createError('CODE', 'Not available')
const err = CustomFastifyError()

t.assert.ok(err instanceof Error)
t.assert.ok(err instanceof SyntaxError === false)
t.assert.ok(err instanceof TypeError === false)
})

test('check if createError creates an Error which is instanceof FastifyError', (t) => {
t.plan(4)

const CustomFastifyError = createError('CODE', 'Not available')
const err = CustomFastifyError()

t.assert.ok(err instanceof Error)
t.assert.ok(err instanceof FastifyError)
t.assert.ok(err instanceof SyntaxError === false)
t.assert.ok(err instanceof TypeError === false)
})

test('check if createError creates an Error with the right BaseConstructor', (t) => {
t.plan(2)

const CustomFastifyError = createError('CODE', 'Not available', 500, TypeError)
const err = CustomFastifyError()

t.assert.ok(err instanceof Error)
t.assert.ok(err instanceof TypeError)
})

test('check if createError creates an Error with the right BaseConstructor, which is a FastifyError', (t) => {
t.plan(6)

const BaseFastifyError = createError('CODE', 'Not available', 500, TypeError)
const CustomFastifyError = createError('CODE', 'Not available', 500, BaseFastifyError)
const err = CustomFastifyError()

t.assert.ok(err instanceof Error)
t.assert.ok(err instanceof TypeError)
t.assert.ok(err instanceof FastifyError)
t.assert.ok(err instanceof BaseFastifyError)
t.assert.ok(err instanceof CustomFastifyError)
t.assert.ok(err instanceof SyntaxError === false)
})

test('instanceof', async (t) => {
const assertsPlanned = 5
t.plan(assertsPlanned)

const testCwd = path.resolve(os.tmpdir())

fs.mkdirSync(path.resolve(testCwd, 'node_modules', 'fastify-error'), { recursive: true })

fs.copyFileSync(path.resolve(process.cwd(), 'index.js'), path.resolve(testCwd, 'node_modules', 'fastify-error', 'index.js'))
fs.copyFileSync(path.resolve(process.cwd(), 'package.json'), path.resolve(testCwd, 'node_modules', 'fastify-error', 'package.json'))

fs.mkdirSync(path.resolve(testCwd, 'node_modules', 'main', 'node_modules', 'fastify-error'), { recursive: true })

fs.copyFileSync(path.resolve(process.cwd(), 'index.js'), path.resolve(testCwd, 'node_modules', 'main', 'node_modules', 'fastify-error', 'index.js'))
fs.copyFileSync(path.resolve(process.cwd(), 'package.json'), path.resolve(testCwd, 'node_modules', 'main', 'node_modules', 'fastify-error', 'package.json'))

fs.writeFileSync(path.resolve(testCwd, 'node_modules', 'main', 'package.json'), `
{
"name": "main",
"version": "1.0.0",
"description": "main",
"main": "index.js",
"dependencies": {
"fastify-error": "1.0.0"
}
}
`)
fs.writeFileSync(path.resolve(testCwd, 'node_modules', 'main', 'index.js'), `
'use strict'

const { createError } = require('fastify-error')

const Boom = createError('Boom', 'Boom', 500)
const ChildBoom = createError('ChildBoom', 'Boom', 500, Boom)

module.exports.foo = function foo () {
throw new ChildBoom('foo go Boom')
}
`)

fs.writeFileSync(path.resolve(testCwd, 'package.json'), `
{
"name": "test",
"version": "1.0.0",
"description": "main",
"main": "index.js",
"dependencies": {
"fastify-error": "1.0.0",
"main": "1.0.0"
}
}
`)
fs.writeFileSync(path.resolve(testCwd, 'index.js'), `
'use strict'
const { createError, FastifyError } = require('fastify-error')
const { foo } = require('main')

const Boom = createError('Boom', 'Boom', 500)
const ChildBoom = createError('ChildBoom', 'Boom', 500, Boom)
const NotChildBoom = createError('NotChildBoom', 'NotChildBoom', 500, Boom)

try {
foo()
} catch (err) {
process.send(err instanceof Error)
process.send(err instanceof FastifyError)
process.send(err instanceof NotChildBoom)
process.send(err instanceof Boom)
process.send(err instanceof ChildBoom)
}
`)

const finishedPromise = {
promise: undefined,
reject: undefined,
resolve: undefined,
}

finishedPromise.promise = new Promise((resolve, reject) => {
finishedPromise.resolve = resolve
finishedPromise.reject = reject
})

const child = cp.fork(path.resolve(testCwd, 'index.js'), {
cwd: testCwd,
stdio: 'inherit',
env: {
...process.env,
NODE_OPTIONS: '--no-warnings'
},
})

let messageCount = 0
child.on('message', message => {
try {
switch (messageCount) {
case 0:
t.assert.strictEqual(message, true, 'instanceof Error')
break
case 1:
t.assert.strictEqual(message, true, 'instanceof FastifyError')
break
case 2:
t.assert.strictEqual(message, false, 'instanceof NotChildBoom')
break
case 3:
t.assert.strictEqual(message, true, 'instanceof Boom')
break
case 4:
t.assert.strictEqual(message, true, 'instanceof ChildBoom')
break
}
if (++messageCount === assertsPlanned) {
finishedPromise.resolve()
}
} catch (err) {
finishedPromise.reject(err)
}
})

child.on('error', err => {
finishedPromise.reject(err)
})

await finishedPromise.promise
})
2 changes: 2 additions & 0 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ declare namespace createError {
readonly prototype: FastifyError & E
}

export const FastifyError: FastifyErrorConstructor

export const createError: CreateError
export { createError as default }
}
Expand Down
13 changes: 13 additions & 0 deletions types/index.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,16 @@ expectError(new CustomTypedArgError6('a', 'b', 'c', 'd', 'e'))
const CustomErrorWithErrorConstructor = createError('ERROR_CODE', 'message', 500, TypeError)
expectType<FastifyErrorConstructor<{ code: 'ERROR_CODE', statusCode: 500 }>>(CustomErrorWithErrorConstructor)
CustomErrorWithErrorConstructor({ cause: new Error('Error') })
const customErrorWithErrorConstructor = CustomErrorWithErrorConstructor()
if (customErrorWithErrorConstructor instanceof FastifyError) {
expectType<'ERROR_CODE'>(customErrorWithErrorConstructor.code)
expectType<string>(customErrorWithErrorConstructor.message)
expectType<500>(customErrorWithErrorConstructor.statusCode)
}

const error = new FastifyError('ERROR_CODE', 'message', 500)
if (error instanceof FastifyError) {
expectType<string>(error.code)
expectType<string>(error.message)
expectType<number | undefined>(error.statusCode)
}