fastify
Version:
Fast and low overhead web framework, for Node.js
204 lines (165 loc) • 5.46 kB
JavaScript
const { test } = require('node:test')
const http2 = require('node:http2')
const Fastify = require('../..')
const h2url = require('h2url')
const msg = { hello: 'world' }
test('http2 plain test', async t => {
let fastify
try {
fastify = Fastify({
http2: true
})
t.assert.ok(true, 'http2 successfully loaded')
} catch (e) {
t.assert.fail('http2 loading failed')
}
fastify.get('/', function (req, reply) {
reply.code(200).send(msg)
})
fastify.get('/host', function (req, reply) {
reply.code(200).send(req.host)
})
fastify.get('/hostname_port', function (req, reply) {
reply.code(200).send({ hostname: req.hostname, port: req.port })
})
t.after(() => { fastify.close() })
await fastify.listen({ port: 0 })
await t.test('http get request', async (t) => {
t.plan(3)
const url = `http://localhost:${fastify.server.address().port}`
const res = await h2url.concat({ url })
t.assert.strictEqual(res.headers[':status'], 200)
t.assert.strictEqual(res.headers['content-length'], '' + JSON.stringify(msg).length)
t.assert.deepStrictEqual(JSON.parse(res.body), msg)
})
await t.test('http host', async (t) => {
t.plan(1)
const host = `localhost:${fastify.server.address().port}`
const url = `http://${host}/host`
const res = await h2url.concat({ url })
t.assert.strictEqual(res.body, host)
})
await t.test('http hostname and port', async (t) => {
t.plan(2)
const host = `localhost:${fastify.server.address().port}`
const url = `http://${host}/hostname_port`
const res = await h2url.concat({ url })
t.assert.strictEqual(JSON.parse(res.body).hostname, host.split(':')[0])
t.assert.strictEqual(JSON.parse(res.body).port, parseInt(host.split(':')[1]))
})
})
test('http2 large non-stream replies are sent completely', async t => {
const modes = ['buffer', 'string']
for (const mode of modes) {
await t.test(mode, async t => {
const fastify = Fastify({ http2: true })
const payload = mode === 'buffer'
? Buffer.alloc((64 * 1024) + 1, 'a')
: 'a'.repeat((64 * 1024) + 1)
const contentLength = Buffer.byteLength(payload)
fastify.get('/large', async (req, reply) => {
reply.header('content-type', 'application/octet-stream')
reply.header('content-length', contentLength)
return payload
})
await fastify.listen({ port: 0, host: '127.0.0.1' })
const client = http2.connect(`http://127.0.0.1:${fastify.server.address().port}`)
t.after(() => {
client.close()
return fastify.close()
})
await new Promise((resolve, reject) => {
const large = client.request({
[http2.constants.HTTP2_HEADER_METHOD]: http2.constants.HTTP2_METHOD_GET,
[http2.constants.HTTP2_HEADER_PATH]: '/large'
})
const chunks = []
large.on('error', reject)
large.on('data', chunk => {
chunks.push(chunk)
})
large.on('end', () => {
t.assert.strictEqual(Buffer.concat(chunks).length, contentLength)
resolve()
})
large.end()
})
})
}
})
test('http2 large buffer replies can be cancelled without rejecting the next stream', async t => {
const fastify = Fastify({ http2: true })
const payload = Buffer.alloc(32 * 1024 * 1024, 'a')
let smallHit = false
fastify.get('/large', async (req, reply) => {
reply.header('content-type', 'application/octet-stream')
reply.header('content-length', payload.length)
return payload
})
fastify.get('/small', async () => {
smallHit = true
return 'ok'
})
await fastify.listen({ port: 0, host: '127.0.0.1' })
const client = http2.connect(`http://127.0.0.1:${fastify.server.address().port}`)
t.after(() => {
client.close()
return fastify.close()
})
await new Promise((resolve, reject) => {
let cancelTimer
let requestTimer
let timeout
function cleanup () {
clearTimeout(cancelTimer)
clearTimeout(requestTimer)
clearTimeout(timeout)
}
const large = client.request({
[http2.constants.HTTP2_HEADER_METHOD]: http2.constants.HTTP2_METHOD_GET,
[http2.constants.HTTP2_HEADER_PATH]: '/large'
})
let largeResponded = false
large.on('error', err => {
if (!largeResponded) {
cleanup()
reject(err)
}
})
large.on('response', () => {
largeResponded = true
large.pause()
cancelTimer = setTimeout(() => {
large.close(http2.constants.NGHTTP2_CANCEL)
}, 100)
requestTimer = setTimeout(() => {
const small = client.request({
[http2.constants.HTTP2_HEADER_METHOD]: http2.constants.HTTP2_METHOD_GET,
[http2.constants.HTTP2_HEADER_PATH]: '/small'
})
let body = ''
timeout = setTimeout(() => {
cleanup()
reject(new Error('timed out waiting for /small response'))
}, 3000)
small.setEncoding('utf8')
small.on('error', err => {
cleanup()
reject(err)
})
small.on('data', chunk => {
body += chunk
})
small.on('end', () => {
cleanup()
t.assert.strictEqual(body, 'ok')
t.assert.strictEqual(smallHit, true)
resolve()
})
small.end()
}, 200)
})
large.end()
})
})