From 01d6133bd71c33c667ef54b62ceb431ed1b9bf23 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Tue, 9 Dec 2008 21:59:57 +0000 Subject: Added test cases 1089 and 1090 to test --write-out after a redirect to test a report that the size didn't work, but these test cases pass. --- CHANGES | 6 ++++ tests/data/Makefile.am | 3 +- tests/data/test1089 | 91 ++++++++++++++++++++++++++++++++++++++++++++++ tests/data/test1090 | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 197 insertions(+), 1 deletion(-) create mode 100644 tests/data/test1089 create mode 100644 tests/data/test1090 diff --git a/CHANGES b/CHANGES index 38b3e1188..15a74c6e0 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,12 @@ Changelog +Daniel Fandrich (9 Dec 2008) +- Added test cases 1089 and 1090 to test --write-out after a redirect to + test a report that the size didn't work, but these test cases pass. + +- Documented CURLOPT_CONNECT_ONLY as being useful only on HTTP URLs. + Daniel Stenberg (9 Dec 2008) - Ken Hirsch simplified how libcurl does FTPS: now it doesn't assume any particular state for the control connection like it did before for implicit diff --git a/tests/data/Makefile.am b/tests/data/Makefile.am index 5c9426b40..85a90dc95 100644 --- a/tests/data/Makefile.am +++ b/tests/data/Makefile.am @@ -59,7 +59,8 @@ EXTRA_DIST = test1 test108 test117 test127 test20 test27 test34 test46 \ test1064 test1065 test1066 test1067 test1068 test1069 test1070 test1071 \ test1072 test1073 test1074 test1075 test1076 test1077 test1078 test1079 \ test1080 test1081 test1082 test1083 test1084 test1085 test633 test634 \ - test635 test636 test637 test558 test559 test1086 test1087 test1088 + test635 test636 test637 test558 test559 test1086 test1087 test1088 \ + test1089 test1090 filecheck: @mkdir test-place; \ diff --git a/tests/data/test1089 b/tests/data/test1089 new file mode 100644 index 000000000..ca8e648ab --- /dev/null +++ b/tests/data/test1089 @@ -0,0 +1,91 @@ + + + +HTTP +HTTP GET +followlocation +--write-out + + + +# +# Server-side + + +HTTP/1.1 302 OK swsbounce swsclose +Date: Thu, 09 Nov 2010 14:49:00 GMT +Content-Length: 8 +Connection: close +Content-Type: text/plain +Location: ./10890001 + +monster + + +HTTP/1.1 200 OK +Date: Thu, 09 Nov 2010 14:49:00 GMT +Content-Length: 15 +Connection: close +Content-Type: text/plain; charset=us-ascii + +bigger monster + + + + +# +# Client-side + + +http + + +HTTP GET --write-out with redirected fetch + + +http://%HOSTIP:%HTTPPORT/1089 -w "%{num_connects}\n%{num_redirects}\n%{size_download}\n%{url_effective}\n%{content_type}\n%{response_code}\n" -L + + + +# +# Verify data after the test has been "shot" + + +^User-Agent:.* + + +GET /1089 HTTP/1.1 +Host: %HOSTIP:%HTTPPORT +Accept: */* + +GET /10890001 HTTP/1.1 +Host: %HOSTIP:%HTTPPORT +Accept: */* + + + + +HTTP/1.1 302 OK swsbounce swsclose +Date: Thu, 09 Nov 2010 14:49:00 GMT +Content-Length: 8 +Connection: close +Content-Type: text/plain +Location: ./10890001 + +HTTP/1.1 200 OK +Date: Thu, 09 Nov 2010 14:49:00 GMT +Content-Length: 15 +Connection: close +Content-Type: text/plain; charset=us-ascii + +bigger monster +2 +1 +15 +http://%HOSTIP:%HTTPPORT/10890001 +text/plain; charset=us-ascii +200 + + + + diff --git a/tests/data/test1090 b/tests/data/test1090 new file mode 100644 index 000000000..8768dc2df --- /dev/null +++ b/tests/data/test1090 @@ -0,0 +1,98 @@ + + + +HTTP +HTTP GET +followlocation +chunked Transfer-Encoding +--write-out + + + +# +# Server-side + + +HTTP/1.1 302 OK swsbounce swsclose +Date: Thu, 09 Nov 2010 14:49:00 GMT +Content-Length: 8 +Connection: close +Content-Type: text/plain +Location: ./10900001 + +monster + + +HTTP/1.1 200 OK +Date: Thu, 09 Nov 2010 14:49:00 GMT +Transfer-Encoding: chunked +Connection: close +Content-Type: text/plain; charset=us-ascii + +0007 +bigger +0008 +monster + +0 + + + + + +# +# Client-side + + +http + + +HTTP GET --write-out with redirected fetch + + +http://%HOSTIP:%HTTPPORT/1090 -w "%{num_connects}\n%{num_redirects}\n%{size_download}\n%{url_effective}\n%{content_type}\n%{response_code}\n" -L + + + +# +# Verify data after the test has been "shot" + + +^User-Agent:.* + + +GET /1090 HTTP/1.1 +Host: %HOSTIP:%HTTPPORT +Accept: */* + +GET /10900001 HTTP/1.1 +Host: %HOSTIP:%HTTPPORT +Accept: */* + + + + +HTTP/1.1 302 OK swsbounce swsclose +Date: Thu, 09 Nov 2010 14:49:00 GMT +Content-Length: 8 +Connection: close +Content-Type: text/plain +Location: ./10900001 + +HTTP/1.1 200 OK +Date: Thu, 09 Nov 2010 14:49:00 GMT +Transfer-Encoding: chunked +Connection: close +Content-Type: text/plain; charset=us-ascii + +bigger monster +2 +1 +15 +http://%HOSTIP:%HTTPPORT/10900001 +text/plain; charset=us-ascii +200 + + + + -- cgit v1.2.3