2024-07-07 09:32:30 -06:00
|
|
|
import {toOriginUrl} from './origin-url.ts';
|
2024-02-07 19:37:09 -07:00
|
|
|
|
|
|
|
test('toOriginUrl', () => {
|
2024-10-31 08:57:40 -06:00
|
|
|
const oldLocation = String(window.location);
|
2024-02-07 19:37:09 -07:00
|
|
|
for (const origin of ['https://example.com', 'https://example.com:3000']) {
|
2024-10-31 08:57:40 -06:00
|
|
|
window.location.assign(`${origin}/`);
|
2024-02-07 19:37:09 -07:00
|
|
|
expect(toOriginUrl('/')).toEqual(`${origin}/`);
|
|
|
|
expect(toOriginUrl('/org/repo.git')).toEqual(`${origin}/org/repo.git`);
|
|
|
|
expect(toOriginUrl('https://another.com')).toEqual(`${origin}/`);
|
|
|
|
expect(toOriginUrl('https://another.com/')).toEqual(`${origin}/`);
|
|
|
|
expect(toOriginUrl('https://another.com/org/repo.git')).toEqual(`${origin}/org/repo.git`);
|
|
|
|
expect(toOriginUrl('https://another.com:4000')).toEqual(`${origin}/`);
|
|
|
|
expect(toOriginUrl('https://another.com:4000/')).toEqual(`${origin}/`);
|
|
|
|
expect(toOriginUrl('https://another.com:4000/org/repo.git')).toEqual(`${origin}/org/repo.git`);
|
|
|
|
}
|
2024-10-31 08:57:40 -06:00
|
|
|
window.location.assign(oldLocation);
|
2024-02-07 19:37:09 -07:00
|
|
|
});
|