2024-03-14 22:05:31 -04:00
|
|
|
import {toOriginUrl} from './origin-url.js';
|
2024-02-07 21:37:09 -05:00
|
|
|
|
|
|
|
test('toOriginUrl', () => {
|
2024-10-31 10:57:40 -04:00
|
|
|
const oldLocation = window.location.href;
|
2024-02-07 21:37:09 -05:00
|
|
|
for (const origin of ['https://example.com', 'https://example.com:3000']) {
|
2024-10-31 10:57:40 -04:00
|
|
|
window.location.assign(`${origin}/`);
|
2024-02-07 21:37:09 -05: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 10:57:40 -04:00
|
|
|
window.location.assign(oldLocation);
|
2024-02-07 21:37:09 -05:00
|
|
|
});
|