1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
|
# -*- coding: utf-8 -*-
from datetime import timedelta
from webob import cookies
from webob.compat import text_
from nose.tools import (eq_, assert_raises)
import unittest
from webob.compat import native_
from webob.compat import PY3
def setup_module(module):
cookies._should_raise = True
def teardown_module(module):
cookies._should_raise = False
def test_cookie_empty():
c = cookies.Cookie() # empty cookie
eq_(repr(c), '<Cookie: []>')
def test_cookie_one_value():
c = cookies.Cookie('dismiss-top=6')
vals = list(c.values())
eq_(len(vals), 1)
eq_(vals[0].name, b'dismiss-top')
eq_(vals[0].value, b'6')
def test_cookie_one_value_with_trailing_semi():
c = cookies.Cookie('dismiss-top=6;')
vals = list(c.values())
eq_(len(vals), 1)
eq_(vals[0].name, b'dismiss-top')
eq_(vals[0].value, b'6')
c = cookies.Cookie('dismiss-top=6;')
def test_cookie_escaped_unquoted():
eq_(list(cookies.parse_cookie('x=\\040')), [(b'x', b' ')])
def test_cookie_complex():
c = cookies.Cookie('dismiss-top=6; CP=null*, '\
'PHPSESSID=0a539d42abc001cdc762809248d4beed, a="42,"')
d = lambda v: v.decode('ascii')
c_dict = dict((d(k),d(v.value)) for k,v in c.items())
eq_(c_dict, {'a': '42,',
'CP': 'null*',
'PHPSESSID': '0a539d42abc001cdc762809248d4beed',
'dismiss-top': '6'
})
def test_cookie_complex_serialize():
c = cookies.Cookie('dismiss-top=6; CP=null*, '\
'PHPSESSID=0a539d42abc001cdc762809248d4beed, a="42"')
eq_(c.serialize(),
'CP=null*; PHPSESSID=0a539d42abc001cdc762809248d4beed; a=42; '
'dismiss-top=6')
def test_cookie_load_multiple():
c = cookies.Cookie('a=1; Secure=true')
vals = list(c.values())
eq_(len(vals), 1)
eq_(c[b'a'][b'secure'], b'true')
def test_cookie_secure():
c = cookies.Cookie()
c[text_('foo')] = b'bar'
c[b'foo'].secure = True
eq_(c.serialize(), 'foo=bar; secure')
def test_cookie_httponly():
c = cookies.Cookie()
c['foo'] = b'bar'
c[b'foo'].httponly = True
eq_(c.serialize(), 'foo=bar; HttpOnly')
def test_cookie_reserved_keys():
c = cookies.Cookie('dismiss-top=6; CP=null*; $version=42; a=42')
assert '$version' not in c
c = cookies.Cookie('$reserved=42; a=$42')
eq_(list(c.keys()), [b'a'])
def test_serialize_cookie_date():
"""
Testing webob.cookies.serialize_cookie_date.
Missing scenarios:
* input value is an str, should be returned verbatim
* input value is an int, should be converted to timedelta and we
should continue the rest of the process
"""
eq_(cookies.serialize_cookie_date(b'Tue, 04-Jan-2011 13:43:50 GMT'),
b'Tue, 04-Jan-2011 13:43:50 GMT')
eq_(cookies.serialize_cookie_date(text_('Tue, 04-Jan-2011 13:43:50 GMT')),
b'Tue, 04-Jan-2011 13:43:50 GMT')
eq_(cookies.serialize_cookie_date(None), None)
cdate_delta = cookies.serialize_cookie_date(timedelta(seconds=10))
cdate_int = cookies.serialize_cookie_date(10)
eq_(cdate_delta, cdate_int)
def test_ch_unquote():
eq_(cookies._unquote(b'"hello world'), b'"hello world')
eq_(cookies._unquote(b'hello world'), b'hello world')
eq_(cookies._unquote(b'"hello world"'), b'hello world')
# Spaces are not valid in cookies, we support getting them, but won't support sending them
assert_raises(ValueError, cookies._value_quote, b'hello world')
# quotation mark escaped w/ backslash is unquoted correctly (support
# pre webob 1.3 cookies)
eq_(cookies._unquote(b'"\\""'), b'"')
# we also are able to unquote the newer \\042 serialization of quotation
# mark
eq_(cookies._unquote(b'"\\042"'), b'"')
# New cookies can not contain quotes.
assert_raises(ValueError, cookies._value_quote, b'"')
# backslash escaped w/ backslash is unquoted correctly (support
# pre webob 1.3 cookies)
eq_(cookies._unquote(b'"\\\\"'), b'\\')
# we also are able to unquote the newer \\134 serialization of backslash
eq_(cookies._unquote(b'"\\134"'), b'\\')
# Cookies may not contain a backslash
assert_raises(ValueError, cookies._value_quote, b'\\')
# misc byte escaped as octal
eq_(cookies._unquote(b'"\\377"'), b'\xff')
assert_raises(ValueError, cookies._value_quote, b'\xff')
# combination
eq_(cookies._unquote(b'"a\\"\\377"'), b'a"\xff')
assert_raises(ValueError, cookies._value_quote, b'a"\xff')
def test_cookie_invalid_name():
c = cookies.Cookie()
c['La Pe\xc3\xb1a'] = '1'
eq_(len(c), 0)
def test_morsel_serialize_with_expires():
morsel = cookies.Morsel(b'bleh', b'blah')
morsel.expires = b'Tue, 04-Jan-2011 13:43:50 GMT'
result = morsel.serialize()
eq_(result, 'bleh=blah; expires=Tue, 04-Jan-2011 13:43:50 GMT')
def test_serialize_max_age_timedelta():
import datetime
val = datetime.timedelta(86400)
result = cookies.serialize_max_age(val)
eq_(result, b'7464960000')
def test_serialize_max_age_int():
val = 86400
result = cookies.serialize_max_age(val)
eq_(result, b'86400')
def test_serialize_max_age_str():
val = '86400'
result = cookies.serialize_max_age(val)
eq_(result, b'86400')
def test_parse_qmark_in_val():
v = r'x="\"\073\054\""; expires=Sun, 12-Jun-2011 23:16:01 GMT'
c = cookies.Cookie(v)
eq_(c[b'x'].value, b'";,"')
eq_(c[b'x'].expires, b'Sun, 12-Jun-2011 23:16:01 GMT')
def test_morsel_repr():
v = cookies.Morsel(b'a', b'b')
result = repr(v)
eq_(result, "<Morsel: a='b'>")
class TestRequestCookies(unittest.TestCase):
def _makeOne(self, environ):
from webob.cookies import RequestCookies
return RequestCookies(environ)
def test_get_no_cache_key_in_environ_no_http_cookie_header(self):
environ = {}
inst = self._makeOne(environ)
self.assertEqual(inst.get('a'), None)
parsed = environ['webob._parsed_cookies']
self.assertEqual(parsed, ({}, ''))
def test_get_no_cache_key_in_environ_has_http_cookie_header(self):
header ='a=1; b=2'
environ = {'HTTP_COOKIE':header}
inst = self._makeOne(environ)
self.assertEqual(inst.get('a'), '1')
parsed = environ['webob._parsed_cookies'][0]
self.assertEqual(parsed['a'], '1')
self.assertEqual(parsed['b'], '2')
self.assertEqual(environ['HTTP_COOKIE'], header) # no change
def test_get_cache_key_in_environ_no_http_cookie_header(self):
environ = {'webob._parsed_cookies':({}, '')}
inst = self._makeOne(environ)
self.assertEqual(inst.get('a'), None)
parsed = environ['webob._parsed_cookies']
self.assertEqual(parsed, ({}, ''))
def test_get_cache_key_in_environ_has_http_cookie_header(self):
header ='a=1; b=2'
environ = {'HTTP_COOKIE':header, 'webob._parsed_cookies':({}, '')}
inst = self._makeOne(environ)
self.assertEqual(inst.get('a'), '1')
parsed = environ['webob._parsed_cookies'][0]
self.assertEqual(parsed['a'], '1')
self.assertEqual(parsed['b'], '2')
self.assertEqual(environ['HTTP_COOKIE'], header) # no change
def test_get_missing_with_default(self):
environ = {}
inst = self._makeOne(environ)
self.assertEqual(inst.get('a', ''), '')
def test___setitem__name_not_string_type(self):
inst = self._makeOne({})
self.assertRaises(TypeError, inst.__setitem__, None, 1)
def test___setitem__name_not_encodeable_to_ascii(self):
name = native_(b'La Pe\xc3\xb1a', 'utf-8')
inst = self._makeOne({})
self.assertRaises(TypeError, inst.__setitem__, name, 'abc')
def test___setitem__name_not_rfc2109_valid(self):
name = '$a'
inst = self._makeOne({})
self.assertRaises(TypeError, inst.__setitem__, name, 'abc')
def test___setitem__value_not_string_type(self):
inst = self._makeOne({})
self.assertRaises(ValueError, inst.__setitem__, 'a', None)
def test___setitem__value_not_utf_8_decodeable(self):
value = text_(b'La Pe\xc3\xb1a', 'utf-8')
value = value.encode('utf-16')
inst = self._makeOne({})
self.assertRaises(ValueError, inst.__setitem__, 'a', value)
def test__setitem__success_no_existing_headers(self):
value = native_(b'test_cookie', 'utf-8')
environ = {}
inst = self._makeOne(environ)
inst['a'] = value
self.assertEqual(environ['HTTP_COOKIE'], 'a=test_cookie')
def test__setitem__success_append(self):
value = native_(b'test_cookie', 'utf-8')
environ = {'HTTP_COOKIE':'a=1; b=2'}
inst = self._makeOne(environ)
inst['c'] = value
self.assertEqual(
environ['HTTP_COOKIE'], 'a=1; b=2; c=test_cookie')
def test__setitem__success_replace(self):
environ = {'HTTP_COOKIE':'a=1; b="La Pe\\303\\261a"; c=3'}
inst = self._makeOne(environ)
inst['b'] = 'abc'
self.assertEqual(environ['HTTP_COOKIE'], 'a=1; b=abc; c=3')
inst['c'] = '4'
self.assertEqual(environ['HTTP_COOKIE'], 'a=1; b=abc; c=4')
def test__delitem__fail_no_http_cookie(self):
environ = {}
inst = self._makeOne(environ)
self.assertRaises(KeyError, inst.__delitem__, 'a')
self.assertEqual(environ, {})
def test__delitem__fail_with_http_cookie(self):
environ = {'HTTP_COOKIE':''}
inst = self._makeOne(environ)
self.assertRaises(KeyError, inst.__delitem__, 'a')
self.assertEqual(environ, {'HTTP_COOKIE':''})
def test__delitem__success(self):
environ = {'HTTP_COOKIE':'a=1'}
inst = self._makeOne(environ)
del inst['a']
self.assertEqual(environ['HTTP_COOKIE'], '')
self.assertEqual(inst._cache, {})
def test_keys(self):
environ = {'HTTP_COOKIE':'a=1; b="La Pe\\303\\261a"; c=3'}
inst = self._makeOne(environ)
self.assertEqual(sorted(list(inst.keys())), ['a', 'b', 'c'])
def test_values(self):
val = text_(b'La Pe\xc3\xb1a', 'utf-8')
environ = {'HTTP_COOKIE':'a=1; b="La Pe\\303\\261a"; c=3'}
inst = self._makeOne(environ)
self.assertEqual(sorted(list(inst.values())), ['1', '3', val])
def test_items(self):
val = text_(b'La Pe\xc3\xb1a', 'utf-8')
environ = {'HTTP_COOKIE':'a=1; b="La Pe\\303\\261a"; c=3'}
inst = self._makeOne(environ)
self.assertEqual(sorted(list(inst.items())),
[('a', '1'), ('b', val), ('c', '3')])
if not PY3:
def test_iterkeys(self):
environ = {'HTTP_COOKIE':'a=1; b="La Pe\\303\\261a"; c=3'}
inst = self._makeOne(environ)
self.assertEqual(sorted(list(inst.iterkeys())), ['a', 'b', 'c'])
def test_itervalues(self):
val = text_(b'La Pe\xc3\xb1a', 'utf-8')
environ = {'HTTP_COOKIE':'a=1; b="La Pe\\303\\261a"; c=3'}
inst = self._makeOne(environ)
self.assertEqual(sorted(list(inst.itervalues())), ['1', '3', val])
def test_iteritems(self):
val = text_(b'La Pe\xc3\xb1a', 'utf-8')
environ = {'HTTP_COOKIE':'a=1; b="La Pe\\303\\261a"; c=3'}
inst = self._makeOne(environ)
self.assertEqual(sorted(list(inst.iteritems())),
[('a', '1'), ('b', val), ('c', '3')])
def test___contains__(self):
environ = {'HTTP_COOKIE':'a=1'}
inst = self._makeOne(environ)
self.assertTrue('a' in inst)
self.assertFalse('b' in inst)
def test___iter__(self):
environ = {'HTTP_COOKIE':'a=1; b=2; c=3'}
inst = self._makeOne(environ)
self.assertEqual(sorted(list(iter(inst))), ['a', 'b', 'c'])
def test___len__(self):
environ = {'HTTP_COOKIE':'a=1; b=2; c=3'}
inst = self._makeOne(environ)
self.assertEqual(len(inst), 3)
del inst['a']
self.assertEqual(len(inst), 2)
def test_clear(self):
environ = {'HTTP_COOKIE':'a=1; b=2; c=3'}
inst = self._makeOne(environ)
inst.clear()
self.assertEqual(environ['HTTP_COOKIE'], '')
self.assertEqual(inst.get('a'), None)
def test___repr__(self):
environ = {'HTTP_COOKIE':'a=1; b=2; c=3'}
inst = self._makeOne(environ)
r = repr(inst)
self.assertTrue(r.startswith(
'<RequestCookies (dict-like) with values '))
self.assertTrue(r.endswith('>'))
class CookieMakeCookie(unittest.TestCase):
def makeOne(self, name, value, **kw):
from webob.cookies import make_cookie
return make_cookie(name, value, **kw)
def test_make_cookie_max_age(self):
cookie = self.makeOne('test_cookie', 'value', max_age=500)
self.assertTrue('test_cookie=value' in cookie)
self.assertTrue('Max-Age=500;' in cookie)
self.assertTrue('expires' in cookie)
def test_make_cookie_max_age_timedelta(self):
from datetime import timedelta
cookie = self.makeOne('test_cookie', 'value',
max_age=timedelta(seconds=500))
self.assertTrue('test_cookie=value' in cookie)
self.assertTrue('Max-Age=500;' in cookie)
self.assertTrue('expires' in cookie)
self.assertFalse('expires=500' in cookie)
def test_make_cookie_max_age_str_valid_int(self):
cookie = self.makeOne('test_cookie', 'value',
max_age='500')
self.assertTrue('test_cookie=value' in cookie)
self.assertTrue('Max-Age=500;' in cookie)
self.assertTrue('expires' in cookie)
self.assertFalse('expires=500' in cookie)
def test_make_cookie_max_age_str_invalid_int(self):
self.assertRaises(ValueError, self.makeOne, 'test_cookie', 'value',
max_age='test')
def test_make_cookie_comment(self):
cookie = self.makeOne('test_cookie', 'value', comment='lolwhy')
self.assertTrue('test_cookie=value' in cookie)
self.assertTrue('Comment=lolwhy' in cookie)
def test_make_cookie_path(self):
cookie = self.makeOne('test_cookie', 'value', path='/foo/bar/baz')
self.assertTrue('test_cookie=value' in cookie)
self.assertTrue('Path=/foo/bar/baz' in cookie)
class CommonCookieProfile(unittest.TestCase):
def makeDummyRequest(self, **kw):
class Dummy(object):
def __init__(self, **kwargs):
self.__dict__.update(**kwargs)
d = Dummy(**kw)
d.response = Dummy()
d.response.headerlist = list()
return d
def makeOneRequest(self):
request = self.makeDummyRequest(environ=dict())
request.environ['HTTP_HOST'] = 'www.example.net'
request.cookies = dict()
return request
class CookieProfileTest(CommonCookieProfile):
def makeOne(self, name='uns', **kw):
if 'request' in kw:
request = kw['request']
del kw['request']
else:
request = self.makeOneRequest()
from webob.cookies import CookieProfile
return CookieProfile(name, **kw)(request)
def test_cookie_creation(self):
cookie = self.makeOne()
from webob.cookies import CookieProfile
self.assertTrue(isinstance(cookie, CookieProfile))
def test_cookie_name(self):
cookie = self.makeOne()
cookie_list = cookie.get_headers("test")
for cookie in cookie_list:
self.assertTrue(cookie[1].startswith('uns'))
self.assertFalse('uns="";' in cookie[1])
def test_cookie_no_request(self):
from webob.cookies import CookieProfile
cookie = CookieProfile('uns')
self.assertRaises(ValueError, cookie.get_value)
def test_get_value_serializer_raises_value_error(self):
class RaisingSerializer(object):
def loads(self, val):
raise ValueError('foo')
cookie = self.makeOne(serializer=RaisingSerializer())
self.assertEqual(cookie.get_value(), None)
def test_with_cookies(self):
request = self.makeOneRequest()
request.cookies['uns'] = 'InRlc3Qi'
cookie = self.makeOne(request=request)
ret = cookie.get_value()
self.assertEqual(ret, "test")
def test_with_invalid_cookies(self):
request = self.makeOneRequest()
request.cookies['uns'] = 'InRlc3Q'
cookie = self.makeOne(request=request)
ret = cookie.get_value()
self.assertEqual(ret, None)
class SignedCookieProfileTest(CommonCookieProfile):
def makeOne(self, secret='seekrit', salt='salty', name='uns', **kw):
if 'request' in kw:
request = kw['request']
del kw['request']
else:
request = self.makeOneRequest()
from webob.cookies import SignedCookieProfile as CookieProfile
return CookieProfile(secret, salt, name, **kw)(request)
def test_cookie_name(self):
cookie = self.makeOne()
cookie_list = cookie.get_headers("test")
for cookie in cookie_list:
self.assertTrue(cookie[1].startswith('uns'))
self.assertFalse('uns="";' in cookie[1])
def test_cookie_expire(self):
cookie = self.makeOne()
cookie_list = cookie.get_headers(None, max_age=0)
for cookie in cookie_list:
self.assertTrue('Max-Age=0;' in cookie[1])
def test_cookie_max_age(self):
cookie = self.makeOne()
cookie_list = cookie.get_headers("test", max_age=60)
for cookie in cookie_list:
self.assertTrue('Max-Age=60;' in cookie[1])
self.assertTrue('expires=' in cookie[1])
def test_cookie_raw(self):
cookie = self.makeOne()
cookie_list = cookie.get_headers("test")
self.assertTrue(isinstance(cookie_list, list))
def test_set_cookie(self):
request = self.makeOneRequest()
cookie = self.makeOne(request=request)
ret = cookie.set_cookies(request.response, "test")
self.assertEqual(ret, request.response)
def test_no_cookie(self):
cookie = self.makeOne()
ret = cookie.get_value()
self.assertEqual(None, ret)
def test_with_cookies(self):
request = self.makeOneRequest()
request.cookies['uns'] = (
'FLIoEwZcKG6ITQSqbYcUNnPljwOcGNs25JRVCSoZcx_uX-OA1AhssA-CNeVKpWksQ'
'a0ktMhuQDdjzmDwgzbptiJ0ZXN0Ig'
)
cookie = self.makeOne(request=request)
ret = cookie.get_value()
self.assertEqual(ret, "test")
def test_with_bad_cookie_invalid_base64(self):
request = self.makeOneRequest()
request.cookies['uns'] = (
"gAJVBHRlc3RxAS4KjKfwGmCkliC4ba99rWUdpy_{}riHzK7MQFPsbSgYTgALHa"
"SHrRkd3lyE8c4w5ruxAKOyj2h5oF69Ix7ERZv_")
cookie = self.makeOne(request=request)
val = cookie.get_value()
self.assertEqual(val, None)
def test_with_bad_cookie_invalid_signature(self):
request = self.makeOneRequest()
request.cookies['uns'] = (
"InRlc3QiFLIoEwZcKG6ITQSqbYcUNnPljwOcGNs25JRVCSoZcx/uX+OA1AhssA"
"+CNeVKpWksQa0ktMhuQDdjzmDwgzbptg==")
cookie = self.makeOne(secret='sekrit!', request=request)
val = cookie.get_value()
self.assertEqual(val, None)
def test_with_domain(self):
cookie = self.makeOne(domains=("testing.example.net",))
ret = cookie.get_headers("test")
passed = False
for cookie in ret:
if 'Domain=testing.example.net' in cookie[1]:
passed = True
self.assertTrue(passed)
self.assertEqual(len(ret), 1)
def test_with_domains(self):
cookie = self.makeOne(
domains=("testing.example.net", "testing2.example.net")
)
ret = cookie.get_headers("test")
passed = 0
for cookie in ret:
if 'Domain=testing.example.net' in cookie[1]:
passed += 1
if 'Domain=testing2.example.net' in cookie[1]:
passed += 1
self.assertEqual(passed, 2)
self.assertEqual(len(ret), 2)
def test_flag_secure(self):
cookie = self.makeOne(secure=True)
ret = cookie.get_headers("test")
for cookie in ret:
self.assertTrue('; secure' in cookie[1])
def test_flag_http_only(self):
cookie = self.makeOne(httponly=True)
ret = cookie.get_headers("test")
for cookie in ret:
self.assertTrue('; HttpOnly' in cookie[1])
def test_cookie_length(self):
cookie = self.makeOne()
longstring = 'a' * 4096
self.assertRaises(ValueError, cookie.get_headers, longstring)
def test_very_long_key(self):
longstring = 'a' * 1024
cookie = self.makeOne(secret=longstring)
cookie.get_headers("test")
def serialize(secret, salt, data):
import hmac
import base64
import json
from hashlib import sha1
from webob.compat import bytes_
salted_secret = bytes_(salt or '', 'utf-8') + bytes_(secret, 'utf-8')
cstruct = bytes_(json.dumps(data))
sig = hmac.new(salted_secret, cstruct, sha1).digest()
return base64.urlsafe_b64encode(sig + cstruct).rstrip(b'=')
class SignedSerializerTest(unittest.TestCase):
def makeOne(self, secret, salt, hashalg='sha1', **kw):
from webob.cookies import SignedSerializer
return SignedSerializer(secret, salt, hashalg=hashalg, **kw)
def test_serialize(self):
ser = self.makeOne('seekrit', 'salty')
self.assertEqual(
ser.dumps('test'),
serialize('seekrit', 'salty', 'test')
)
def test_deserialize(self):
ser = self.makeOne('seekrit', 'salty')
self.assertEqual(
ser.loads(serialize('seekrit', 'salty', 'test')),
'test'
)
def test_with_highorder_secret(self):
secret = b'\xce\xb1\xce\xb2\xce\xb3\xce\xb4'.decode('utf-8')
ser = self.makeOne(secret, 'salty')
self.assertEqual(
ser.loads(serialize(secret, 'salty', 'test')),
'test'
)
def test_with_highorder_salt(self):
salt = b'\xce\xb1\xce\xb2\xce\xb3\xce\xb4'.decode('utf-8')
ser = self.makeOne('secret', salt)
self.assertEqual(
ser.loads(serialize('secret', salt, 'test')),
'test'
)
# bw-compat with webob <= 1.3.1 where secrets were encoded with latin-1
def test_with_latin1_secret(self):
secret = b'La Pe\xc3\xb1a'
ser = self.makeOne(secret.decode('latin-1'), 'salty')
self.assertEqual(
ser.loads(serialize(secret, 'salty', 'test')),
'test'
)
# bw-compat with webob <= 1.3.1 where salts were encoded with latin-1
def test_with_latin1_salt(self):
salt = b'La Pe\xc3\xb1a'
ser = self.makeOne('secret', salt.decode('latin-1'))
self.assertEqual(
ser.loads(serialize('secret', salt, 'test')),
'test'
)
|