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.
161 lines
3.0 KiB
161 lines
3.0 KiB
'use strict'
|
|
|
|
const t = require('tap')
|
|
const test = t.test
|
|
const sget = require('simple-get').concat
|
|
const Fastify = require('..')
|
|
|
|
test('nullable string', t => {
|
|
t.plan(3)
|
|
const fastify = Fastify()
|
|
fastify.route({
|
|
method: 'POST',
|
|
url: '/',
|
|
handler: (req, reply) => {
|
|
t.same(req.body.hello, null)
|
|
reply.code(200).send(req.body)
|
|
},
|
|
schema: {
|
|
body: {
|
|
type: 'object',
|
|
properties: {
|
|
hello: {
|
|
type: 'string',
|
|
format: 'email',
|
|
nullable: true
|
|
}
|
|
}
|
|
},
|
|
response: {
|
|
200: {
|
|
type: 'object',
|
|
properties: {
|
|
hello: {
|
|
type: 'string',
|
|
format: 'email',
|
|
nullable: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
fastify.inject({
|
|
method: 'POST',
|
|
url: '/',
|
|
body: {
|
|
hello: null
|
|
}
|
|
}, (err, res) => {
|
|
t.error(err)
|
|
t.same(res.payload.hello, null)
|
|
})
|
|
})
|
|
|
|
test('object or null body', t => {
|
|
t.plan(5)
|
|
|
|
const fastify = Fastify()
|
|
|
|
fastify.route({
|
|
method: 'POST',
|
|
url: '/',
|
|
handler: (req, reply) => {
|
|
t.equal(req.body, null)
|
|
reply.code(200).send({ requestBody: req.body })
|
|
},
|
|
schema: {
|
|
body: {
|
|
type: ['object', 'null'],
|
|
properties: {
|
|
hello: {
|
|
type: 'string',
|
|
format: 'email'
|
|
}
|
|
}
|
|
},
|
|
response: {
|
|
200: {
|
|
type: 'object',
|
|
nullable: true,
|
|
properties: {
|
|
requestBody: {
|
|
type: 'string',
|
|
format: 'email',
|
|
nullable: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
fastify.listen(0, (err) => {
|
|
fastify.server.unref()
|
|
t.error(err)
|
|
|
|
sget({
|
|
method: 'POST',
|
|
url: 'http://localhost:' + fastify.server.address().port
|
|
}, (err, response, body) => {
|
|
t.error(err)
|
|
t.equal(response.statusCode, 200)
|
|
t.same(JSON.parse(body), { requestBody: null })
|
|
})
|
|
})
|
|
})
|
|
|
|
test('nullable body', t => {
|
|
t.plan(5)
|
|
|
|
const fastify = Fastify()
|
|
|
|
fastify.route({
|
|
method: 'POST',
|
|
url: '/',
|
|
handler: (req, reply) => {
|
|
t.equal(req.body, null)
|
|
reply.code(200).send({ requestBody: req.body })
|
|
},
|
|
schema: {
|
|
body: {
|
|
type: 'object',
|
|
nullable: true,
|
|
properties: {
|
|
hello: {
|
|
type: 'string',
|
|
format: 'email'
|
|
}
|
|
}
|
|
},
|
|
response: {
|
|
200: {
|
|
type: 'object',
|
|
nullable: true,
|
|
properties: {
|
|
requestBody: {
|
|
type: 'string',
|
|
format: 'email',
|
|
nullable: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
fastify.listen(0, (err) => {
|
|
fastify.server.unref()
|
|
t.error(err)
|
|
|
|
sget({
|
|
method: 'POST',
|
|
url: 'http://localhost:' + fastify.server.address().port
|
|
}, (err, response, body) => {
|
|
t.error(err)
|
|
t.equal(response.statusCode, 200)
|
|
t.same(JSON.parse(body), { requestBody: null })
|
|
})
|
|
})
|
|
})
|