From 24f0b6ebf7c4411ac9d82a6269d4c136856a1166 Mon Sep 17 00:00:00 2001 From: Kamil Dudka Date: Tue, 26 May 2015 18:59:39 +0200 Subject: [PATCH] test2040: verify basic auth on re-used connections --- tests/data/Makefile.inc | 3 +- tests/data/test2040 | 69 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 tests/data/test2040 diff --git a/tests/data/Makefile.inc b/tests/data/Makefile.inc index 3e8ee4d6b1c16b..73877c67855cc0 100644 --- a/tests/data/Makefile.inc +++ b/tests/data/Makefile.inc @@ -165,4 +165,5 @@ test2000 test2001 test2002 test2003 test2004 test2005 test2006 test2007 \ test2008 test2009 test2010 test2011 test2012 test2013 test2014 test2015 \ test2016 test2017 test2018 test2019 test2020 test2021 test2022 test2023 \ test2024 test2025 test2026 test2027 test2028 test2029 test2030 test2031 \ -test2032 test2033 test2034 test2035 test2036 test2037 test2038 test2039 +test2032 test2033 test2034 test2035 test2036 test2037 test2038 test2039 \ +test2040 diff --git a/tests/data/test2040 b/tests/data/test2040 new file mode 100644 index 00000000000000..ac600174ec7d14 --- /dev/null +++ b/tests/data/test2040 @@ -0,0 +1,69 @@ + + + +HTTP +HTTP GET +HTTP Basic auth + + +# Server-side + + + + +HTTP/1.1 200 Things are fine in server land +Server: Microsoft-IIS/5.0 +Content-Type: text/html; charset=iso-8859-1 +Content-Length: 32 + +Finally, this is the real page! + + + + +HTTP/1.1 401 Sorry wrong password (2) +Server: Microsoft-IIS/5.0 +Content-Type: text/html; charset=iso-8859-1 +Content-Length: 29 +WWW-Authenticate: Basic realm="testrealm" + +This is a bad password page! + + + + +# Client-side + + +http + + +HTTP Basic authorization, then without authorization + + +-u testuser:testpass http://%HOSTIP:%HTTPPORT/20400100 --next --no-basic http://%HOSTIP:%HTTPPORT/20400200 + + + +# Verify data after the test has been "shot" + + +^User-Agent:.* + + +GET /20400100 HTTP/1.1 +Host: %HOSTIP:%HTTPPORT +Authorization: Basic dGVzdHVzZXI6dGVzdHBhc3M= +Accept: */* + +GET /20400200 HTTP/1.1 +Host: %HOSTIP:%HTTPPORT +Accept: */* + + + +Finally, this is the real page! +This is a bad password page! + + +