blob: 6523b9b98d8b2516e56863f9010a20aa30cfb5ae [file] [log] [blame]
Andrew M. Kuchlingcdec8c72000-08-19 15:21:12 +00001# Simple test suite for Cookie.py
2
Florent Xicluna6257a7b2010-03-31 22:01:03 +00003from test.test_support import run_unittest, run_doctest, check_warnings
Georg Brandla962eb32006-10-29 19:51:16 +00004import unittest
Andrew M. Kuchlingcdec8c72000-08-19 15:21:12 +00005import Cookie
6
Andrew M. Kuchling44644322002-12-29 16:45:06 +00007
Georg Brandla962eb32006-10-29 19:51:16 +00008class CookieTests(unittest.TestCase):
9 # Currently this only tests SimpleCookie
10 def test_basic(self):
11 cases = [
12 { 'data': 'chips=ahoy; vienna=finger',
13 'dict': {'chips':'ahoy', 'vienna':'finger'},
14 'repr': "<SimpleCookie: chips='ahoy' vienna='finger'>",
15 'output': 'Set-Cookie: chips=ahoy\nSet-Cookie: vienna=finger',
16 },
Andrew M. Kuchlingcdec8c72000-08-19 15:21:12 +000017
Georg Brandla962eb32006-10-29 19:51:16 +000018 { 'data': 'keebler="E=mc2; L=\\"Loves\\"; fudge=\\012;"',
19 'dict': {'keebler' : 'E=mc2; L="Loves"; fudge=\012;'},
20 'repr': '''<SimpleCookie: keebler='E=mc2; L="Loves"; fudge=\\n;'>''',
21 'output': 'Set-Cookie: keebler="E=mc2; L=\\"Loves\\"; fudge=\\012;"',
22 },
Andrew M. Kuchling8b94b1c2001-02-21 01:17:54 +000023
Georg Brandla962eb32006-10-29 19:51:16 +000024 # Check illegal cookies that have an '=' char in an unquoted value
25 { 'data': 'keebler=E=mc2',
26 'dict': {'keebler' : 'E=mc2'},
27 'repr': "<SimpleCookie: keebler='E=mc2'>",
28 'output': 'Set-Cookie: keebler=E=mc2',
29 }
30 ]
Andrew M. Kuchlingcdec8c72000-08-19 15:21:12 +000031
Georg Brandla962eb32006-10-29 19:51:16 +000032 for case in cases:
33 C = Cookie.SimpleCookie()
34 C.load(case['data'])
35 self.assertEqual(repr(C), case['repr'])
36 self.assertEqual(C.output(sep='\n'), case['output'])
37 for k, v in sorted(case['dict'].iteritems()):
38 self.assertEqual(C[k].value, v)
Andrew M. Kuchlingcdec8c72000-08-19 15:21:12 +000039
Georg Brandla962eb32006-10-29 19:51:16 +000040 def test_load(self):
41 C = Cookie.SimpleCookie()
42 C.load('Customer="WILE_E_COYOTE"; Version=1; Path=/acme')
Andrew M. Kuchlingcdec8c72000-08-19 15:21:12 +000043
Georg Brandla962eb32006-10-29 19:51:16 +000044 self.assertEqual(C['Customer'].value, 'WILE_E_COYOTE')
45 self.assertEqual(C['Customer']['version'], '1')
46 self.assertEqual(C['Customer']['path'], '/acme')
Moshe Zadka514a1022000-08-19 15:57:33 +000047
Georg Brandla962eb32006-10-29 19:51:16 +000048 self.assertEqual(C.output(['path']),
49 'Set-Cookie: Customer="WILE_E_COYOTE"; Path=/acme')
Senthil Kumaranc730a6a2009-04-02 03:00:34 +000050 self.assertEqual(C.js_output(), r"""
Georg Brandla962eb32006-10-29 19:51:16 +000051 <script type="text/javascript">
52 <!-- begin hiding
Senthil Kumaranc730a6a2009-04-02 03:00:34 +000053 document.cookie = "Customer=\"WILE_E_COYOTE\"; Path=/acme; Version=1";
Georg Brandla962eb32006-10-29 19:51:16 +000054 // end hiding -->
55 </script>
56 """)
Senthil Kumaranc730a6a2009-04-02 03:00:34 +000057 self.assertEqual(C.js_output(['path']), r"""
Georg Brandla962eb32006-10-29 19:51:16 +000058 <script type="text/javascript">
59 <!-- begin hiding
Senthil Kumaranc730a6a2009-04-02 03:00:34 +000060 document.cookie = "Customer=\"WILE_E_COYOTE\"; Path=/acme";
Georg Brandla962eb32006-10-29 19:51:16 +000061 // end hiding -->
62 </script>
63 """)
Moshe Zadka514a1022000-08-19 15:57:33 +000064
Georg Brandla962eb32006-10-29 19:51:16 +000065 def test_quoted_meta(self):
66 # Try cookie with quoted meta-data
67 C = Cookie.SimpleCookie()
68 C.load('Customer="WILE_E_COYOTE"; Version="1"; Path="/acme"')
69 self.assertEqual(C['Customer'].value, 'WILE_E_COYOTE')
70 self.assertEqual(C['Customer']['version'], '1')
71 self.assertEqual(C['Customer']['path'], '/acme')
Tim Peterseb26f952001-04-06 21:20:58 +000072
Georg Brandla962eb32006-10-29 19:51:16 +000073def test_main():
74 run_unittest(CookieTests)
Florent Xicluna6257a7b2010-03-31 22:01:03 +000075 with check_warnings(('.+Cookie class is insecure; do not use it',
76 DeprecationWarning)):
77 run_doctest(Cookie)
Georg Brandla962eb32006-10-29 19:51:16 +000078
79if __name__ == '__main__':
80 test_main()