You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							169 lines
						
					
					
						
							3.5 KiB
						
					
					
				
			
		
		
	
	
							169 lines
						
					
					
						
							3.5 KiB
						
					
					
				| 'use strict'
 | |
| 
 | |
| const t = require('tap')
 | |
| const test = t.test
 | |
| const Fastify = require('..')
 | |
| const symbols = require('../lib/symbols.js')
 | |
| 
 | |
| test('default 500', t => {
 | |
|   t.plan(4)
 | |
| 
 | |
|   const fastify = Fastify()
 | |
| 
 | |
|   fastify.get('/', function (req, reply) {
 | |
|     reply.send(new Error('kaboom'))
 | |
|   })
 | |
| 
 | |
|   fastify.inject({
 | |
|     method: 'GET',
 | |
|     url: '/'
 | |
|   }, (err, res) => {
 | |
|     t.error(err)
 | |
|     t.equal(res.statusCode, 500)
 | |
|     t.equal(res.headers['content-type'], 'application/json; charset=utf-8')
 | |
|     t.same(JSON.parse(res.payload), {
 | |
|       error: 'Internal Server Error',
 | |
|       message: 'kaboom',
 | |
|       statusCode: 500
 | |
|     })
 | |
|   })
 | |
| })
 | |
| 
 | |
| test('custom 500', t => {
 | |
|   t.plan(6)
 | |
| 
 | |
|   const fastify = Fastify()
 | |
| 
 | |
|   fastify.get('/', function (req, reply) {
 | |
|     reply.send(new Error('kaboom'))
 | |
|   })
 | |
| 
 | |
|   fastify.setErrorHandler(function (err, request, reply) {
 | |
|     t.type(request, 'object')
 | |
|     t.type(request, fastify[symbols.kRequest])
 | |
|     reply
 | |
|       .code(500)
 | |
|       .type('text/plain')
 | |
|       .send('an error happened: ' + err.message)
 | |
|   })
 | |
| 
 | |
|   fastify.inject({
 | |
|     method: 'GET',
 | |
|     url: '/'
 | |
|   }, (err, res) => {
 | |
|     t.error(err)
 | |
|     t.equal(res.statusCode, 500)
 | |
|     t.equal(res.headers['content-type'], 'text/plain')
 | |
|     t.same(res.payload.toString(), 'an error happened: kaboom')
 | |
|   })
 | |
| })
 | |
| 
 | |
| test('encapsulated 500', t => {
 | |
|   t.plan(10)
 | |
| 
 | |
|   const fastify = Fastify()
 | |
| 
 | |
|   fastify.get('/', function (req, reply) {
 | |
|     reply.send(new Error('kaboom'))
 | |
|   })
 | |
| 
 | |
|   fastify.register(function (f, opts, done) {
 | |
|     f.get('/', function (req, reply) {
 | |
|       reply.send(new Error('kaboom'))
 | |
|     })
 | |
| 
 | |
|     f.setErrorHandler(function (err, request, reply) {
 | |
|       t.type(request, 'object')
 | |
|       t.type(request, f[symbols.kRequest])
 | |
|       reply
 | |
|         .code(500)
 | |
|         .type('text/plain')
 | |
|         .send('an error happened: ' + err.message)
 | |
|     })
 | |
| 
 | |
|     done()
 | |
|   }, { prefix: 'test' })
 | |
| 
 | |
|   fastify.inject({
 | |
|     method: 'GET',
 | |
|     url: '/test'
 | |
|   }, (err, res) => {
 | |
|     t.error(err)
 | |
|     t.equal(res.statusCode, 500)
 | |
|     t.equal(res.headers['content-type'], 'text/plain')
 | |
|     t.same(res.payload.toString(), 'an error happened: kaboom')
 | |
|   })
 | |
| 
 | |
|   fastify.inject({
 | |
|     method: 'GET',
 | |
|     url: '/'
 | |
|   }, (err, res) => {
 | |
|     t.error(err)
 | |
|     t.equal(res.statusCode, 500)
 | |
|     t.equal(res.headers['content-type'], 'application/json; charset=utf-8')
 | |
|     t.same(JSON.parse(res.payload), {
 | |
|       error: 'Internal Server Error',
 | |
|       message: 'kaboom',
 | |
|       statusCode: 500
 | |
|     })
 | |
|   })
 | |
| })
 | |
| 
 | |
| test('custom 500 with hooks', t => {
 | |
|   t.plan(7)
 | |
| 
 | |
|   const fastify = Fastify()
 | |
| 
 | |
|   fastify.get('/', function (req, reply) {
 | |
|     reply.send(new Error('kaboom'))
 | |
|   })
 | |
| 
 | |
|   fastify.setErrorHandler(function (err, request, reply) {
 | |
|     reply
 | |
|       .code(500)
 | |
|       .type('text/plain')
 | |
|       .send('an error happened: ' + err.message)
 | |
|   })
 | |
| 
 | |
|   fastify.addHook('onSend', (req, res, payload, done) => {
 | |
|     t.ok('called', 'onSend')
 | |
|     done()
 | |
|   })
 | |
|   fastify.addHook('onRequest', (req, res, done) => {
 | |
|     t.ok('called', 'onRequest')
 | |
|     done()
 | |
|   })
 | |
|   fastify.addHook('onResponse', (request, reply, done) => {
 | |
|     t.ok('called', 'onResponse')
 | |
|     done()
 | |
|   })
 | |
| 
 | |
|   fastify.inject({
 | |
|     method: 'GET',
 | |
|     url: '/'
 | |
|   }, (err, res) => {
 | |
|     t.error(err)
 | |
|     t.equal(res.statusCode, 500)
 | |
|     t.equal(res.headers['content-type'], 'text/plain')
 | |
|     t.same(res.payload.toString(), 'an error happened: kaboom')
 | |
|   })
 | |
| })
 | |
| 
 | |
| test('cannot set errorHandler after binding', t => {
 | |
|   t.plan(2)
 | |
| 
 | |
|   const fastify = Fastify()
 | |
|   t.teardown(fastify.close.bind(fastify))
 | |
| 
 | |
|   fastify.listen(0, err => {
 | |
|     t.error(err)
 | |
| 
 | |
|     try {
 | |
|       fastify.setErrorHandler(() => { })
 | |
|       t.fail()
 | |
|     } catch (e) {
 | |
|       t.pass()
 | |
|     }
 | |
|   })
 | |
| })
 |