test3028: verify PROXY

This commit is contained in:
Fata Nugraha 2022-11-09 18:11:05 +07:00 committed by Daniel Stenberg
parent 11ad25fff4
commit f65f445f54
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 74 additions and 1 deletions

View File

@ -247,6 +247,6 @@ test2300 test2301 test2302 test2303 \
test3000 test3001 test3002 test3003 test3004 test3005 test3006 test3007 \
test3008 test3009 test3010 test3011 test3012 test3013 test3014 test3015 \
test3016 test3017 test3018 test3019 test3020 test3021 test3022 test3023 \
test3024 test3025 test3026 test3027 \
test3024 test3025 test3026 test3027 test3028 \
\
test3100

73
tests/data/test3028 Normal file
View File

@ -0,0 +1,73 @@
<testcase>
<info>
<keywords>
HTTP
HTTP CONNECT
</keywords>
</info>
#
# Server-side
<reply>
<connect>
HTTP/1.1 200 Mighty fine indeed
</connect>
<data nocheck="yes">
HTTP/1.1 404 Not Found
Server: nginx/1.23.2
Date: Wed, 09 Nov 2022 09:44:58 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 4
Connection: keep-alive
X-Content-Type-Options: nosniff
haha
</data>
</reply>
#
# Client-side
<client>
<server>
http
http-proxy
</server>
<name>
HTTP GET when PROXY Protocol enabled behind a proxy
</name>
<command>
--haproxy-protocol http://%HOSTIP:%HTTPPORT/page --proxytunnel -x %HOSTIP:%PROXYPORT
</command>
<features>
proxy
</features>
</client>
#
# Verify data after the test has been "shot"
<verify>
<strippart>
s/^PROXY TCP4 %CLIENTIP %HOSTIP (\d*) %PROXYPORT/proxy-line/
</strippart>
<proxy>
CONNECT %HOSTIP:%HTTPPORT HTTP/1.1
Host: %HOSTIP:%HTTPPORT
User-Agent: curl/%VERSION
Proxy-Connection: Keep-Alive
</proxy>
<protocol>
proxy-line
GET /page HTTP/1.1
Host: %HOSTIP:%HTTPPORT
User-Agent: curl/%VERSION
Accept: */*
</protocol>
</verify>
</testcase>