@fastify/reply-from
Version:
forward your HTTP request to another server, for fastify
79 lines (63 loc) • 2.63 kB
JavaScript
const { test } = require('node:test')
const { buildURL } = require('../lib/utils')
test('should produce valid URL', (t) => {
t.plan(1)
const url = buildURL('/hi', 'http://localhost')
t.assert.strictEqual(url.href, 'http://localhost/hi')
})
test('should produce valid URL', (t) => {
t.plan(1)
const url = buildURL('http://localhost/hi', 'http://localhost')
t.assert.strictEqual(url.href, 'http://localhost/hi')
})
test('should return same source when base is not specified', (t) => {
t.plan(1)
const url = buildURL('http://localhost/hi')
t.assert.strictEqual(url.href, 'http://localhost/hi')
})
test('should handle lack of trailing slash in base', (t) => {
t.plan(3)
let url = buildURL('hi', 'http://localhost/hi')
t.assert.strictEqual(url.href, 'http://localhost/hi')
url = buildURL('hi/', 'http://localhost/hi')
t.assert.strictEqual(url.href, 'http://localhost/hi/')
url = buildURL('hi/more', 'http://localhost/hi')
t.assert.strictEqual(url.href, 'http://localhost/hi/more')
})
test('should handle default port in base', (t) => {
t.plan(2)
let url = buildURL('/hi', 'http://localhost:80/hi')
t.assert.strictEqual(url.href, 'http://localhost/hi')
url = buildURL('/hi', 'https://localhost:443/hi')
t.assert.strictEqual(url.href, 'https://localhost/hi')
})
test('should append instead of override base', (t) => {
t.plan(2)
let url = buildURL('//10.0.0.10/hi', 'http://localhost')
t.assert.strictEqual(url.href, 'http://localhost//10.0.0.10/hi')
url = buildURL('//httpbin.org/hi', 'http://localhost')
t.assert.strictEqual(url.href, 'http://localhost//httpbin.org/hi')
})
const errorInputs = [
{ source: 'http://10.0.0.10/hi', base: 'http://localhost' },
{ source: 'https://10.0.0.10/hi', base: 'http://localhost' },
{ source: 'blah://10.0.0.10/hi', base: 'http://localhost' },
{ source: 'urn:foo:bar', base: 'http://localhost' },
{ source: 'http://localhost/private', base: 'http://localhost/exposed/' },
{ source: 'http://localhost/exposed-extra', base: 'http://localhost/exposed' },
{ source: '/private', base: 'http://localhost/exposed/' },
{ source: '/exposed-extra', base: 'http://localhost/exposed' },
{ source: '../private', base: 'http://localhost/exposed/' },
{ source: 'exposed-extra', base: 'http://localhost/exposed' }
]
test('should throw when trying to override base', async (t) => {
t.plan(errorInputs.length)
const promises = errorInputs.map(({ source, base }) => {
return t.test(source, (t) => {
t.plan(1)
t.assert.throws(() => buildURL(source, base))
})
})
await Promise.all(promises)
})