mirror of
https://github.com/actions/http-client.git
synced 2025-04-21 17:52:29 +00:00
proxyAuth is not set when authentication is not provided
This commit is contained in:
parent
edadda14b0
commit
9dc40793b9
@ -2,6 +2,7 @@ import * as http from 'http'
|
|||||||
import * as httpm from '../_out'
|
import * as httpm from '../_out'
|
||||||
import * as pm from '../_out/proxy'
|
import * as pm from '../_out/proxy'
|
||||||
import * as proxy from 'proxy'
|
import * as proxy from 'proxy'
|
||||||
|
import * as tunnelm from 'tunnel'
|
||||||
|
|
||||||
let _proxyConnects: string[]
|
let _proxyConnects: string[]
|
||||||
let _proxyServer: http.Server
|
let _proxyServer: http.Server
|
||||||
@ -195,6 +196,26 @@ describe('proxy', () => {
|
|||||||
expect(obj.url).toBe('https://httpbin.org/get')
|
expect(obj.url).toBe('https://httpbin.org/get')
|
||||||
expect(_proxyConnects).toHaveLength(0)
|
expect(_proxyConnects).toHaveLength(0)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('proxyAuth not set in tunnel agent when authentication is not provided', async () => {
|
||||||
|
process.env['https_proxy'] = 'http://127.0.0.1:8080'
|
||||||
|
const httpClient = new httpm.HttpClient()
|
||||||
|
let agent: tunnelm.TunnelingAgent = httpClient.getAgent('https://some-url')
|
||||||
|
console.log(agent)
|
||||||
|
expect(agent.proxyOptions.host).toBe('127.0.0.1')
|
||||||
|
expect(agent.proxyOptions.port).toBe('8080')
|
||||||
|
expect(agent.proxyOptions.proxyAuth).toBe(undefined)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('proxyAuth is set in tunnel agent when authentication is provided', async () => {
|
||||||
|
process.env['https_proxy'] = 'http://user:password@127.0.0.1:8080'
|
||||||
|
const httpClient = new httpm.HttpClient()
|
||||||
|
let agent: tunnelm.TunnelingAgent = httpClient.getAgent('https://some-url')
|
||||||
|
console.log(agent)
|
||||||
|
expect(agent.proxyOptions.host).toBe('127.0.0.1')
|
||||||
|
expect(agent.proxyOptions.port).toBe('8080')
|
||||||
|
expect(agent.proxyOptions.proxyAuth).toBe('user:password')
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
function _clearVars() {
|
function _clearVars() {
|
||||||
|
Loading…
Reference in New Issue
Block a user