mirror of
https://github.com/go-gitea/gitea
synced 2024-11-05 10:47:06 +01:00
b6bf8041d8
When setting `url.host` on a URL object with no port specified (like is the case of default port), the resulting URL's port will not change. Workaround this quirk in the URL standard by explicitely setting port for the http and https protocols. Extracted the logic to a function for the purpose of testing. Initially I wanted to have the function in utils.js, but it turns out esbuild can not treeshake the unused functions which would result in the webcomponents chunk having all 2kB utils.js inlined, so it seemed not worth. Fixes: https://github.com/go-gitea/gitea/issues/29084
18 lines
896 B
JavaScript
18 lines
896 B
JavaScript
import {toOriginUrl} from './GiteaOriginUrl.js';
|
|
|
|
test('toOriginUrl', () => {
|
|
const oldLocation = window.location;
|
|
for (const origin of ['https://example.com', 'https://example.com:3000']) {
|
|
window.location = new URL(`${origin}/`);
|
|
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`);
|
|
}
|
|
window.location = oldLocation;
|
|
});
|