re-nav/tests/redirect.test.ts

55 lines
1.2 KiB
TypeScript
Raw Normal View History

2022-10-05 17:08:17 +00:00
/// <reference path="../source/types.d.ts" />
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<RedirectParameters>]> = [
['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}`,
);
}
});