Projektstart
This commit is contained in:
458
backend/node_modules/fastify/test/helper.js
generated
vendored
Normal file
458
backend/node_modules/fastify/test/helper.js
generated
vendored
Normal file
@@ -0,0 +1,458 @@
|
||||
'use strict'
|
||||
|
||||
const sget = require('simple-get').concat
|
||||
const dns = require('node:dns').promises
|
||||
const stream = require('node:stream')
|
||||
const { promisify } = require('node:util')
|
||||
const symbols = require('../lib/symbols')
|
||||
|
||||
module.exports.sleep = promisify(setTimeout)
|
||||
|
||||
/**
|
||||
* @param method HTTP request method
|
||||
* @param t tap instance
|
||||
* @param isSetErrorHandler true: using setErrorHandler
|
||||
*/
|
||||
module.exports.payloadMethod = function (method, t, isSetErrorHandler = false) {
|
||||
const test = t.test
|
||||
const fastify = require('..')()
|
||||
|
||||
if (isSetErrorHandler) {
|
||||
fastify.setErrorHandler(function (err, request, reply) {
|
||||
t.type(request, 'object')
|
||||
t.type(request, fastify[symbols.kRequest].parent)
|
||||
reply
|
||||
.code(err.statusCode)
|
||||
.type('application/json; charset=utf-8')
|
||||
.send(err)
|
||||
})
|
||||
}
|
||||
|
||||
const upMethod = method.toUpperCase()
|
||||
const loMethod = method.toLowerCase()
|
||||
|
||||
const schema = {
|
||||
schema: {
|
||||
response: {
|
||||
'2xx': {
|
||||
type: 'object',
|
||||
properties: {
|
||||
hello: {
|
||||
type: 'string'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
test(`${upMethod} can be created`, t => {
|
||||
t.plan(1)
|
||||
try {
|
||||
fastify[loMethod]('/', schema, function (req, reply) {
|
||||
reply.code(200).send(req.body)
|
||||
})
|
||||
t.pass()
|
||||
} catch (e) {
|
||||
t.fail()
|
||||
}
|
||||
})
|
||||
|
||||
test(`${upMethod} without schema can be created`, t => {
|
||||
t.plan(1)
|
||||
try {
|
||||
fastify[loMethod]('/missing', function (req, reply) {
|
||||
reply.code(200).send(req.body)
|
||||
})
|
||||
t.pass()
|
||||
} catch (e) {
|
||||
t.fail()
|
||||
}
|
||||
})
|
||||
|
||||
test(`${upMethod} with body and querystring`, t => {
|
||||
t.plan(1)
|
||||
try {
|
||||
fastify[loMethod]('/with-query', function (req, reply) {
|
||||
req.body.hello = req.body.hello + req.query.foo
|
||||
reply.code(200).send(req.body)
|
||||
})
|
||||
t.pass()
|
||||
} catch (e) {
|
||||
t.fail()
|
||||
}
|
||||
})
|
||||
|
||||
test(`${upMethod} with bodyLimit option`, t => {
|
||||
t.plan(1)
|
||||
try {
|
||||
fastify[loMethod]('/with-limit', { bodyLimit: 1 }, function (req, reply) {
|
||||
reply.send(req.body)
|
||||
})
|
||||
t.pass()
|
||||
} catch (e) {
|
||||
t.fail()
|
||||
}
|
||||
})
|
||||
|
||||
fastify.listen({ port: 0 }, function (err) {
|
||||
if (err) {
|
||||
t.error(err)
|
||||
return
|
||||
}
|
||||
|
||||
t.teardown(() => { fastify.close() })
|
||||
|
||||
test(`${upMethod} - correctly replies`, t => {
|
||||
t.plan(3)
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: 'http://localhost:' + fastify.server.address().port,
|
||||
body: {
|
||||
hello: 'world'
|
||||
},
|
||||
json: true
|
||||
}, (err, response, body) => {
|
||||
t.error(err)
|
||||
t.equal(response.statusCode, 200)
|
||||
t.same(body, { hello: 'world' })
|
||||
})
|
||||
})
|
||||
|
||||
test(`${upMethod} - correctly replies with very large body`, t => {
|
||||
t.plan(3)
|
||||
|
||||
const largeString = 'world'.repeat(13200)
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: 'http://localhost:' + fastify.server.address().port,
|
||||
body: { hello: largeString },
|
||||
json: true
|
||||
}, (err, response, body) => {
|
||||
t.error(err)
|
||||
t.equal(response.statusCode, 200)
|
||||
t.same(body, { hello: largeString })
|
||||
})
|
||||
})
|
||||
|
||||
test(`${upMethod} - correctly replies if the content type has the charset`, t => {
|
||||
t.plan(3)
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: 'http://localhost:' + fastify.server.address().port,
|
||||
body: JSON.stringify({ hello: 'world' }),
|
||||
headers: {
|
||||
'content-type': 'application/json; charset=utf-8'
|
||||
}
|
||||
}, (err, response, body) => {
|
||||
t.error(err)
|
||||
t.equal(response.statusCode, 200)
|
||||
t.same(body.toString(), JSON.stringify({ hello: 'world' }))
|
||||
})
|
||||
})
|
||||
|
||||
test(`${upMethod} without schema - correctly replies`, t => {
|
||||
t.plan(3)
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: 'http://localhost:' + fastify.server.address().port + '/missing',
|
||||
body: {
|
||||
hello: 'world'
|
||||
},
|
||||
json: true
|
||||
}, (err, response, body) => {
|
||||
t.error(err)
|
||||
t.equal(response.statusCode, 200)
|
||||
t.same(body, { hello: 'world' })
|
||||
})
|
||||
})
|
||||
|
||||
test(`${upMethod} with body and querystring - correctly replies`, t => {
|
||||
t.plan(3)
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: 'http://localhost:' + fastify.server.address().port + '/with-query?foo=hello',
|
||||
body: {
|
||||
hello: 'world'
|
||||
},
|
||||
json: true
|
||||
}, (err, response, body) => {
|
||||
t.error(err)
|
||||
t.equal(response.statusCode, 200)
|
||||
t.same(body, { hello: 'worldhello' })
|
||||
})
|
||||
})
|
||||
|
||||
test(`${upMethod} with no body - correctly replies`, t => {
|
||||
t.plan(6)
|
||||
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: 'http://localhost:' + fastify.server.address().port + '/missing',
|
||||
headers: { 'Content-Length': '0' }
|
||||
}, (err, response, body) => {
|
||||
t.error(err)
|
||||
t.equal(response.statusCode, 200)
|
||||
t.equal(body.toString(), '')
|
||||
})
|
||||
|
||||
// Must use inject to make a request without a Content-Length header
|
||||
fastify.inject({
|
||||
method: upMethod,
|
||||
url: '/missing'
|
||||
}, (err, res) => {
|
||||
t.error(err)
|
||||
t.equal(res.statusCode, 200)
|
||||
t.equal(res.payload.toString(), '')
|
||||
})
|
||||
})
|
||||
|
||||
test(`${upMethod} returns 415 - incorrect media type if body is not json`, t => {
|
||||
t.plan(2)
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: 'http://localhost:' + fastify.server.address().port + '/missing',
|
||||
body: 'hello world'
|
||||
|
||||
}, (err, response, body) => {
|
||||
t.error(err)
|
||||
if (upMethod === 'OPTIONS') {
|
||||
t.equal(response.statusCode, 200)
|
||||
} else {
|
||||
t.equal(response.statusCode, 415)
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
if (loMethod === 'options') {
|
||||
test('OPTIONS returns 415 - should return 415 if Content-Type is not json or plain text', t => {
|
||||
t.plan(2)
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: 'http://localhost:' + fastify.server.address().port + '/missing',
|
||||
body: 'hello world',
|
||||
headers: {
|
||||
'Content-Type': 'text/xml'
|
||||
}
|
||||
}, (err, response, body) => {
|
||||
t.error(err)
|
||||
t.equal(response.statusCode, 415)
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
test(`${upMethod} returns 400 - Bad Request`, t => {
|
||||
t.plan(4)
|
||||
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: 'http://localhost:' + fastify.server.address().port,
|
||||
body: 'hello world',
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
}, (err, response, body) => {
|
||||
t.error(err)
|
||||
t.equal(response.statusCode, 400)
|
||||
})
|
||||
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: 'http://localhost:' + fastify.server.address().port,
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'Content-Length': '0'
|
||||
}
|
||||
}, (err, response, body) => {
|
||||
t.error(err)
|
||||
t.equal(response.statusCode, 400)
|
||||
})
|
||||
})
|
||||
|
||||
test(`${upMethod} returns 413 - Payload Too Large`, t => {
|
||||
t.plan(upMethod === 'OPTIONS' ? 4 : 6)
|
||||
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: 'http://localhost:' + fastify.server.address().port,
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'Content-Length': 1024 * 1024 + 1
|
||||
}
|
||||
}, (err, response, body) => {
|
||||
t.error(err)
|
||||
t.equal(response.statusCode, 413)
|
||||
})
|
||||
|
||||
// Node errors for OPTIONS requests with a stream body and no Content-Length header
|
||||
if (upMethod !== 'OPTIONS') {
|
||||
let chunk = Buffer.alloc(1024 * 1024 + 1, 0)
|
||||
const largeStream = new stream.Readable({
|
||||
read () {
|
||||
this.push(chunk)
|
||||
chunk = null
|
||||
}
|
||||
})
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: 'http://localhost:' + fastify.server.address().port,
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: largeStream
|
||||
}, (err, response, body) => {
|
||||
t.error(err)
|
||||
t.equal(response.statusCode, 413)
|
||||
})
|
||||
}
|
||||
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: `http://localhost:${fastify.server.address().port}/with-limit`,
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: {},
|
||||
json: true
|
||||
}, (err, response, body) => {
|
||||
t.error(err)
|
||||
t.equal(response.statusCode, 413)
|
||||
})
|
||||
})
|
||||
|
||||
test(`${upMethod} should fail with empty body and application/json content-type`, t => {
|
||||
if (upMethod === 'OPTIONS') return t.end()
|
||||
|
||||
t.plan(12)
|
||||
|
||||
fastify.inject({
|
||||
method: `${upMethod}`,
|
||||
url: '/',
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
}, (err, res) => {
|
||||
t.error(err)
|
||||
t.same(JSON.parse(res.payload), {
|
||||
error: 'Bad Request',
|
||||
code: 'FST_ERR_CTP_EMPTY_JSON_BODY',
|
||||
message: 'Body cannot be empty when content-type is set to \'application/json\'',
|
||||
statusCode: 400
|
||||
})
|
||||
})
|
||||
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: `http://localhost:${fastify.server.address().port}`,
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
}, (err, res, body) => {
|
||||
t.error(err)
|
||||
t.same(JSON.parse(body.toString()), {
|
||||
error: 'Bad Request',
|
||||
code: 'FST_ERR_CTP_EMPTY_JSON_BODY',
|
||||
message: 'Body cannot be empty when content-type is set to \'application/json\'',
|
||||
statusCode: 400
|
||||
})
|
||||
})
|
||||
|
||||
fastify.inject({
|
||||
method: `${upMethod}`,
|
||||
url: '/',
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
},
|
||||
payload: null
|
||||
}, (err, res) => {
|
||||
t.error(err)
|
||||
t.same(JSON.parse(res.payload), {
|
||||
error: 'Bad Request',
|
||||
code: 'FST_ERR_CTP_EMPTY_JSON_BODY',
|
||||
message: 'Body cannot be empty when content-type is set to \'application/json\'',
|
||||
statusCode: 400
|
||||
})
|
||||
})
|
||||
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: `http://localhost:${fastify.server.address().port}`,
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
},
|
||||
payload: null
|
||||
}, (err, res, body) => {
|
||||
t.error(err)
|
||||
t.same(JSON.parse(body.toString()), {
|
||||
error: 'Bad Request',
|
||||
code: 'FST_ERR_CTP_EMPTY_JSON_BODY',
|
||||
message: 'Body cannot be empty when content-type is set to \'application/json\'',
|
||||
statusCode: 400
|
||||
})
|
||||
})
|
||||
|
||||
fastify.inject({
|
||||
method: `${upMethod}`,
|
||||
url: '/',
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
},
|
||||
payload: undefined
|
||||
}, (err, res) => {
|
||||
t.error(err)
|
||||
t.same(JSON.parse(res.payload), {
|
||||
error: 'Bad Request',
|
||||
code: 'FST_ERR_CTP_EMPTY_JSON_BODY',
|
||||
message: 'Body cannot be empty when content-type is set to \'application/json\'',
|
||||
statusCode: 400
|
||||
})
|
||||
})
|
||||
|
||||
sget({
|
||||
method: upMethod,
|
||||
url: `http://localhost:${fastify.server.address().port}`,
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
},
|
||||
payload: undefined
|
||||
}, (err, res, body) => {
|
||||
t.error(err)
|
||||
t.same(JSON.parse(body.toString()), {
|
||||
error: 'Bad Request',
|
||||
code: 'FST_ERR_CTP_EMPTY_JSON_BODY',
|
||||
message: 'Body cannot be empty when content-type is set to \'application/json\'',
|
||||
statusCode: 400
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
function lookupToIp (lookup) {
|
||||
return lookup.family === 6 ? `[${lookup.address}]` : lookup.address
|
||||
}
|
||||
|
||||
module.exports.getLoopbackHost = async () => {
|
||||
const lookup = await dns.lookup('localhost')
|
||||
return [lookup.address, lookupToIp(lookup)]
|
||||
}
|
||||
|
||||
module.exports.plainTextParser = function (request, callback) {
|
||||
let body = ''
|
||||
request.setEncoding('utf8')
|
||||
request.on('error', onError)
|
||||
request.on('data', onData)
|
||||
request.on('end', onEnd)
|
||||
function onError (err) {
|
||||
callback(err, null)
|
||||
}
|
||||
function onData (chunk) {
|
||||
body += chunk
|
||||
}
|
||||
function onEnd () {
|
||||
callback(null, body)
|
||||
}
|
||||
}
|
||||
|
||||
module.exports.getServerUrl = function (app) {
|
||||
const { address, port } = app.server.address()
|
||||
return address === '::1'
|
||||
? `http://[${address}]:${port}`
|
||||
: `http://${address}:${port}`
|
||||
}
|
||||
Reference in New Issue
Block a user