mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-22 13:09:27 +08:00
Better ipv6 definitions
This commit is contained in:
parent
5d8e1ee68b
commit
b511bc151f
@ -247,12 +247,24 @@ describe('proxy', () => {
|
||||
try {
|
||||
process.env['http_proxy'] = _proxyUrl
|
||||
const httpClient = new httpm.HttpClient()
|
||||
const res: httpm.HttpClientResponse = await httpClient.get(
|
||||
let res = await httpClient.get(
|
||||
'http://localhost:8091'
|
||||
)
|
||||
expect(res.message.statusCode).toBe(200)
|
||||
const body: string = await res.readBody()
|
||||
expect(body).toEqual('')
|
||||
res = await httpClient.get(
|
||||
'http://127.0.0.1:8091'
|
||||
)
|
||||
expect(res.message.statusCode).toBe(200)
|
||||
|
||||
// no support for ipv6 for now
|
||||
expect(httpClient.get(
|
||||
'http://[::1]:8091')).rejects.toThrow()
|
||||
|
||||
// ipv6 not supported atm
|
||||
// expect(async () => await httpClient.get(
|
||||
// 'http://[::1]:8091'
|
||||
// )).toThrow()
|
||||
|
||||
// proxy at _proxyUrl was ignored
|
||||
expect(_proxyConnects).toEqual([])
|
||||
} finally {
|
||||
|
@ -77,6 +77,7 @@ function isLoopbackAddress(host: string): boolean {
|
||||
return (
|
||||
hostLower === 'localhost' ||
|
||||
hostLower.startsWith('127.') ||
|
||||
hostLower.startsWith('::1')
|
||||
hostLower.startsWith('[::1]') ||
|
||||
hostLower.startsWith('[0:0:0:0:0:0:0:1]')
|
||||
)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user