diff options
author | ERAMOTO Masaya <eramoto.masaya@jp.fujitsu.com> | 2016-11-25 13:26:51 +0900 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-01-13 11:18:11 +0100 |
commit | 1b57557882891285ff53c243bb4ede8b1ccac79c (patch) | |
tree | 3f4c861cd8d8380eac8d0ea0da35529ed30b44da /tests/data/test1251 | |
parent | f30cbcac11f5a627992f0c48cff91135808fa70f (diff) | |
download | curl-1b57557882891285ff53c243bb4ede8b1ccac79c.tar.gz |
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.
Diffstat (limited to 'tests/data/test1251')
-rw-r--r-- | tests/data/test1251 | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/tests/data/test1251 b/tests/data/test1251 new file mode 100644 index 000000000..f37a685e8 --- /dev/null +++ b/tests/data/test1251 @@ -0,0 +1,54 @@ +<testcase> +<info> +<keywords> +HTTP +HTTP proxy +http_proxy +NO_PROXY +</keywords> +</info> + +# Server-side +<reply> +<data> +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 +</data> +</reply> + +# Client-side +<client> +<server> +http +</server> +<name> +Access a non-proxied host with using the combination of http_proxy env var and NO_PROXY env var +</name> +<setenv> +http_proxy=http://dummy:%PROXYPORT/ +NO_PROXY=%HOSTIP +</setenv> +<command> +http://user:secret@%HOSTIP:%HTTPPORT/1251 --max-time 5 +</command> +</client> + +# Verify data after the test has been "shot" +<verify> +<strip> +^User-Agent:.* +</strip> +<protocol> +GET /1251 HTTP/1.1
+Host: %HOSTIP:%HTTPPORT
+Authorization: Basic dXNlcjpzZWNyZXQ=
+Accept: */*
+
+</protocol> +</verify> +</testcase> |