From b9ce8714631318f3252354534ac49fd4aa72dcb0 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Tue, 7 Oct 2008 23:15:02 +0000 Subject: Changed the handling of read/write errors in Curl_perform() to allow a a fresh connection to be made in such cases and the request retransmitted. This should fix test case 160. Added test case 1079 in an attempt to test a similar connection dropping scenario, but as a race condition, it's hard to test reliably. --- tests/data/DISABLED | 1 - tests/data/Makefile.am | 2 +- tests/data/test1079 | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 76 insertions(+), 2 deletions(-) create mode 100644 tests/data/test1079 (limited to 'tests/data') diff --git a/tests/data/DISABLED b/tests/data/DISABLED index 9fe82a528..2055e9f16 100644 --- a/tests/data/DISABLED +++ b/tests/data/DISABLED @@ -3,4 +3,3 @@ # test cases are run by runtests.pl. Just add the plain test case numbers, one # per line. # Lines starting with '#' letters are treated as comments. -160 diff --git a/tests/data/Makefile.am b/tests/data/Makefile.am index 3af445f60..dd3c537fb 100644 --- a/tests/data/Makefile.am +++ b/tests/data/Makefile.am @@ -57,7 +57,7 @@ EXTRA_DIST = test1 test108 test117 test127 test20 test27 test34 test46 \ test1048 test1049 test1050 test1051 test1052 test1053 test1054 test1055 \ test1056 test1057 test1058 test1059 test1060 test1061 test1062 test1063 \ test1064 test1065 test1066 test1067 test1068 test1069 test1070 test1071 \ - test1072 test1073 test1074 test1075 test1076 test1077 test1078 + test1072 test1073 test1074 test1075 test1076 test1077 test1078 test1079 filecheck: @mkdir test-place; \ diff --git a/tests/data/test1079 b/tests/data/test1079 new file mode 100644 index 000000000..c188e792e --- /dev/null +++ b/tests/data/test1079 @@ -0,0 +1,75 @@ + + + +HTTP +HTTP GET +HTTP Digest auth + + + +# Server-side + + +HTTP/1.1 401 Authorization Required swsclose +Server: Apache/1.3.27 (Darwin) PHP/4.1.2 +WWW-Authenticate: Digest realm="testrealm", nonce="1053604145" +Content-Type: text/plain; charset=iso-8859-1 +Content-Length: 26 + +This is not the real page + + +# This is supposed to be returned when the server gets a +# Authorization: Digest line passed-in from the client +# Send nothing to force an error code 52 reply + + + + +HTTP/1.1 401 Authorization Required swsclose +Server: Apache/1.3.27 (Darwin) PHP/4.1.2 +WWW-Authenticate: Digest realm="testrealm", nonce="1053604145" +Content-Type: text/plain; charset=iso-8859-1 +Content-Length: 26 + + + + + +# Client-side + + +http + + +crypto + + +HTTP retry after closed connection and empty response + + +http://%HOSTIP:%HTTPPORT/1079 -u testuser:testpass --digest + + + +# Verify data after the test has been "shot" + + +52 + + +^User-Agent:.* + + +GET /1079 HTTP/1.1 +Host: %HOSTIP:%HTTPPORT +Accept: */* + +GET /1079 HTTP/1.1 +Authorization: Digest username="testuser", realm="testrealm", nonce="1053604145", uri="/1079", response="e340c7cdca0950462070f46ee139e9f7" +Host: %HOSTIP:%HTTPPORT +Accept: */* + + + + -- cgit v1.2.3