]> granicus.if.org Git - python/commitdiff
Test case for Cookie.py
authorAndrew M. Kuchling <amk@amk.ca>
Sat, 19 Aug 2000 15:21:12 +0000 (15:21 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Sat, 19 Aug 2000 15:21:12 +0000 (15:21 +0000)
Lib/test/output/test_cookie [new file with mode: 0644]
Lib/test/test_cookie.py [new file with mode: 0644]

diff --git a/Lib/test/output/test_cookie b/Lib/test/output/test_cookie
new file mode 100644 (file)
index 0000000..d9a8194
--- /dev/null
@@ -0,0 +1,7 @@
+test_cookie
+Set-Cookie: vienna=finger;
+Set-Cookie: chips=ahoy;
+  vienna 'finger' 'finger'
+  chips 'ahoy' 'ahoy'
+Set-Cookie: keebler="E=mc2; L=\"Loves\"; fudge=\012;";
+  keebler 'E=mc2; L="Loves"; fudge=\012;' 'E=mc2; L="Loves"; fudge=\012;'
diff --git a/Lib/test/test_cookie.py b/Lib/test/test_cookie.py
new file mode 100644 (file)
index 0000000..e5c2592
--- /dev/null
@@ -0,0 +1,26 @@
+
+# Simple test suite for Cookie.py
+
+import Cookie
+
+# 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;'}),    
+    ] 
+
+for data, dict in cases:
+    C = Cookie.SimpleCookie() ; C.load(data)
+    print C
+    for k, v in dict.items():
+        print ' ', k, repr( C[k].value ), repr(v)
+        assert C[k].value == v
+
+C = Cookie.SimpleCookie()
+C.load('Customer="WILE_E_COYOTE"; Version=1; Path=/acme')
+
+assert C['Customer'].value == 'WILE_E_COYOTE'
+assert C['Customer']['version'] == '1'
+assert C['Customer']['path'] == '/acme'