2024-07-07 15:32:30 +00:00
|
|
|
import {toOriginUrl} from './origin-url.ts';
|
2024-02-08 02:37:09 +00:00
|
|
|
|
|
|
|
test('toOriginUrl', () => {
|
2024-10-31 14:57:40 +00:00
|
|
|
const oldLocation = String(window.location);
|
2024-02-08 02:37:09 +00:00
|
|
|
for (const origin of ['https://example.com', 'https://example.com:3000']) {
|
2024-10-31 14:57:40 +00:00
|
|
|
window.location.assign(`${origin}/`);
|
2024-02-08 02:37:09 +00: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 14:57:40 +00:00
|
|
|
window.location.assign(oldLocation);
|
2024-02-08 02:37:09 +00:00
|
|
|
});
|