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.
44 lines
902 B
44 lines
902 B
3 years ago
|
'use strict'
|
||
|
|
||
|
const t = require('tap')
|
||
|
const test = t.test
|
||
|
const Fastify = require('..')
|
||
|
|
||
|
test('should fail if defaultRoute is not a function', t => {
|
||
|
t.plan(1)
|
||
|
|
||
|
const fastify = Fastify()
|
||
|
const defaultRoute = {}
|
||
|
|
||
|
fastify.get('/', () => {})
|
||
|
|
||
|
try {
|
||
|
fastify.setDefaultRoute(defaultRoute)
|
||
|
} catch (error) {
|
||
|
t.equal(error.code, 'FST_ERR_DEFAULT_ROUTE_INVALID_TYPE')
|
||
|
}
|
||
|
})
|
||
|
|
||
|
test('correctly sets, returns, and calls defaultRoute', t => {
|
||
|
t.plan(3)
|
||
|
|
||
|
const fastify = Fastify()
|
||
|
const defaultRoute = (req, res) => {
|
||
|
res.end('hello from defaultRoute')
|
||
|
}
|
||
|
|
||
|
fastify.setDefaultRoute(defaultRoute)
|
||
|
const returnedDefaultRoute = fastify.getDefaultRoute()
|
||
|
t.equal(returnedDefaultRoute, defaultRoute)
|
||
|
|
||
|
fastify.get('/', () => {})
|
||
|
|
||
|
fastify.inject({
|
||
|
method: 'GET',
|
||
|
url: '/random'
|
||
|
}, (err, res) => {
|
||
|
t.error(err)
|
||
|
t.equal(res.body, 'hello from defaultRoute')
|
||
|
})
|
||
|
})
|