diff options
author | Yang Tse <yangsita@gmail.com> | 2007-02-05 02:38:25 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-02-05 02:38:25 +0000 |
commit | 9b6474378a4cc5574206e9586ad001200b1205f8 (patch) | |
tree | d496ac85fd3ac55eb96d9b4ac8dfc938dc8642d7 /tests/data/test506 | |
parent | 5446ed47339fc0a44b88c2d0353c897b71444bd2 (diff) | |
download | curl-9b6474378a4cc5574206e9586ad001200b1205f8.tar.gz |
Year 2038 has its own problems (32 bit integer overflow).
So cookie expiration date is lowered to expire at most in 2035.
Diffstat (limited to 'tests/data/test506')
-rw-r--r-- | tests/data/test506 | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/data/test506 b/tests/data/test506 index b186f1f21..1d658f3fa 100644 --- a/tests/data/test506 +++ b/tests/data/test506 @@ -6,9 +6,9 @@ HTTP/1.1 200 OK Date: Thu, 09 Nov 2010 14:49:00 GMT Server: test-server/fake Content-Type: text/html -Set-Cookie: test1=one; domain=foo.com; expires=Tue Feb 1 11:56:27 GMT 2038 -Set-Cookie: test2=two; domain=host.foo.com; expires=Tue Feb 1 11:56:27 GMT 2038 -Set-Cookie: test3=three; domain=foo.com; expires=Tue Feb 1 11:56:27 GMT 2038 +Set-Cookie: test1=one; domain=foo.com; expires=Sat Feb 2 11:56:27 GMT 2030 +Set-Cookie: test2=two; domain=host.foo.com; expires=Sat Feb 2 11:56:27 GMT 2030 +Set-Cookie: test3=three; domain=foo.com; expires=Sat Feb 2 11:56:27 GMT 2030 Content-Length: 29 run 1: set cookie 1, 2 and 3 @@ -18,8 +18,8 @@ HTTP/1.1 200 OK Date: Thu, 09 Nov 2010 14:49:01 GMT Server: test-server/fake Content-Type: text/html -Set-Cookie: test4=four; domain=host.foo.com; expires=Tue Feb 1 11:56:27 GMT 2038 -Set-Cookie: test5=five; domain=host.foo.com; expires=Tue Feb 1 11:56:27 GMT 2038 +Set-Cookie: test4=four; domain=host.foo.com; expires=Sat Feb 2 11:56:27 GMT 2030 +Set-Cookie: test5=five; domain=host.foo.com; expires=Sat Feb 2 11:56:27 GMT 2030 Content-Length: 26 run 2: set cookie 4 and 5 @@ -30,8 +30,8 @@ Date: Thu, 09 Nov 2010 14:49:02 GMT Server: test-server/fake Content-Type: text/html Funny-head: yesyes -Set-Cookie: test4=overwritten4; domain=host.foo.com; expires=Thu Dec 31 23:59:59 GMT 2009 -Set-Cookie: test1=overwritten1; domain=foo.com; expires=Tue Feb 2 11:56:27 GMT 2007 +Set-Cookie: test4=overwritten4; domain=host.foo.com; expires=Sat May 5 GMT 11:56:27 2035 +Set-Cookie: test1=overwritten1; domain=foo.com; expires=Thu Mar 3 GMT 11:56:27 2033 Content-Type: text/html Content-Length: 32 @@ -154,11 +154,11 @@ http://%HOSTIP:%HTTPPORT/506 # http://curlm.haxx.se/rfc/cookie_spec.html # This file was generated by libcurl! Edit at your own risk. -.foo.com TRUE / FALSE 1170417387 test1 overwritten1 -.host.foo.com TRUE / FALSE 2147483647 test2 two -.foo.com TRUE / FALSE 2147483647 test3 three -.host.foo.com TRUE / FALSE 1262303999 test4 overwritten4 -.host.foo.com TRUE / FALSE 2147483647 test5 five +.foo.com TRUE / FALSE 1993463787 test1 overwritten1 +.host.foo.com TRUE / FALSE 1896263787 test2 two +.foo.com TRUE / FALSE 1896263787 test3 three +.host.foo.com TRUE / FALSE 2061978987 test4 overwritten4 +.host.foo.com TRUE / FALSE 1896263787 test5 five </file> </verify> </testcase> |