@fastify/reply-from
Version:
forward your HTTP request to another server, for fastify
63 lines (52 loc) • 1.53 kB
JavaScript
const t = require('tap')
const Fastify = require('fastify')
const fastifyReplyFrom = require('..')
const http = require('node:http')
const get = require('simple-get').concat
const instance = Fastify()
instance.register(fastifyReplyFrom)
const payload = { hello: 'world' }
const msgPackPayload = Buffer.from([0x81, 0xa5, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0xa5, 0x77, 0x6f, 0x72, 0x6c, 0x64])
t.plan(9)
t.teardown(instance.close.bind(instance))
const target = http.createServer((req, res) => {
t.pass('request proxied')
t.equal(req.method, 'POST')
t.equal(req.headers['content-type'], 'application/msgpack')
const data = []
req.on('data', (d) => {
data.push(d)
})
req.on('end', () => {
t.same(Buffer.concat(data), msgPackPayload)
res.statusCode = 200
res.setHeader('content-type', 'application/json')
res.end(JSON.stringify({ something: 'else' }))
})
})
instance.post('/', (request, reply) => {
t.same(request.body, payload)
reply.from(`http://localhost:${target.address().port}`, {
contentType: 'application/msgpack',
body: msgPackPayload
})
})
t.teardown(target.close.bind(target))
instance.listen({ port: 0 }, (err) => {
t.error(err)
target.listen({ port: 0 }, (err) => {
t.error(err)
get({
url: `http://localhost:${instance.server.address().port}`,
method: 'POST',
json: true,
body: {
hello: 'world'
}
}, (err, _res, data) => {
t.error(err)
t.same(data, { something: 'else' })
})
})
})