From 1b57557882891285ff53c243bb4ede8b1ccac79c Mon Sep 17 00:00:00 2001 From: ERAMOTO Masaya Date: Fri, 25 Nov 2016 13:26:51 +0900 Subject: url: Fix NO_PROXY env var to work properly with --proxy option. The combination of --noproxy option and http_proxy env var works well both for proxied hosts and non-proxied hosts. However, when combining NO_PROXY env var with --proxy option, non-proxied hosts are not reachable while proxied host is OK. This patch allows us to access non-proxied hosts even if using NO_PROXY env var with --proxy option. --- tests/data/test1250 | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 tests/data/test1250 (limited to 'tests/data/test1250') diff --git a/tests/data/test1250 b/tests/data/test1250 new file mode 100644 index 000000000..bf67b7fe7 --- /dev/null +++ b/tests/data/test1250 @@ -0,0 +1,53 @@ + + + +HTTP +HTTP proxy +http_proxy +noproxy + + + +# Server-side + + +HTTP/1.1 200 OK +Date: Thu, 09 Nov 2010 14:49:00 GMT +Server: test-server/fake +Content-Length: 4 +Content-Type: text/html + +foo + + + +# Client-side + + +http + + +Access a non-proxied host with using the combination of http_proxy env var and --noproxy option + + +http_proxy=http://dummy:%PROXYPORT/ + + +http://user:secret@%HOSTIP:%HTTPPORT/1250 --noproxy %HOSTIP --max-time 5 + + + +# Verify data after the test has been "shot" + + +^User-Agent:.* + + +GET /1250 HTTP/1.1 +Host: %HOSTIP:%HTTPPORT +Authorization: Basic dXNlcjpzZWNyZXQ= +Accept: */* + + + + -- cgit v1.2.3