blob: 8a5590a4a0ec7707c7974e03bbf1ceebf08798b1 [file] [log] [blame]
Benjamin Peterson90f5ba52010-03-11 22:53:45 +00001#!/usr/bin/env python3
Skip Montanaroc1b41542003-08-02 15:02:33 +00002
Benjamin Petersonee8712c2008-05-20 21:35:26 +00003from test import support
Tim Peters82112372001-08-29 02:28:42 +00004import marshal
5import sys
Skip Montanaroc1b41542003-08-02 15:02:33 +00006import unittest
7import os
Benjamin Peterson43b06862011-05-27 09:08:01 -05008import types
Tim Peters82112372001-08-29 02:28:42 +00009
Guido van Rossum47f17d02007-07-10 11:37:44 +000010class HelperMixin:
11 def helper(self, sample, *extra):
12 new = marshal.loads(marshal.dumps(sample, *extra))
13 self.assertEqual(sample, new)
14 try:
Brian Curtin2c3563f2010-10-13 02:40:26 +000015 with open(support.TESTFN, "wb") as f:
Guido van Rossum47f17d02007-07-10 11:37:44 +000016 marshal.dump(sample, f, *extra)
Brian Curtin2c3563f2010-10-13 02:40:26 +000017 with open(support.TESTFN, "rb") as f:
Guido van Rossum47f17d02007-07-10 11:37:44 +000018 new = marshal.load(f)
Guido van Rossum47f17d02007-07-10 11:37:44 +000019 self.assertEqual(sample, new)
20 finally:
Benjamin Petersonee8712c2008-05-20 21:35:26 +000021 support.unlink(support.TESTFN)
Guido van Rossum47f17d02007-07-10 11:37:44 +000022
23class IntTestCase(unittest.TestCase, HelperMixin):
Skip Montanaroc1b41542003-08-02 15:02:33 +000024 def test_ints(self):
25 # Test the full range of Python ints.
Christian Heimesa37d4c62007-12-04 23:02:19 +000026 n = sys.maxsize
Skip Montanaroc1b41542003-08-02 15:02:33 +000027 while n:
28 for expected in (-n, n):
Guido van Rossum47f17d02007-07-10 11:37:44 +000029 self.helper(expected)
Skip Montanaroc1b41542003-08-02 15:02:33 +000030 n = n >> 1
Tim Peters82112372001-08-29 02:28:42 +000031
Skip Montanaroc1b41542003-08-02 15:02:33 +000032 def test_int64(self):
33 # Simulate int marshaling on a 64-bit box. This is most interesting if
34 # we're running the test on a 32-bit box, of course.
35
36 def to_little_endian_string(value, nbytes):
Guido van Rossum254348e2007-11-21 19:29:53 +000037 b = bytearray()
Skip Montanaroc1b41542003-08-02 15:02:33 +000038 for i in range(nbytes):
Guido van Rossume6d39042007-05-09 00:01:30 +000039 b.append(value & 0xff)
Skip Montanaroc1b41542003-08-02 15:02:33 +000040 value >>= 8
Guido van Rossume6d39042007-05-09 00:01:30 +000041 return b
Skip Montanaroc1b41542003-08-02 15:02:33 +000042
Guido van Rossume2a383d2007-01-15 16:59:06 +000043 maxint64 = (1 << 63) - 1
Skip Montanaroc1b41542003-08-02 15:02:33 +000044 minint64 = -maxint64-1
45
46 for base in maxint64, minint64, -maxint64, -(minint64 >> 1):
47 while base:
Guido van Rossume6d39042007-05-09 00:01:30 +000048 s = b'I' + to_little_endian_string(base, 8)
Skip Montanaroc1b41542003-08-02 15:02:33 +000049 got = marshal.loads(s)
50 self.assertEqual(base, got)
51 if base == -1: # a fixed-point for shifting right 1
52 base = 0
53 else:
54 base >>= 1
55
56 def test_bool(self):
57 for b in (True, False):
Guido van Rossum47f17d02007-07-10 11:37:44 +000058 self.helper(b)
Tim Peters58eb11c2004-01-18 20:29:55 +000059
Guido van Rossum47f17d02007-07-10 11:37:44 +000060class FloatTestCase(unittest.TestCase, HelperMixin):
Skip Montanaroc1b41542003-08-02 15:02:33 +000061 def test_floats(self):
62 # Test a few floats
63 small = 1e-25
Christian Heimesa37d4c62007-12-04 23:02:19 +000064 n = sys.maxsize * 3.7e250
Skip Montanaroc1b41542003-08-02 15:02:33 +000065 while n > small:
66 for expected in (-n, n):
Guido van Rossum47f17d02007-07-10 11:37:44 +000067 self.helper(float(expected))
Skip Montanaroc1b41542003-08-02 15:02:33 +000068 n /= 123.4567
69
70 f = 0.0
Michael W. Hudsondf888462005-06-03 14:41:55 +000071 s = marshal.dumps(f, 2)
Tim Peters82112372001-08-29 02:28:42 +000072 got = marshal.loads(s)
Skip Montanaroc1b41542003-08-02 15:02:33 +000073 self.assertEqual(f, got)
Michael W. Hudsondf888462005-06-03 14:41:55 +000074 # and with version <= 1 (floats marshalled differently then)
75 s = marshal.dumps(f, 1)
Tim Peters5d36a552005-06-03 22:40:27 +000076 got = marshal.loads(s)
77 self.assertEqual(f, got)
Tim Peters82112372001-08-29 02:28:42 +000078
Christian Heimesa37d4c62007-12-04 23:02:19 +000079 n = sys.maxsize * 3.7e-250
Skip Montanaroc1b41542003-08-02 15:02:33 +000080 while n < small:
81 for expected in (-n, n):
82 f = float(expected)
Guido van Rossum47f17d02007-07-10 11:37:44 +000083 self.helper(f)
84 self.helper(f, 1)
Skip Montanaroc1b41542003-08-02 15:02:33 +000085 n *= 123.4567
Tim Peters82112372001-08-29 02:28:42 +000086
Guido van Rossum47f17d02007-07-10 11:37:44 +000087class StringTestCase(unittest.TestCase, HelperMixin):
Skip Montanaroc1b41542003-08-02 15:02:33 +000088 def test_unicode(self):
Guido van Rossum47f17d02007-07-10 11:37:44 +000089 for s in ["", "Andr\xe8 Previn", "abc", " "*10000]:
90 self.helper(marshal.loads(marshal.dumps(s)))
Tim Peters82112372001-08-29 02:28:42 +000091
Skip Montanaroc1b41542003-08-02 15:02:33 +000092 def test_string(self):
Guido van Rossum47f17d02007-07-10 11:37:44 +000093 for s in ["", "Andr\xe8 Previn", "abc", " "*10000]:
94 self.helper(s)
Tim Peters82112372001-08-29 02:28:42 +000095
Guido van Rossumbae07c92007-10-08 02:46:15 +000096 def test_bytes(self):
Guido van Rossume6d39042007-05-09 00:01:30 +000097 for s in [b"", b"Andr\xe8 Previn", b"abc", b" "*10000]:
Guido van Rossumbae07c92007-10-08 02:46:15 +000098 self.helper(s)
Tim Peters58eb11c2004-01-18 20:29:55 +000099
Skip Montanaroc1b41542003-08-02 15:02:33 +0000100class ExceptionTestCase(unittest.TestCase):
101 def test_exceptions(self):
102 new = marshal.loads(marshal.dumps(StopIteration))
103 self.assertEqual(StopIteration, new)
Thomas Heller3e1c18a2002-07-30 11:40:57 +0000104
Skip Montanaroc1b41542003-08-02 15:02:33 +0000105class CodeTestCase(unittest.TestCase):
106 def test_code(self):
Neal Norwitz221085d2007-02-25 20:55:47 +0000107 co = ExceptionTestCase.test_exceptions.__code__
Skip Montanaroc1b41542003-08-02 15:02:33 +0000108 new = marshal.loads(marshal.dumps(co))
109 self.assertEqual(co, new)
110
Amaury Forgeot d'Arc74c71f52008-05-26 21:41:42 +0000111 def test_many_codeobjects(self):
112 # Issue2957: bad recursion count on code objects
113 count = 5000 # more than MAX_MARSHAL_STACK_DEPTH
114 codes = (ExceptionTestCase.test_exceptions.__code__,) * count
115 marshal.loads(marshal.dumps(codes))
116
Benjamin Peterson43b06862011-05-27 09:08:01 -0500117 def test_different_filenames(self):
118 co1 = compile("x", "f1", "exec")
119 co2 = compile("y", "f2", "exec")
120 co1, co2 = marshal.loads(marshal.dumps((co1, co2)))
121 self.assertEqual(co1.co_filename, "f1")
122 self.assertEqual(co2.co_filename, "f2")
123
124 @support.cpython_only
125 def test_same_filename_used(self):
126 s = """def f(): pass\ndef g(): pass"""
127 co = compile(s, "myfile", "exec")
128 co = marshal.loads(marshal.dumps(co))
129 for obj in co.co_consts:
130 if isinstance(obj, types.CodeType):
131 self.assertIs(co.co_filename, obj.co_filename)
132
Guido van Rossum47f17d02007-07-10 11:37:44 +0000133class ContainerTestCase(unittest.TestCase, HelperMixin):
Skip Montanaroc1b41542003-08-02 15:02:33 +0000134 d = {'astring': 'foo@bar.baz.spam',
135 'afloat': 7283.43,
136 'anint': 2**20,
Guido van Rossume2a383d2007-01-15 16:59:06 +0000137 'ashortlong': 2,
Skip Montanaroc1b41542003-08-02 15:02:33 +0000138 'alist': ['.zyx.41'],
139 'atuple': ('.zyx.41',)*10,
140 'aboolean': False,
Guido van Rossum47f17d02007-07-10 11:37:44 +0000141 'aunicode': "Andr\xe8 Previn"
Skip Montanaroc1b41542003-08-02 15:02:33 +0000142 }
Guido van Rossum47f17d02007-07-10 11:37:44 +0000143
Skip Montanaroc1b41542003-08-02 15:02:33 +0000144 def test_dict(self):
Guido van Rossum47f17d02007-07-10 11:37:44 +0000145 self.helper(self.d)
Tim Peters58eb11c2004-01-18 20:29:55 +0000146
Skip Montanaroc1b41542003-08-02 15:02:33 +0000147 def test_list(self):
Guido van Rossum47f17d02007-07-10 11:37:44 +0000148 self.helper(list(self.d.items()))
Skip Montanaroc1b41542003-08-02 15:02:33 +0000149
150 def test_tuple(self):
Guido van Rossum47f17d02007-07-10 11:37:44 +0000151 self.helper(tuple(self.d.keys()))
Tim Peters58eb11c2004-01-18 20:29:55 +0000152
Raymond Hettingera422c342005-01-11 03:03:27 +0000153 def test_sets(self):
154 for constructor in (set, frozenset):
Guido van Rossum47f17d02007-07-10 11:37:44 +0000155 self.helper(constructor(self.d.keys()))
Raymond Hettingera422c342005-01-11 03:03:27 +0000156
Skip Montanaroc1b41542003-08-02 15:02:33 +0000157class BugsTestCase(unittest.TestCase):
158 def test_bug_5888452(self):
159 # Simple-minded check for SF 588452: Debug build crashes
160 marshal.dumps([128] * 1000)
161
Armin Rigo01ab2792004-03-26 15:09:27 +0000162 def test_patch_873224(self):
163 self.assertRaises(Exception, marshal.loads, '0')
164 self.assertRaises(Exception, marshal.loads, 'f')
Guido van Rossume2a383d2007-01-15 16:59:06 +0000165 self.assertRaises(Exception, marshal.loads, marshal.dumps(2**65)[:-1])
Armin Rigo01ab2792004-03-26 15:09:27 +0000166
Armin Rigo2ccea172004-12-20 12:25:57 +0000167 def test_version_argument(self):
168 # Python 2.4.0 crashes for any call to marshal.dumps(x, y)
Ezio Melottib3aedd42010-11-20 19:04:17 +0000169 self.assertEqual(marshal.loads(marshal.dumps(5, 0)), 5)
170 self.assertEqual(marshal.loads(marshal.dumps(5, 1)), 5)
Armin Rigo2ccea172004-12-20 12:25:57 +0000171
Michael W. Hudsonf2ca5af2005-06-13 18:28:46 +0000172 def test_fuzz(self):
173 # simple test that it's at least not *totally* trivial to
174 # crash from bad marshal data
175 for c in [chr(i) for i in range(256)]:
176 try:
177 marshal.loads(c)
178 except Exception:
179 pass
180
Guido van Rossumd59da4b2007-05-22 18:11:13 +0000181 def test_loads_recursion(self):
182 s = 'c' + ('X' * 4*4) + '{' * 2**20
183 self.assertRaises(ValueError, marshal.loads, s)
184
185 def test_recursion_limit(self):
186 # Create a deeply nested structure.
187 head = last = []
188 # The max stack depth should match the value in Python/marshal.c.
Guido van Rossum991bf5d2007-08-29 18:44:54 +0000189 if os.name == 'nt' and hasattr(sys, 'gettotalrefcount'):
190 MAX_MARSHAL_STACK_DEPTH = 1500
191 else:
192 MAX_MARSHAL_STACK_DEPTH = 2000
Guido van Rossumd59da4b2007-05-22 18:11:13 +0000193 for i in range(MAX_MARSHAL_STACK_DEPTH - 2):
194 last.append([0])
195 last = last[-1]
196
197 # Verify we don't blow out the stack with dumps/load.
198 data = marshal.dumps(head)
199 new_head = marshal.loads(data)
200 # Don't use == to compare objects, it can exceed the recursion limit.
201 self.assertEqual(len(new_head), len(head))
202 self.assertEqual(len(new_head[0]), len(head[0]))
203 self.assertEqual(len(new_head[-1]), len(head[-1]))
204
205 last.append([0])
206 self.assertRaises(ValueError, marshal.dumps, head)
207
Guido van Rossum58da9312007-11-10 23:39:45 +0000208 def test_exact_type_match(self):
209 # Former bug:
210 # >>> class Int(int): pass
211 # >>> type(loads(dumps(Int())))
212 # <type 'int'>
213 for typ in (int, float, complex, tuple, list, dict, set, frozenset):
Ezio Melotti13925002011-03-16 11:05:33 +0200214 # Note: str subclasses are not tested because they get handled
Guido van Rossum58da9312007-11-10 23:39:45 +0000215 # by marshal's routines for objects supporting the buffer API.
216 subtyp = type('subtyp', (typ,), {})
217 self.assertRaises(ValueError, marshal.dumps, subtyp())
218
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +0000219 # Issue #1792 introduced a change in how marshal increases the size of its
220 # internal buffer; this test ensures that the new code is exercised.
221 def test_large_marshal(self):
222 size = int(1e6)
223 testString = 'abc' * size
224 marshal.dumps(testString)
225
Mark Dickinson2683ab02009-09-29 19:21:35 +0000226 def test_invalid_longs(self):
227 # Issue #7019: marshal.loads shouldn't produce unnormalized PyLongs
228 invalid_string = b'l\x02\x00\x00\x00\x00\x00\x00\x00'
229 self.assertRaises(ValueError, marshal.loads, invalid_string)
230
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +0000231
Skip Montanaroc1b41542003-08-02 15:02:33 +0000232def test_main():
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000233 support.run_unittest(IntTestCase,
Skip Montanaroc1b41542003-08-02 15:02:33 +0000234 FloatTestCase,
235 StringTestCase,
236 CodeTestCase,
237 ContainerTestCase,
238 ExceptionTestCase,
239 BugsTestCase)
240
241if __name__ == "__main__":
242 test_main()