/// import test from 'ava'; import { parseRedirect, HostnameRedirect, Redirect, RedirectParameters, } from '../source/redirect/exports.js'; test('parseRedirect', (t) => { const samples: RedirectParameters[] = [ { test: 'Invalid parameters', } as unknown as RedirectParameters, { hostname: 'example.org', type: 'hostname', }, ]; for (const sample of samples) { const redirect = parseRedirect(sample); if (redirect === undefined) { t.pass('parseRedirect returned undefined'); } else { t.snapshot(redirect, `Class ${redirect.constructor.name}`); } } }); test('Redirect.redirect', (t) => { const hostnameRedirect = new HostnameRedirect({ hostname: 'example.org', type: 'hostname', }); const samples: Array<[string, Redirect]> = [ ['https://example.com', hostnameRedirect], ['https://example.com/path#hash?query=test', hostnameRedirect], ]; for (const [index, [url, redirect]] of samples.entries()) { t.snapshot( { original: url, redirected: redirect.redirect(url).href, }, `${index} ${redirect.constructor.name}`, ); } });