mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Test case for Cookie.py
This commit is contained in:
parent
1b07f2bcf6
commit
cdec8c746b
2 changed files with 33 additions and 0 deletions
26
Lib/test/test_cookie.py
Normal file
26
Lib/test/test_cookie.py
Normal file
|
@ -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'
|
Loading…
Add table
Add a link
Reference in a new issue