From a4773fcbbbf42a25c1037573fbab58aa275b9ed1 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 24 Aug 2005 10:57:28 +0000 Subject: Toby Peterson added CURLOPT_IGNORE_CONTENT_LENGTH to the library, accessible from the command line tool with --ignore-content-length. This will make it easier to download files from Apache 1.x (and similar) servers that are still having problems serving files larger than 2 or 4 GB. When this option is enabled, curl will simply have to wait for the server to close the connection to signal end of transfer. I wrote test case 269 that runs a simple test that this works. --- tests/data/Makefile.am | 2 +- tests/data/test269 | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 tests/data/test269 (limited to 'tests') diff --git a/tests/data/Makefile.am b/tests/data/Makefile.am index 09027962e..416c2bb60 100644 --- a/tests/data/Makefile.am +++ b/tests/data/Makefile.am @@ -33,4 +33,4 @@ EXTRA_DIST = test1 test108 test117 test127 test20 test27 test34 test46 \ test237 test238 test239 test243 test245 test246 test247 test248 test249 \ test250 test251 test252 test253 test254 test255 test521 test522 test523 \ test256 test257 test258 test259 test260 test261 test262 test263 test264 \ - test265 test266 test267 test268 + test265 test266 test267 test268 test269 diff --git a/tests/data/test269 b/tests/data/test269 new file mode 100644 index 000000000..1fbf90a3c --- /dev/null +++ b/tests/data/test269 @@ -0,0 +1,51 @@ + + +HTTP +HTTP GET + + + +# +# Server-side + + +HTTP/1.1 200 OK swsclose +Date: Thu, 09 Nov 2010 14:49:00 GMT +Server: test-server/fake +Accept-Ranges: bytes +Content-Length: 677654 +Connection: close +Content-Type: text/html +Funny-head: yesyes + +muahahaha + + + +# +# Client-side + + +http + + +HTTP --ignore-content-length + + +http://%HOSTIP:%HTTPPORT/269 --ignore-content-length + + + +# +# Verify data after the test has been "shot" + + +^User-Agent:.* + + +GET /269 HTTP/1.1 +Host: 127.0.0.1:%HTTPPORT +Accept: */* + + + -- cgit v1.2.3