Compare commits

...

3 Commits

Author SHA1 Message Date
Ferenc Hammerl 2539b9b685 Fix linting 2023-06-21 14:37:29 +00:00
Ferenc Hammerl 60f4e9859c Formatting 2023-06-20 13:55:00 +00:00
Ferenc Hammerl 17e0aec811 Prepend http:// to http(s)_proxy env if missing 2023-06-20 12:16:21 +00:00
2 changed files with 12 additions and 1 deletions

View File

@ -91,6 +91,12 @@ describe('proxy', () => {
expect(proxyUrl).toBeDefined()
})
it('getProxyUrl returns proxyUrl if http_proxy has no protocol', () => {
process.env['http_proxy'] = 'myproxysvr'
const proxyUrl = pm.getProxyUrl(new URL('http://github.com'))
expect(proxyUrl?.toString()).toBe('http://myproxysvr/')
})
it('checkBypass returns true if host as no_proxy list', () => {
process.env['no_proxy'] = 'myserver'
const bypass = pm.checkBypass(new URL('https://myserver'))

View File

@ -14,7 +14,12 @@ export function getProxyUrl(reqUrl: URL): URL | undefined {
})()
if (proxyVar) {
return new URL(proxyVar)
try {
return new URL(proxyVar)
} catch {
if (!proxyVar.startsWith('http://') && !proxyVar.startsWith('https://'))
return new URL(`http://${proxyVar}`)
}
} else {
return undefined
}