fastify
Version:
Fast and low overhead web framework, for Node.js
99 lines (84 loc) • 2.03 kB
JavaScript
const t = require('tap')
const test = t.test
const request = require('request')
const fastify = require('..')()
const schema = {
schema: { },
config: {
value1: 'foo',
value2: true
}
}
function handler (req, reply) {
reply.serializer(JSON.stringify).send(reply.store.config)
}
test('config - get', t => {
t.plan(1)
fastify.get('/get', {
schema: schema.schema,
config: Object.assign({}, schema.config)
}, handler)
t.pass()
})
test('config - route', t => {
t.plan(1)
fastify.route({
method: 'GET',
url: '/route',
schema: schema.schema,
handler: handler,
config: Object.assign({}, schema.config)
})
t.pass()
})
test('config - no config', t => {
t.plan(1)
fastify.route({
method: 'GET',
url: '/no-config',
schema: schema.schema,
handler: handler
})
t.pass()
})
fastify.listen(0, err => {
t.error(err)
fastify.server.unref()
test('config - request get', t => {
t.plan(3)
request({
method: 'GET',
uri: 'http://localhost:' + fastify.server.address().port + '/get',
json: true
}, (err, response, body) => {
t.error(err)
t.strictEqual(response.statusCode, 200)
t.deepEquals(response.body, Object.assign({url: '/get'}, schema.config))
})
})
test('config - request route', t => {
t.plan(3)
request({
method: 'GET',
uri: 'http://localhost:' + fastify.server.address().port + '/route',
json: true
}, (err, response, body) => {
t.error(err)
t.strictEqual(response.statusCode, 200)
t.deepEquals(response.body, Object.assign({url: '/route'}, schema.config))
})
})
test('config - request no-config', t => {
t.plan(3)
request({
method: 'GET',
uri: 'http://localhost:' + fastify.server.address().port + '/no-config',
json: true
}, (err, response, body) => {
t.error(err)
t.strictEqual(response.statusCode, 200)
t.deepEquals(response.body, {url: '/no-config'})
})
})
})