fastify
Version:
Fast and low overhead web framework, for Node.js
70 lines (66 loc) • 1.28 kB
JavaScript
'use strict'
const t = require('tap')
const test = t.test
const Fastify = require('..')
test('case insensitive header validation', t => {
t.plan(2)
const fastify = Fastify()
fastify.route({
method: 'GET',
url: '/',
handler: (req, reply) => {
reply.code(200).send(req.headers.foobar)
},
schema: {
headers: {
type: 'object',
required: ['FooBar'],
properties: {
FooBar: { type: 'string' }
}
}
}
})
fastify.inject({
method: 'GET',
url: '/',
headers: {
'FooBar': 'Baz'
}
}, (err, res) => {
t.error(err)
t.equal(res.payload, 'Baz')
})
})
test('not evaluate json-schema $schema keyword', t => {
t.plan(2)
const fastify = Fastify()
fastify.route({
method: 'POST',
url: '/',
handler: (req, reply) => {
reply.code(200).send(req.body.hello)
},
schema: {
body: {
$schema: 'http://json-schema.org/draft-07/schema#',
type: 'object',
properties: {
hello: {
type: 'string'
}
}
}
}
})
fastify.inject({
method: 'POST',
url: '/',
body: {
hello: 'world'
}
}, (err, res) => {
t.error(err)
t.equal(res.payload, 'world')
})
})