@fastify/reply-from
Version:
forward your HTTP request to another server, for fastify
180 lines (137 loc) • 6.06 kB
JavaScript
const { test } = require('node:test')
const Fastify = require('fastify')
const { request, Agent } = require('undici')
const From = require('..')
const http = require('node:http')
function serverWithCustomError (stopAfter, statusCodeToFailOn, closeSocket) {
let requestCount = 0
return http.createServer((req, res) => {
if (requestCount++ < stopAfter) {
if (closeSocket) req.socket.end()
res.statusCode = statusCodeToFailOn
res.setHeader('Content-Type', 'text/plain')
return res.end('This Service is Unavailable')
} else {
res.statusCode = 205
res.setHeader('Content-Type', 'text/plain')
return res.end(`Hello World ${requestCount}!`)
}
})
}
async function setupServer (t, fromOptions = {}, statusCodeToFailOn = 500, stopAfter = 4, closeSocket = false) {
const target = serverWithCustomError(stopAfter, statusCodeToFailOn, closeSocket)
await target.listen({ port: 0 })
t.after(() => target.close())
const instance = Fastify()
instance.register(From, {
base: `http://localhost:${target.address().port}`
})
instance.get('/', (_request, reply) => {
reply.from(`http://localhost:${target.address().port}`, fromOptions)
})
t.after(() => instance.close())
await instance.listen({ port: 0 })
return {
instance
}
}
test('a 500 status code with no custom handler should fail', async (t) => {
const { instance } = await setupServer(t)
const result = await request(`http://localhost:${instance.server.address().port}`, { dispatcher: new Agent({ pipelining: 3 }) })
t.assert.strictEqual(result.statusCode, 500)
t.assert.strictEqual(await result.body.text(), 'This Service is Unavailable')
})
test("a server 500's with a custom handler and should revive", async (t) => {
const customRetryLogic = ({ req, res, err, attempt, getDefaultDelay }) => {
const defaultDelay = getDefaultDelay(req, res, err, attempt)
if (defaultDelay) return defaultDelay
if (res && res.statusCode === 500 && req.method === 'GET') {
return 0.1
}
return null
}
const { instance } = await setupServer(t, { retryDelay: customRetryLogic })
const res = await request(`http://localhost:${instance.server.address().port}`)
t.assert.strictEqual(res.headers['content-type'], 'text/plain')
t.assert.strictEqual(res.statusCode, 205)
t.assert.strictEqual(await res.body.text(), 'Hello World 5!')
})
test('custom retry does not invoke the default delay causing a 501', async (t) => {
// the key here is our retryDelay doesn't register the deefault handler and as a result it doesn't work
const customRetryLogic = ({ req, res }) => {
if (res && res.statusCode === 500 && req.method === 'GET') {
return 0
}
return null
}
const { instance } = await setupServer(t, { retryDelay: customRetryLogic }, 501)
const res = await request(`http://localhost:${instance.server.address().port}`)
t.assert.strictEqual(res.statusCode, 501)
t.assert.strictEqual(await res.body.text(), 'This Service is Unavailable')
})
test('custom retry delay functions can invoke the default delay', async (t) => {
const customRetryLogic = ({ req, res, err, attempt, getDefaultDelay }) => {
// registering the default retry logic for non 500 errors if it occurs
const defaultDelay = getDefaultDelay(req, res, err, attempt)
if (defaultDelay) return defaultDelay
if (res && res.statusCode === 500 && req.method === 'GET') {
return 0.1
}
return null
}
const { instance } = await setupServer(t, { retryDelay: customRetryLogic }, 500)
const res = await request(`http://localhost:${instance.server.address().port}`)
t.assert.strictEqual(res.headers['content-type'], 'text/plain')
t.assert.strictEqual(res.statusCode, 205)
t.assert.strictEqual(await res.body.text(), 'Hello World 5!')
})
test('custom retry delay function inspects the err paramater', async (t) => {
const customRetryLogic = ({ err }) => {
if (err && (err.code === 'UND_ERR_SOCKET' || err.code === 'ECONNRESET')) {
return 0.1
}
return null
}
const { instance } = await setupServer(t, { retryDelay: customRetryLogic }, 500, 4, true)
const res = await request(`http://localhost:${instance.server.address().port}`)
t.assert.strictEqual(res.headers['content-type'], 'text/plain')
t.assert.strictEqual(res.statusCode, 205)
t.assert.strictEqual(await res.body.text(), 'Hello World 5!')
})
test('we can exceed our retryCount and introspect attempts independently', async (t) => {
const attemptCounter = []
const customRetryLogic = ({ err, attempt }) => {
attemptCounter.push(attempt)
if (err && (err.code === 'UND_ERR_SOCKET' || err.code === 'ECONNRESET')) {
return 0.1
}
return null
}
const { instance } = await setupServer(t, { retryDelay: customRetryLogic }, 500, 4, true)
const res = await request(`http://localhost:${instance.server.address().port}`)
t.assert.deepStrictEqual(attemptCounter, [0, 1, 2, 3, 4])
t.assert.strictEqual(res.headers['content-type'], 'text/plain')
t.assert.strictEqual(res.statusCode, 205)
t.assert.strictEqual(await res.body.text(), 'Hello World 5!')
})
test('we handle our retries based on the retryCount', async (t) => {
const attemptCounter = []
const customRetryLogic = ({ req, res, attempt, retriesCount }) => {
if (retriesCount < attempt) {
return null
}
if (res && res.statusCode === 500 && req.method === 'GET') {
attemptCounter.push(attempt)
return 0.1
}
return null
}
const { instance } = await setupServer(t, { retryDelay: customRetryLogic, retriesCount: 2 }, 500)
await request(`http://localhost:${instance.server.address().port}`)
const res = await request(`http://localhost:${instance.server.address().port}`)
t.assert.deepStrictEqual(attemptCounter.slice(0, 2), [0, 1])
t.assert.strictEqual(res.headers['content-type'], 'text/plain')
t.assert.strictEqual(res.statusCode, 205)
t.assert.strictEqual(await res.body.text(), 'Hello World 5!')
})