diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-09-26 07:06:00 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-09-26 07:06:00 +0000 |
commit | 9efdb68035b84dda158ca786d78c56a11d46c9fa (patch) | |
tree | 3ebb7cfa259f3b922492839fb21fbdd8db1f8894 /tests/data/test46 | |
parent | 14b898cb053c57dcc0cf5aa37b46fd3f2f418064 (diff) | |
download | curl-9efdb68035b84dda158ca786d78c56a11d46c9fa.tar.gz |
Added test 46, cookie jar functionality
Diffstat (limited to 'tests/data/test46')
-rw-r--r-- | tests/data/test46 | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/data/test46 b/tests/data/test46 new file mode 100644 index 000000000..c975e2d0e --- /dev/null +++ b/tests/data/test46 @@ -0,0 +1,62 @@ +# Server-side +<reply> +<data> +HTTP/1.1 200 OK +Server: Microsoft-IIS/4.0 +Date: Tue, 25 Sep 2001 19:37:44 GMT +Content-Type: text/html +Set-Cookie: ckyPersistent=permanent; expires=Tue, 01-Jan-2002 05:00:00 GMT; path=/ +Set-Cookie: ckySession=temporary; path=/ +Set-Cookie: ASPSESSIONIDQGGQQSJJ=GKNBDIFAAOFDPDAIEAKDIBKE; path=/ +Cache-control: private + +This server reply is for testing a simple Location: following + +</data> +</reply> + +# Client-side +<client> + <name> +HTTP, get cookies and store in cookie jar + </name> + <command> +%HOSTIP:%HOSTPORT/want/46 -c log/jar46 -b log/injar46 +</command> +<file name="log/injar46"> +# Netscape HTTP Cookie File +# http://www.netscape.com/newsref/std/cookie_spec.html +# This is generated by libcurl! Do not edit. + +www.fake.come FALSE / FALSE 1022144953 cookiecliente si +www.loser.com FALSE / FALSE 1139150993 UID 99 +127.0.0.1 FALSE / FALSE 1139150993 mooo indeed +</file> +</client> + +# Verify data after the test has been "shot" +<verify> +<strip> +^User-Agent:.* +</strip> +<protocol> +GET /want/46 HTTP/1.1
+Host: 127.0.0.1:8999
+Pragma: no-cache
+Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
+Cookie: mooo=indeed
+
+</protocol> +<file name="log/jar46"> +# Netscape HTTP Cookie File +# http://www.netscape.com/newsref/std/cookie_spec.html +# This is generated by libcurl! Edit on your own risk. + +www.fake.come FALSE / FALSE 1022144953 cookiecliente si +www.loser.com FALSE / FALSE 1139150993 UID 99 +127.0.0.1 FALSE / FALSE 1139150993 mooo indeed +127.0.0.1 FALSE / FALSE 1009861200 ckyPersistent permanent +127.0.0.1 FALSE / FALSE 0 ckySession temporary +127.0.0.1 FALSE / FALSE 0 ASPSESSIONIDQGGQQSJJ GKNBDIFAAOFDPDAIEAKDIBKE +</file> +</verify> |