keep-alive-timeout.test.js — fastify Source File
Architecture documentation for keep-alive-timeout.test.js, a javascript file in the fastify codebase.
Entity Profile
Source Code
'use strict'
const Fastify = require('..')
const http = require('node:http')
const { test } = require('node:test')
test('keepAliveTimeout', t => {
t.plan(6)
try {
Fastify({ keepAliveTimeout: 1.3 })
t.assert.fail('option must be an integer')
} catch (err) {
t.assert.ok(err)
}
try {
Fastify({ keepAliveTimeout: [] })
t.assert.fail('option must be an integer')
} catch (err) {
t.assert.ok(err)
}
const httpServer = Fastify({ keepAliveTimeout: 1 }).server
t.assert.strictEqual(httpServer.keepAliveTimeout, 1)
const httpsServer = Fastify({ keepAliveTimeout: 2, https: {} }).server
t.assert.strictEqual(httpsServer.keepAliveTimeout, 2)
const http2Server = Fastify({ keepAliveTimeout: 3, http2: true }).server
t.assert.notStrictEqual(http2Server.keepAliveTimeout, 3)
const serverFactory = (handler, _) => {
const server = http.createServer((req, res) => {
handler(req, res)
})
server.keepAliveTimeout = 5
return server
}
const customServer = Fastify({ keepAliveTimeout: 4, serverFactory }).server
t.assert.strictEqual(customServer.keepAliveTimeout, 5)
})
Source
Frequently Asked Questions
What does keep-alive-timeout.test.js do?
keep-alive-timeout.test.js is a source file in the fastify codebase, written in javascript.
Where is keep-alive-timeout.test.js in the architecture?
keep-alive-timeout.test.js is located at test/keep-alive-timeout.test.js (directory: test).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free