summaryrefslogtreecommitdiff
path: root/sys/lib/python/test/test_cookie.py
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@localhost>2011-05-03 11:25:13 +0000
committercinap_lenrek <cinap_lenrek@localhost>2011-05-03 11:25:13 +0000
commit458120dd40db6b4df55a4e96b650e16798ef06a0 (patch)
tree8f82685be24fef97e715c6f5ca4c68d34d5074ee /sys/lib/python/test/test_cookie.py
parent3a742c699f6806c1145aea5149bf15de15a0afd7 (diff)
add hg and python
Diffstat (limited to 'sys/lib/python/test/test_cookie.py')
-rw-r--r--sys/lib/python/test/test_cookie.py50
1 files changed, 50 insertions, 0 deletions
diff --git a/sys/lib/python/test/test_cookie.py b/sys/lib/python/test/test_cookie.py
new file mode 100644
index 000000000..c20beeeb1
--- /dev/null
+++ b/sys/lib/python/test/test_cookie.py
@@ -0,0 +1,50 @@
+# Simple test suite for Cookie.py
+
+from test.test_support import verify, verbose, run_doctest
+import Cookie
+
+import warnings
+warnings.filterwarnings("ignore",
+ ".* class is insecure.*",
+ DeprecationWarning)
+
+# Currently this only tests SimpleCookie
+
+cases = [
+ ('chips=ahoy; vienna=finger', {'chips':'ahoy', 'vienna':'finger'}),
+ ('keebler="E=mc2; L=\\"Loves\\"; fudge=\\012;"',
+ {'keebler' : 'E=mc2; L="Loves"; fudge=\012;'}),
+
+ # Check illegal cookies that have an '=' char in an unquoted value
+ ('keebler=E=mc2', {'keebler' : 'E=mc2'})
+ ]
+
+for data, dict in cases:
+ C = Cookie.SimpleCookie() ; C.load(data)
+ print repr(C)
+ print C.output(sep='\n')
+ for k, v in sorted(dict.iteritems()):
+ print ' ', k, repr( C[k].value ), repr(v)
+ verify(C[k].value == v)
+ print C[k]
+
+C = Cookie.SimpleCookie()
+C.load('Customer="WILE_E_COYOTE"; Version=1; Path=/acme')
+
+verify(C['Customer'].value == 'WILE_E_COYOTE')
+verify(C['Customer']['version'] == '1')
+verify(C['Customer']['path'] == '/acme')
+
+print C.output(['path'])
+print C.js_output()
+print C.js_output(['path'])
+
+# Try cookie with quoted meta-data
+C = Cookie.SimpleCookie()
+C.load('Customer="WILE_E_COYOTE"; Version="1"; Path="/acme"')
+verify(C['Customer'].value == 'WILE_E_COYOTE')
+verify(C['Customer']['version'] == '1')
+verify(C['Customer']['path'] == '/acme')
+
+print "If anything blows up after this line, it's from Cookie's doctest."
+run_doctest(Cookie)