Buckets:
ktongue/docker_container / .cache /opencode /node_modules /fastify /test /https /custom-https-server.test.js
| const { test } = require('node:test') | |
| const Fastify = require('../..') | |
| const https = require('node:https') | |
| const dns = require('node:dns').promises | |
| const { buildCertificate } = require('../build-certificate') | |
| const { Agent } = require('undici') | |
| async function setup () { | |
| await buildCertificate() | |
| const localAddresses = await dns.lookup('localhost', { all: true }) | |
| test('Should support a custom https server', { skip: localAddresses.length < 1 }, async t => { | |
| t.plan(5) | |
| const fastify = Fastify({ | |
| serverFactory: (handler, opts) => { | |
| t.assert.ok(opts.serverFactory, 'it is called once for localhost') | |
| const options = { | |
| key: global.context.key, | |
| cert: global.context.cert | |
| } | |
| const server = https.createServer(options, (req, res) => { | |
| req.custom = true | |
| handler(req, res) | |
| }) | |
| return server | |
| } | |
| }) | |
| t.after(() => { fastify.close() }) | |
| fastify.get('/', (req, reply) => { | |
| t.assert.ok(req.raw.custom) | |
| reply.send({ hello: 'world' }) | |
| }) | |
| await fastify.listen({ port: 0 }) | |
| const result = await fetch('https://localhost:' + fastify.server.address().port, { | |
| dispatcher: new Agent({ | |
| connect: { | |
| rejectUnauthorized: false | |
| } | |
| }) | |
| }) | |
| t.assert.ok(result.ok) | |
| t.assert.strictEqual(result.status, 200) | |
| t.assert.deepStrictEqual(await result.json(), { hello: 'world' }) | |
| }) | |
| } | |
| setup() | |
Xet Storage Details
- Size:
- 1.48 kB
- Xet hash:
- 62396b8b9b404dec32612826edd1e639ea45a8b23fb7c8b63fef64cb4e55ba2a
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.