Commit 11186122 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Added test #34 - HTTP GET with chunked Transfer-Encoding

parent a23db7b7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -62,4 +62,5 @@ command30.txt name29.txt prot29.txt reply29.txt \
command31.txt  name32.txt  reply31.txt      reply32.txt \
command32.txt  prot31.txt  reply310001.txt  reply320001.txt \
name31.txt     prot32.txt  reply310002.txt  reply320002.txt \
command33.txt  extra33.txt    name33.txt     prot33.txt     reply33.txt
command33.txt  extra33.txt    name33.txt     prot33.txt     reply33.txt \
command34.txt prot34.txt reply340001.txt name34.txt reply34.txt
+1 −0
Original line number Diff line number Diff line
http://%HOSTIP:%HOSTPORT/34

tests/data/name34.txt

0 → 100644
+1 −0
Original line number Diff line number Diff line
HTTP GET with chunked Transfer-Encoding

tests/data/prot34.txt

0 → 100644
+6 −0
Original line number Diff line number Diff line
GET /34 HTTP/1.1
User-Agent: curl/7.7-alpha2 (sparc-sun-solaris2.7) libcurl 7.7-alpha2 (SSL 0.9.6) (krb4 enabled)
Host: 127.0.0.1:8999
Pragma: no-cache
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*

tests/data/reply34.txt

0 → 100644
+13 −0
Original line number Diff line number Diff line
HTTP/1.1 200 funky chunky!
Server: fakeit/1.0
Transfer-Encoding: chunked
Connection: mooo

40
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
30
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
20;heresatest=moooo
ccccccccccccccccccccccccccccccc
0
muuu
 No newline at end of file
Loading