2003-08-02 12:02:33 -03:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: iso-8859-1 -*-
|
|
|
|
|
|
|
|
|
|
from test import test_support
|
2001-08-28 23:28:42 -03:00
|
|
|
|
import marshal
|
|
|
|
|
import sys
|
2003-08-02 12:02:33 -03:00
|
|
|
|
import unittest
|
|
|
|
|
import os
|
2001-08-28 23:28:42 -03:00
|
|
|
|
|
2003-08-02 12:02:33 -03:00
|
|
|
|
class IntTestCase(unittest.TestCase):
|
|
|
|
|
def test_ints(self):
|
|
|
|
|
# Test the full range of Python ints.
|
|
|
|
|
n = sys.maxint
|
|
|
|
|
while n:
|
|
|
|
|
for expected in (-n, n):
|
|
|
|
|
s = marshal.dumps(expected)
|
|
|
|
|
got = marshal.loads(s)
|
|
|
|
|
self.assertEqual(expected, got)
|
|
|
|
|
marshal.dump(expected, file(test_support.TESTFN, "wb"))
|
|
|
|
|
got = marshal.load(file(test_support.TESTFN, "rb"))
|
|
|
|
|
self.assertEqual(expected, got)
|
|
|
|
|
n = n >> 1
|
|
|
|
|
os.unlink(test_support.TESTFN)
|
2001-08-28 23:28:42 -03:00
|
|
|
|
|
2003-08-02 12:02:33 -03:00
|
|
|
|
def test_int64(self):
|
|
|
|
|
# Simulate int marshaling on a 64-bit box. This is most interesting if
|
|
|
|
|
# we're running the test on a 32-bit box, of course.
|
|
|
|
|
|
|
|
|
|
def to_little_endian_string(value, nbytes):
|
|
|
|
|
bytes = []
|
|
|
|
|
for i in range(nbytes):
|
|
|
|
|
bytes.append(chr(value & 0xff))
|
|
|
|
|
value >>= 8
|
|
|
|
|
return ''.join(bytes)
|
|
|
|
|
|
|
|
|
|
maxint64 = (1L << 63) - 1
|
|
|
|
|
minint64 = -maxint64-1
|
|
|
|
|
|
|
|
|
|
for base in maxint64, minint64, -maxint64, -(minint64 >> 1):
|
|
|
|
|
while base:
|
|
|
|
|
s = 'I' + to_little_endian_string(base, 8)
|
|
|
|
|
got = marshal.loads(s)
|
|
|
|
|
self.assertEqual(base, got)
|
|
|
|
|
if base == -1: # a fixed-point for shifting right 1
|
|
|
|
|
base = 0
|
|
|
|
|
else:
|
|
|
|
|
base >>= 1
|
|
|
|
|
|
|
|
|
|
def test_bool(self):
|
|
|
|
|
for b in (True, False):
|
|
|
|
|
new = marshal.loads(marshal.dumps(b))
|
|
|
|
|
self.assertEqual(b, new)
|
|
|
|
|
self.assertEqual(type(b), type(new))
|
|
|
|
|
marshal.dump(b, file(test_support.TESTFN, "wb"))
|
|
|
|
|
new = marshal.load(file(test_support.TESTFN, "rb"))
|
|
|
|
|
self.assertEqual(b, new)
|
|
|
|
|
self.assertEqual(type(b), type(new))
|
2004-01-18 16:29:55 -04:00
|
|
|
|
|
2003-08-02 12:02:33 -03:00
|
|
|
|
class FloatTestCase(unittest.TestCase):
|
|
|
|
|
def test_floats(self):
|
|
|
|
|
# Test a few floats
|
|
|
|
|
small = 1e-25
|
|
|
|
|
n = sys.maxint * 3.7e250
|
|
|
|
|
while n > small:
|
|
|
|
|
for expected in (-n, n):
|
|
|
|
|
f = float(expected)
|
|
|
|
|
s = marshal.dumps(f)
|
|
|
|
|
got = marshal.loads(s)
|
|
|
|
|
self.assertEqual(f, got)
|
|
|
|
|
marshal.dump(f, file(test_support.TESTFN, "wb"))
|
|
|
|
|
got = marshal.load(file(test_support.TESTFN, "rb"))
|
|
|
|
|
self.assertEqual(f, got)
|
|
|
|
|
n /= 123.4567
|
|
|
|
|
|
|
|
|
|
f = 0.0
|
2005-06-03 11:41:55 -03:00
|
|
|
|
s = marshal.dumps(f, 2)
|
2001-08-28 23:28:42 -03:00
|
|
|
|
got = marshal.loads(s)
|
2003-08-02 12:02:33 -03:00
|
|
|
|
self.assertEqual(f, got)
|
2005-06-03 11:41:55 -03:00
|
|
|
|
# and with version <= 1 (floats marshalled differently then)
|
|
|
|
|
s = marshal.dumps(f, 1)
|
2005-06-03 19:40:27 -03:00
|
|
|
|
got = marshal.loads(s)
|
|
|
|
|
self.assertEqual(f, got)
|
2003-08-02 12:02:33 -03:00
|
|
|
|
|
|
|
|
|
n = sys.maxint * 3.7e-250
|
|
|
|
|
while n < small:
|
|
|
|
|
for expected in (-n, n):
|
|
|
|
|
f = float(expected)
|
2005-06-03 19:40:27 -03:00
|
|
|
|
|
2003-08-02 12:02:33 -03:00
|
|
|
|
s = marshal.dumps(f)
|
|
|
|
|
got = marshal.loads(s)
|
|
|
|
|
self.assertEqual(f, got)
|
2005-06-03 19:40:27 -03:00
|
|
|
|
|
2005-06-03 11:41:55 -03:00
|
|
|
|
s = marshal.dumps(f, 1)
|
|
|
|
|
got = marshal.loads(s)
|
|
|
|
|
self.assertEqual(f, got)
|
2005-06-03 19:40:27 -03:00
|
|
|
|
|
2003-08-02 12:02:33 -03:00
|
|
|
|
marshal.dump(f, file(test_support.TESTFN, "wb"))
|
|
|
|
|
got = marshal.load(file(test_support.TESTFN, "rb"))
|
|
|
|
|
self.assertEqual(f, got)
|
2005-06-03 19:40:27 -03:00
|
|
|
|
|
2005-06-03 11:41:55 -03:00
|
|
|
|
marshal.dump(f, file(test_support.TESTFN, "wb"), 1)
|
|
|
|
|
got = marshal.load(file(test_support.TESTFN, "rb"))
|
|
|
|
|
self.assertEqual(f, got)
|
2003-08-02 12:02:33 -03:00
|
|
|
|
n *= 123.4567
|
|
|
|
|
os.unlink(test_support.TESTFN)
|
|
|
|
|
|
|
|
|
|
class StringTestCase(unittest.TestCase):
|
|
|
|
|
def test_unicode(self):
|
|
|
|
|
for s in [u"", u"Andr<EFBFBD> Previn", u"abc", u" "*10000]:
|
|
|
|
|
new = marshal.loads(marshal.dumps(s))
|
|
|
|
|
self.assertEqual(s, new)
|
|
|
|
|
self.assertEqual(type(s), type(new))
|
|
|
|
|
marshal.dump(s, file(test_support.TESTFN, "wb"))
|
2005-06-04 09:55:32 -03:00
|
|
|
|
new = marshal.load(file(test_support.TESTFN, "rb"))
|
2003-08-02 12:02:33 -03:00
|
|
|
|
self.assertEqual(s, new)
|
|
|
|
|
self.assertEqual(type(s), type(new))
|
|
|
|
|
os.unlink(test_support.TESTFN)
|
|
|
|
|
|
|
|
|
|
def test_string(self):
|
|
|
|
|
for s in ["", "Andr<EFBFBD> Previn", "abc", " "*10000]:
|
|
|
|
|
new = marshal.loads(marshal.dumps(s))
|
|
|
|
|
self.assertEqual(s, new)
|
|
|
|
|
self.assertEqual(type(s), type(new))
|
|
|
|
|
marshal.dump(s, file(test_support.TESTFN, "wb"))
|
2005-06-04 09:55:32 -03:00
|
|
|
|
new = marshal.load(file(test_support.TESTFN, "rb"))
|
2003-08-02 12:02:33 -03:00
|
|
|
|
self.assertEqual(s, new)
|
|
|
|
|
self.assertEqual(type(s), type(new))
|
|
|
|
|
os.unlink(test_support.TESTFN)
|
|
|
|
|
|
|
|
|
|
def test_buffer(self):
|
|
|
|
|
for s in ["", "Andr<EFBFBD> Previn", "abc", " "*10000]:
|
2010-03-20 22:14:24 -03:00
|
|
|
|
with test_support.check_py3k_warnings(("buffer.. not supported",
|
|
|
|
|
DeprecationWarning)):
|
|
|
|
|
b = buffer(s)
|
2003-08-02 12:02:33 -03:00
|
|
|
|
new = marshal.loads(marshal.dumps(b))
|
|
|
|
|
self.assertEqual(s, new)
|
|
|
|
|
marshal.dump(b, file(test_support.TESTFN, "wb"))
|
2005-06-04 09:55:32 -03:00
|
|
|
|
new = marshal.load(file(test_support.TESTFN, "rb"))
|
2003-08-02 12:02:33 -03:00
|
|
|
|
self.assertEqual(s, new)
|
|
|
|
|
os.unlink(test_support.TESTFN)
|
2004-01-18 16:29:55 -04:00
|
|
|
|
|
2003-08-02 12:02:33 -03:00
|
|
|
|
class ExceptionTestCase(unittest.TestCase):
|
|
|
|
|
def test_exceptions(self):
|
|
|
|
|
new = marshal.loads(marshal.dumps(StopIteration))
|
|
|
|
|
self.assertEqual(StopIteration, new)
|
|
|
|
|
|
|
|
|
|
class CodeTestCase(unittest.TestCase):
|
|
|
|
|
def test_code(self):
|
|
|
|
|
co = ExceptionTestCase.test_exceptions.func_code
|
|
|
|
|
new = marshal.loads(marshal.dumps(co))
|
|
|
|
|
self.assertEqual(co, new)
|
|
|
|
|
|
|
|
|
|
class ContainerTestCase(unittest.TestCase):
|
|
|
|
|
d = {'astring': 'foo@bar.baz.spam',
|
|
|
|
|
'afloat': 7283.43,
|
|
|
|
|
'anint': 2**20,
|
|
|
|
|
'ashortlong': 2L,
|
|
|
|
|
'alist': ['.zyx.41'],
|
|
|
|
|
'atuple': ('.zyx.41',)*10,
|
|
|
|
|
'aboolean': False,
|
|
|
|
|
'aunicode': u"Andr<EFBFBD> Previn"
|
|
|
|
|
}
|
|
|
|
|
def test_dict(self):
|
|
|
|
|
new = marshal.loads(marshal.dumps(self.d))
|
|
|
|
|
self.assertEqual(self.d, new)
|
|
|
|
|
marshal.dump(self.d, file(test_support.TESTFN, "wb"))
|
2005-06-04 09:55:32 -03:00
|
|
|
|
new = marshal.load(file(test_support.TESTFN, "rb"))
|
2003-08-02 12:02:33 -03:00
|
|
|
|
self.assertEqual(self.d, new)
|
|
|
|
|
os.unlink(test_support.TESTFN)
|
2004-01-18 16:29:55 -04:00
|
|
|
|
|
2003-08-02 12:02:33 -03:00
|
|
|
|
def test_list(self):
|
|
|
|
|
lst = self.d.items()
|
|
|
|
|
new = marshal.loads(marshal.dumps(lst))
|
|
|
|
|
self.assertEqual(lst, new)
|
|
|
|
|
marshal.dump(lst, file(test_support.TESTFN, "wb"))
|
2005-06-04 09:55:32 -03:00
|
|
|
|
new = marshal.load(file(test_support.TESTFN, "rb"))
|
2003-08-02 12:02:33 -03:00
|
|
|
|
self.assertEqual(lst, new)
|
|
|
|
|
os.unlink(test_support.TESTFN)
|
|
|
|
|
|
|
|
|
|
def test_tuple(self):
|
|
|
|
|
t = tuple(self.d.keys())
|
|
|
|
|
new = marshal.loads(marshal.dumps(t))
|
|
|
|
|
self.assertEqual(t, new)
|
|
|
|
|
marshal.dump(t, file(test_support.TESTFN, "wb"))
|
2005-06-04 09:55:32 -03:00
|
|
|
|
new = marshal.load(file(test_support.TESTFN, "rb"))
|
2003-08-02 12:02:33 -03:00
|
|
|
|
self.assertEqual(t, new)
|
|
|
|
|
os.unlink(test_support.TESTFN)
|
2005-01-10 23:03:27 -04:00
|
|
|
|
|
|
|
|
|
def test_sets(self):
|
|
|
|
|
for constructor in (set, frozenset):
|
|
|
|
|
t = constructor(self.d.keys())
|
|
|
|
|
new = marshal.loads(marshal.dumps(t))
|
|
|
|
|
self.assertEqual(t, new)
|
2009-06-30 19:57:08 -03:00
|
|
|
|
self.assertTrue(isinstance(new, constructor))
|
2005-01-10 23:03:27 -04:00
|
|
|
|
self.assertNotEqual(id(t), id(new))
|
|
|
|
|
marshal.dump(t, file(test_support.TESTFN, "wb"))
|
2005-06-04 09:55:32 -03:00
|
|
|
|
new = marshal.load(file(test_support.TESTFN, "rb"))
|
2005-01-10 23:03:27 -04:00
|
|
|
|
self.assertEqual(t, new)
|
|
|
|
|
os.unlink(test_support.TESTFN)
|
2004-01-18 16:29:55 -04:00
|
|
|
|
|
2003-08-02 12:02:33 -03:00
|
|
|
|
class BugsTestCase(unittest.TestCase):
|
|
|
|
|
def test_bug_5888452(self):
|
|
|
|
|
# Simple-minded check for SF 588452: Debug build crashes
|
|
|
|
|
marshal.dumps([128] * 1000)
|
|
|
|
|
|
2004-03-26 11:09:27 -04:00
|
|
|
|
def test_patch_873224(self):
|
|
|
|
|
self.assertRaises(Exception, marshal.loads, '0')
|
|
|
|
|
self.assertRaises(Exception, marshal.loads, 'f')
|
|
|
|
|
self.assertRaises(Exception, marshal.loads, marshal.dumps(5L)[:-1])
|
|
|
|
|
|
2004-12-20 08:25:57 -04:00
|
|
|
|
def test_version_argument(self):
|
|
|
|
|
# Python 2.4.0 crashes for any call to marshal.dumps(x, y)
|
2010-11-21 09:34:58 -04:00
|
|
|
|
self.assertEqual(marshal.loads(marshal.dumps(5, 0)), 5)
|
|
|
|
|
self.assertEqual(marshal.loads(marshal.dumps(5, 1)), 5)
|
2004-12-20 08:25:57 -04:00
|
|
|
|
|
2005-06-13 15:28:46 -03:00
|
|
|
|
def test_fuzz(self):
|
|
|
|
|
# simple test that it's at least not *totally* trivial to
|
|
|
|
|
# crash from bad marshal data
|
|
|
|
|
for c in [chr(i) for i in range(256)]:
|
|
|
|
|
try:
|
|
|
|
|
marshal.loads(c)
|
|
|
|
|
except Exception:
|
|
|
|
|
pass
|
|
|
|
|
|
2007-05-18 02:47:16 -03:00
|
|
|
|
def test_loads_recursion(self):
|
2007-05-16 17:05:11 -03:00
|
|
|
|
s = 'c' + ('X' * 4*4) + '{' * 2**20
|
|
|
|
|
self.assertRaises(ValueError, marshal.loads, s)
|
|
|
|
|
|
2007-05-18 02:47:16 -03:00
|
|
|
|
def test_recursion_limit(self):
|
|
|
|
|
# Create a deeply nested structure.
|
|
|
|
|
head = last = []
|
|
|
|
|
# The max stack depth should match the value in Python/marshal.c.
|
|
|
|
|
MAX_MARSHAL_STACK_DEPTH = 2000
|
|
|
|
|
for i in range(MAX_MARSHAL_STACK_DEPTH - 2):
|
|
|
|
|
last.append([0])
|
|
|
|
|
last = last[-1]
|
|
|
|
|
|
|
|
|
|
# Verify we don't blow out the stack with dumps/load.
|
|
|
|
|
data = marshal.dumps(head)
|
|
|
|
|
new_head = marshal.loads(data)
|
|
|
|
|
# Don't use == to compare objects, it can exceed the recursion limit.
|
|
|
|
|
self.assertEqual(len(new_head), len(head))
|
|
|
|
|
self.assertEqual(len(new_head[0]), len(head[0]))
|
|
|
|
|
self.assertEqual(len(new_head[-1]), len(head[-1]))
|
|
|
|
|
|
|
|
|
|
last.append([0])
|
|
|
|
|
self.assertRaises(ValueError, marshal.dumps, head)
|
|
|
|
|
|
2007-11-06 21:13:09 -04:00
|
|
|
|
def test_exact_type_match(self):
|
|
|
|
|
# Former bug:
|
|
|
|
|
# >>> class Int(int): pass
|
|
|
|
|
# >>> type(loads(dumps(Int())))
|
|
|
|
|
# <type 'int'>
|
|
|
|
|
for typ in (int, long, float, complex, tuple, list, dict, set, frozenset):
|
|
|
|
|
# Note: str and unicode sublclasses are not tested because they get handled
|
|
|
|
|
# by marshal's routines for objects supporting the buffer API.
|
|
|
|
|
subtyp = type('subtyp', (typ,), {})
|
|
|
|
|
self.assertRaises(ValueError, marshal.dumps, subtyp())
|
|
|
|
|
|
2008-05-11 10:33:56 -03:00
|
|
|
|
# Issue #1792 introduced a change in how marshal increases the size of its
|
|
|
|
|
# internal buffer; this test ensures that the new code is exercised.
|
|
|
|
|
def test_large_marshal(self):
|
|
|
|
|
size = int(1e6)
|
|
|
|
|
testString = 'abc' * size
|
|
|
|
|
marshal.dumps(testString)
|
|
|
|
|
|
2009-09-29 16:01:06 -03:00
|
|
|
|
def test_invalid_longs(self):
|
|
|
|
|
# Issue #7019: marshal.loads shouldn't produce unnormalized PyLongs
|
|
|
|
|
invalid_string = 'l\x02\x00\x00\x00\x00\x00\x00\x00'
|
|
|
|
|
self.assertRaises(ValueError, marshal.loads, invalid_string)
|
|
|
|
|
|
2008-05-11 10:33:56 -03:00
|
|
|
|
|
2003-08-02 12:02:33 -03:00
|
|
|
|
def test_main():
|
|
|
|
|
test_support.run_unittest(IntTestCase,
|
|
|
|
|
FloatTestCase,
|
|
|
|
|
StringTestCase,
|
|
|
|
|
CodeTestCase,
|
|
|
|
|
ContainerTestCase,
|
|
|
|
|
ExceptionTestCase,
|
|
|
|
|
BugsTestCase)
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
test_main()
|