blob: cd021750d7e7f795c2e4952977fe39d6ce512b87 [file] [log] [blame]
Guido van Rossum7d9ea502003-02-03 20:45:52 +00001import unittest
2from test import test_support
Gregory P. Smithc856fa82008-03-18 22:27:41 +00003import binascii
Andrew M. Kuchling9a0f98e2001-02-21 02:17:01 +00004import random
Antoine Pitrou3843cd82010-05-07 16:50:34 +00005from test.test_support import precisionbigmemtest, _1G
Andrew M. Kuchling9a0f98e2001-02-21 02:17:01 +00006
R. David Murray3db8a342009-03-30 23:05:48 +00007zlib = test_support.import_module('zlib')
8
Andrew M. Kuchling9a0f98e2001-02-21 02:17:01 +00009
Guido van Rossum7d9ea502003-02-03 20:45:52 +000010class ChecksumTestCase(unittest.TestCase):
11 # checksum test cases
12 def test_crc32start(self):
13 self.assertEqual(zlib.crc32(""), zlib.crc32("", 0))
Benjamin Peterson5c8da862009-06-30 22:57:08 +000014 self.assertTrue(zlib.crc32("abc", 0xffffffff))
Andrew M. Kuchlingfcfc8d52001-08-10 15:50:11 +000015
Guido van Rossum7d9ea502003-02-03 20:45:52 +000016 def test_crc32empty(self):
17 self.assertEqual(zlib.crc32("", 0), 0)
18 self.assertEqual(zlib.crc32("", 1), 1)
19 self.assertEqual(zlib.crc32("", 432), 432)
Andrew M. Kuchling9a0f98e2001-02-21 02:17:01 +000020
Guido van Rossum7d9ea502003-02-03 20:45:52 +000021 def test_adler32start(self):
22 self.assertEqual(zlib.adler32(""), zlib.adler32("", 1))
Benjamin Peterson5c8da862009-06-30 22:57:08 +000023 self.assertTrue(zlib.adler32("abc", 0xffffffff))
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +000024
Guido van Rossum7d9ea502003-02-03 20:45:52 +000025 def test_adler32empty(self):
26 self.assertEqual(zlib.adler32("", 0), 0)
27 self.assertEqual(zlib.adler32("", 1), 1)
28 self.assertEqual(zlib.adler32("", 432), 432)
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +000029
Guido van Rossum7d9ea502003-02-03 20:45:52 +000030 def assertEqual32(self, seen, expected):
31 # 32-bit values masked -- checksums on 32- vs 64- bit machines
32 # This is important if bit 31 (0x08000000L) is set.
33 self.assertEqual(seen & 0x0FFFFFFFFL, expected & 0x0FFFFFFFFL)
34
35 def test_penguins(self):
36 self.assertEqual32(zlib.crc32("penguin", 0), 0x0e5c1a120L)
37 self.assertEqual32(zlib.crc32("penguin", 1), 0x43b6aa94)
38 self.assertEqual32(zlib.adler32("penguin", 0), 0x0bcf02f6)
39 self.assertEqual32(zlib.adler32("penguin", 1), 0x0bd602f7)
40
41 self.assertEqual(zlib.crc32("penguin"), zlib.crc32("penguin", 0))
42 self.assertEqual(zlib.adler32("penguin"),zlib.adler32("penguin",1))
43
Gregory P. Smithf48f9d32008-03-17 18:48:05 +000044 def test_abcdefghijklmnop(self):
45 """test issue1202 compliance: signed crc32, adler32 in 2.x"""
46 foo = 'abcdefghijklmnop'
47 # explicitly test signed behavior
48 self.assertEqual(zlib.crc32(foo), -1808088941)
49 self.assertEqual(zlib.crc32('spam'), 1138425661)
50 self.assertEqual(zlib.adler32(foo+foo), -721416943)
51 self.assertEqual(zlib.adler32('spam'), 72286642)
52
Gregory P. Smithc856fa82008-03-18 22:27:41 +000053 def test_same_as_binascii_crc32(self):
54 foo = 'abcdefghijklmnop'
55 self.assertEqual(binascii.crc32(foo), zlib.crc32(foo))
56 self.assertEqual(binascii.crc32('spam'), zlib.crc32('spam'))
57
Gregory P. Smith88440962008-03-25 06:12:45 +000058 def test_negative_crc_iv_input(self):
59 # The range of valid input values for the crc state should be
60 # -2**31 through 2**32-1 to allow inputs artifically constrained
61 # to a signed 32-bit integer.
62 self.assertEqual(zlib.crc32('ham', -1), zlib.crc32('ham', 0xffffffffL))
63 self.assertEqual(zlib.crc32('spam', -3141593),
64 zlib.crc32('spam', 0xffd01027L))
65 self.assertEqual(zlib.crc32('spam', -(2**31)),
66 zlib.crc32('spam', (2**31)))
Guido van Rossum7d9ea502003-02-03 20:45:52 +000067
68
69class ExceptionTestCase(unittest.TestCase):
70 # make sure we generate some expected errors
Armin Rigoec560192007-10-15 07:48:35 +000071 def test_badlevel(self):
72 # specifying compression level out of range causes an error
73 # (but -1 is Z_DEFAULT_COMPRESSION and apparently the zlib
74 # accepts 0 too)
75 self.assertRaises(zlib.error, zlib.compress, 'ERROR', 10)
Guido van Rossum7d9ea502003-02-03 20:45:52 +000076
77 def test_badcompressobj(self):
78 # verify failure on building compress object with bad params
Neil Schemenauer94afd3e2004-06-05 19:02:52 +000079 self.assertRaises(ValueError, zlib.compressobj, 1, zlib.DEFLATED, 0)
Armin Rigoec560192007-10-15 07:48:35 +000080 # specifying total bits too large causes an error
81 self.assertRaises(ValueError,
82 zlib.compressobj, 1, zlib.DEFLATED, zlib.MAX_WBITS + 1)
Guido van Rossum7d9ea502003-02-03 20:45:52 +000083
84 def test_baddecompressobj(self):
85 # verify failure on building decompress object with bad params
Antoine Pitrou3b4c9892010-04-06 17:21:09 +000086 self.assertRaises(ValueError, zlib.decompressobj, -1)
Guido van Rossum7d9ea502003-02-03 20:45:52 +000087
Gregory P. Smith79e42a02008-04-09 00:25:17 +000088 def test_decompressobj_badflush(self):
89 # verify failure on calling decompressobj.flush with bad params
90 self.assertRaises(ValueError, zlib.decompressobj().flush, 0)
91 self.assertRaises(ValueError, zlib.decompressobj().flush, -1)
92
Guido van Rossum7d9ea502003-02-03 20:45:52 +000093
Antoine Pitrou3843cd82010-05-07 16:50:34 +000094class BaseCompressTestCase(object):
95 def check_big_compress_buffer(self, size, compress_func):
96 _1M = 1024 * 1024
97 fmt = "%%0%dx" % (2 * _1M)
98 # Generate 10MB worth of random, and expand it by repeating it.
99 # The assumption is that zlib's memory is not big enough to exploit
100 # such spread out redundancy.
101 data = ''.join([binascii.a2b_hex(fmt % random.getrandbits(8 * _1M))
102 for i in range(10)])
103 data = data * (size // len(data) + 1)
104 try:
105 compress_func(data)
106 finally:
107 # Release memory
108 data = None
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000109
Antoine Pitrou3843cd82010-05-07 16:50:34 +0000110 def check_big_decompress_buffer(self, size, decompress_func):
111 data = 'x' * size
112 try:
113 compressed = zlib.compress(data, 1)
114 finally:
115 # Release memory
116 data = None
117 data = decompress_func(compressed)
118 # Sanity check
119 try:
120 self.assertEqual(len(data), size)
121 self.assertEqual(len(data.strip('x')), 0)
122 finally:
123 data = None
124
125
126class CompressTestCase(BaseCompressTestCase, unittest.TestCase):
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000127 # Test compression in one go (whole message compression)
128 def test_speech(self):
Neil Schemenauer6412b122004-06-05 19:34:28 +0000129 x = zlib.compress(HAMLET_SCENE)
130 self.assertEqual(zlib.decompress(x), HAMLET_SCENE)
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000131
132 def test_speech128(self):
Neil Schemenauer6412b122004-06-05 19:34:28 +0000133 # compress more data
134 data = HAMLET_SCENE * 128
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000135 x = zlib.compress(data)
136 self.assertEqual(zlib.decompress(x), data)
137
Antoine Pitrou3843cd82010-05-07 16:50:34 +0000138 # Memory use of the following functions takes into account overallocation
139
140 @precisionbigmemtest(size=_1G + 1024 * 1024, memuse=3)
141 def test_big_compress_buffer(self, size):
142 compress = lambda s: zlib.compress(s, 1)
143 self.check_big_compress_buffer(size, compress)
144
145 @precisionbigmemtest(size=_1G + 1024 * 1024, memuse=2)
146 def test_big_decompress_buffer(self, size):
147 self.check_big_decompress_buffer(size, zlib.decompress)
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000148
149
Antoine Pitrou3843cd82010-05-07 16:50:34 +0000150class CompressObjectTestCase(BaseCompressTestCase, unittest.TestCase):
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000151 # Test compression object
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000152 def test_pair(self):
Neil Schemenauer6412b122004-06-05 19:34:28 +0000153 # straightforward compress/decompress objects
154 data = HAMLET_SCENE * 128
155 co = zlib.compressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000156 x1 = co.compress(data)
157 x2 = co.flush()
158 self.assertRaises(zlib.error, co.flush) # second flush should not work
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000159 dco = zlib.decompressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000160 y1 = dco.decompress(x1 + x2)
161 y2 = dco.flush()
162 self.assertEqual(data, y1 + y2)
163
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000164 def test_compressoptions(self):
165 # specify lots of options to compressobj()
166 level = 2
167 method = zlib.DEFLATED
168 wbits = -12
169 memlevel = 9
170 strategy = zlib.Z_FILTERED
171 co = zlib.compressobj(level, method, wbits, memlevel, strategy)
Neil Schemenauer6412b122004-06-05 19:34:28 +0000172 x1 = co.compress(HAMLET_SCENE)
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000173 x2 = co.flush()
174 dco = zlib.decompressobj(wbits)
175 y1 = dco.decompress(x1 + x2)
176 y2 = dco.flush()
Neil Schemenauer6412b122004-06-05 19:34:28 +0000177 self.assertEqual(HAMLET_SCENE, y1 + y2)
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000178
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000179 def test_compressincremental(self):
180 # compress object in steps, decompress object as one-shot
Neil Schemenauer6412b122004-06-05 19:34:28 +0000181 data = HAMLET_SCENE * 128
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000182 co = zlib.compressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000183 bufs = []
184 for i in range(0, len(data), 256):
185 bufs.append(co.compress(data[i:i+256]))
186 bufs.append(co.flush())
187 combuf = ''.join(bufs)
188
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000189 dco = zlib.decompressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000190 y1 = dco.decompress(''.join(bufs))
191 y2 = dco.flush()
192 self.assertEqual(data, y1 + y2)
193
Neil Schemenauer6412b122004-06-05 19:34:28 +0000194 def test_decompinc(self, flush=False, source=None, cx=256, dcx=64):
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000195 # compress object in steps, decompress object in steps
Neil Schemenauer6412b122004-06-05 19:34:28 +0000196 source = source or HAMLET_SCENE
197 data = source * 128
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000198 co = zlib.compressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000199 bufs = []
Neil Schemenauer6412b122004-06-05 19:34:28 +0000200 for i in range(0, len(data), cx):
201 bufs.append(co.compress(data[i:i+cx]))
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000202 bufs.append(co.flush())
203 combuf = ''.join(bufs)
204
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000205 self.assertEqual(data, zlib.decompress(combuf))
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000206
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000207 dco = zlib.decompressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000208 bufs = []
Neil Schemenauer6412b122004-06-05 19:34:28 +0000209 for i in range(0, len(combuf), dcx):
210 bufs.append(dco.decompress(combuf[i:i+dcx]))
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000211 self.assertEqual('', dco.unconsumed_tail, ########
212 "(A) uct should be '': not %d long" %
Neil Schemenauer6412b122004-06-05 19:34:28 +0000213 len(dco.unconsumed_tail))
214 if flush:
215 bufs.append(dco.flush())
216 else:
217 while True:
218 chunk = dco.decompress('')
219 if chunk:
220 bufs.append(chunk)
221 else:
222 break
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000223 self.assertEqual('', dco.unconsumed_tail, ########
Neil Schemenauer6412b122004-06-05 19:34:28 +0000224 "(B) uct should be '': not %d long" %
225 len(dco.unconsumed_tail))
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000226 self.assertEqual(data, ''.join(bufs))
227 # Failure means: "decompressobj with init options failed"
228
Neil Schemenauer6412b122004-06-05 19:34:28 +0000229 def test_decompincflush(self):
230 self.test_decompinc(flush=True)
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000231
Neil Schemenauer6412b122004-06-05 19:34:28 +0000232 def test_decompimax(self, source=None, cx=256, dcx=64):
233 # compress in steps, decompress in length-restricted steps
234 source = source or HAMLET_SCENE
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000235 # Check a decompression object with max_length specified
Neil Schemenauer6412b122004-06-05 19:34:28 +0000236 data = source * 128
237 co = zlib.compressobj()
238 bufs = []
239 for i in range(0, len(data), cx):
240 bufs.append(co.compress(data[i:i+cx]))
241 bufs.append(co.flush())
242 combuf = ''.join(bufs)
243 self.assertEqual(data, zlib.decompress(combuf),
244 'compressed data failure')
245
246 dco = zlib.decompressobj()
247 bufs = []
248 cb = combuf
249 while cb:
250 #max_length = 1 + len(cb)//10
251 chunk = dco.decompress(cb, dcx)
Benjamin Peterson5c8da862009-06-30 22:57:08 +0000252 self.assertFalse(len(chunk) > dcx,
Neil Schemenauer6412b122004-06-05 19:34:28 +0000253 'chunk too big (%d>%d)' % (len(chunk), dcx))
254 bufs.append(chunk)
255 cb = dco.unconsumed_tail
256 bufs.append(dco.flush())
257 self.assertEqual(data, ''.join(bufs), 'Wrong data retrieved')
258
259 def test_decompressmaxlen(self, flush=False):
260 # Check a decompression object with max_length specified
261 data = HAMLET_SCENE * 128
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000262 co = zlib.compressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000263 bufs = []
264 for i in range(0, len(data), 256):
265 bufs.append(co.compress(data[i:i+256]))
266 bufs.append(co.flush())
267 combuf = ''.join(bufs)
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000268 self.assertEqual(data, zlib.decompress(combuf),
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000269 'compressed data failure')
270
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000271 dco = zlib.decompressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000272 bufs = []
273 cb = combuf
274 while cb:
Guido van Rossumf3594102003-02-27 18:39:18 +0000275 max_length = 1 + len(cb)//10
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000276 chunk = dco.decompress(cb, max_length)
Benjamin Peterson5c8da862009-06-30 22:57:08 +0000277 self.assertFalse(len(chunk) > max_length,
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000278 'chunk too big (%d>%d)' % (len(chunk),max_length))
279 bufs.append(chunk)
280 cb = dco.unconsumed_tail
Neil Schemenauer6412b122004-06-05 19:34:28 +0000281 if flush:
282 bufs.append(dco.flush())
283 else:
284 while chunk:
285 chunk = dco.decompress('', max_length)
Benjamin Peterson5c8da862009-06-30 22:57:08 +0000286 self.assertFalse(len(chunk) > max_length,
Neil Schemenauer6412b122004-06-05 19:34:28 +0000287 'chunk too big (%d>%d)' % (len(chunk),max_length))
288 bufs.append(chunk)
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000289 self.assertEqual(data, ''.join(bufs), 'Wrong data retrieved')
290
Neil Schemenauer6412b122004-06-05 19:34:28 +0000291 def test_decompressmaxlenflush(self):
292 self.test_decompressmaxlen(flush=True)
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000293
294 def test_maxlenmisc(self):
295 # Misc tests of max_length
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000296 dco = zlib.decompressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000297 self.assertRaises(ValueError, dco.decompress, "", -1)
298 self.assertEqual('', dco.unconsumed_tail)
299
300 def test_flushes(self):
301 # Test flush() with the various options, using all the
302 # different levels in order to provide more variations.
303 sync_opt = ['Z_NO_FLUSH', 'Z_SYNC_FLUSH', 'Z_FULL_FLUSH']
304 sync_opt = [getattr(zlib, opt) for opt in sync_opt
305 if hasattr(zlib, opt)]
Neil Schemenauer6412b122004-06-05 19:34:28 +0000306 data = HAMLET_SCENE * 8
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000307
308 for sync in sync_opt:
309 for level in range(10):
310 obj = zlib.compressobj( level )
311 a = obj.compress( data[:3000] )
312 b = obj.flush( sync )
313 c = obj.compress( data[3000:] )
314 d = obj.flush()
315 self.assertEqual(zlib.decompress(''.join([a,b,c,d])),
316 data, ("Decompress failed: flush "
317 "mode=%i, level=%i") % (sync, level))
318 del obj
319
320 def test_odd_flush(self):
321 # Test for odd flushing bugs noted in 2.0, and hopefully fixed in 2.1
322 import random
323
324 if hasattr(zlib, 'Z_SYNC_FLUSH'):
325 # Testing on 17K of "random" data
326
327 # Create compressor and decompressor objects
Neil Schemenauer6412b122004-06-05 19:34:28 +0000328 co = zlib.compressobj(zlib.Z_BEST_COMPRESSION)
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000329 dco = zlib.decompressobj()
330
331 # Try 17K of data
332 # generate random data stream
333 try:
334 # In 2.3 and later, WichmannHill is the RNG of the bug report
335 gen = random.WichmannHill()
336 except AttributeError:
337 try:
338 # 2.2 called it Random
339 gen = random.Random()
340 except AttributeError:
341 # others might simply have a single RNG
342 gen = random
343 gen.seed(1)
344 data = genblock(1, 17 * 1024, generator=gen)
345
346 # compress, sync-flush, and decompress
347 first = co.compress(data)
348 second = co.flush(zlib.Z_SYNC_FLUSH)
349 expanded = dco.decompress(first + second)
350
351 # if decompressed data is different from the input data, choke.
352 self.assertEqual(expanded, data, "17K random source doesn't match")
353
Andrew M. Kuchling3b585b32004-12-28 20:10:48 +0000354 def test_empty_flush(self):
355 # Test that calling .flush() on unused objects works.
356 # (Bug #1083110 -- calling .flush() on decompress objects
357 # caused a core dump.)
358
359 co = zlib.compressobj(zlib.Z_BEST_COMPRESSION)
Benjamin Peterson5c8da862009-06-30 22:57:08 +0000360 self.assertTrue(co.flush()) # Returns a zlib header
Andrew M. Kuchling3b585b32004-12-28 20:10:48 +0000361 dco = zlib.decompressobj()
362 self.assertEqual(dco.flush(), "") # Returns nothing
Tim Peters5a9fb3c2005-01-07 16:01:32 +0000363
Neal Norwitz6e73aaa2006-06-12 03:33:09 +0000364 if hasattr(zlib.compressobj(), "copy"):
365 def test_compresscopy(self):
366 # Test copying a compression object
367 data0 = HAMLET_SCENE
368 data1 = HAMLET_SCENE.swapcase()
369 c0 = zlib.compressobj(zlib.Z_BEST_COMPRESSION)
370 bufs0 = []
371 bufs0.append(c0.compress(data0))
Georg Brandl8d3342b2006-05-16 07:38:27 +0000372
Neal Norwitz6e73aaa2006-06-12 03:33:09 +0000373 c1 = c0.copy()
374 bufs1 = bufs0[:]
Georg Brandl8d3342b2006-05-16 07:38:27 +0000375
Neal Norwitz6e73aaa2006-06-12 03:33:09 +0000376 bufs0.append(c0.compress(data0))
377 bufs0.append(c0.flush())
378 s0 = ''.join(bufs0)
Georg Brandl8d3342b2006-05-16 07:38:27 +0000379
Neal Norwitz6e73aaa2006-06-12 03:33:09 +0000380 bufs1.append(c1.compress(data1))
381 bufs1.append(c1.flush())
382 s1 = ''.join(bufs1)
Georg Brandl8d3342b2006-05-16 07:38:27 +0000383
Neal Norwitz6e73aaa2006-06-12 03:33:09 +0000384 self.assertEqual(zlib.decompress(s0),data0+data0)
385 self.assertEqual(zlib.decompress(s1),data0+data1)
Georg Brandl8d3342b2006-05-16 07:38:27 +0000386
Neal Norwitz6e73aaa2006-06-12 03:33:09 +0000387 def test_badcompresscopy(self):
388 # Test copying a compression object in an inconsistent state
389 c = zlib.compressobj()
390 c.compress(HAMLET_SCENE)
391 c.flush()
392 self.assertRaises(ValueError, c.copy)
Georg Brandl8d3342b2006-05-16 07:38:27 +0000393
Neal Norwitz6e73aaa2006-06-12 03:33:09 +0000394 if hasattr(zlib.decompressobj(), "copy"):
395 def test_decompresscopy(self):
396 # Test copying a decompression object
397 data = HAMLET_SCENE
398 comp = zlib.compress(data)
Georg Brandl8d3342b2006-05-16 07:38:27 +0000399
Neal Norwitz6e73aaa2006-06-12 03:33:09 +0000400 d0 = zlib.decompressobj()
401 bufs0 = []
402 bufs0.append(d0.decompress(comp[:32]))
Georg Brandl8d3342b2006-05-16 07:38:27 +0000403
Neal Norwitz6e73aaa2006-06-12 03:33:09 +0000404 d1 = d0.copy()
405 bufs1 = bufs0[:]
Georg Brandl8d3342b2006-05-16 07:38:27 +0000406
Neal Norwitz6e73aaa2006-06-12 03:33:09 +0000407 bufs0.append(d0.decompress(comp[32:]))
408 s0 = ''.join(bufs0)
Georg Brandl8d3342b2006-05-16 07:38:27 +0000409
Neal Norwitz6e73aaa2006-06-12 03:33:09 +0000410 bufs1.append(d1.decompress(comp[32:]))
411 s1 = ''.join(bufs1)
Georg Brandl8d3342b2006-05-16 07:38:27 +0000412
Neal Norwitz6e73aaa2006-06-12 03:33:09 +0000413 self.assertEqual(s0,s1)
414 self.assertEqual(s0,data)
Georg Brandl8d3342b2006-05-16 07:38:27 +0000415
Neal Norwitz6e73aaa2006-06-12 03:33:09 +0000416 def test_baddecompresscopy(self):
417 # Test copying a compression object in an inconsistent state
418 data = zlib.compress(HAMLET_SCENE)
419 d = zlib.decompressobj()
420 d.decompress(data)
421 d.flush()
422 self.assertRaises(ValueError, d.copy)
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000423
Antoine Pitrou3843cd82010-05-07 16:50:34 +0000424 # Memory use of the following functions takes into account overallocation
425
426 @precisionbigmemtest(size=_1G + 1024 * 1024, memuse=3)
427 def test_big_compress_buffer(self, size):
428 c = zlib.compressobj(1)
429 compress = lambda s: c.compress(s) + c.flush()
430 self.check_big_compress_buffer(size, compress)
431
432 @precisionbigmemtest(size=_1G + 1024 * 1024, memuse=2)
433 def test_big_decompress_buffer(self, size):
434 d = zlib.decompressobj()
435 decompress = lambda s: d.decompress(s) + d.flush()
436 self.check_big_decompress_buffer(size, decompress)
437
438
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000439def genblock(seed, length, step=1024, generator=random):
440 """length-byte stream of random data from a seed (in step-byte blocks)."""
441 if seed is not None:
442 generator.seed(seed)
443 randint = generator.randint
444 if length < step or step < 2:
445 step = length
446 blocks = []
447 for i in range(0, length, step):
448 blocks.append(''.join([chr(randint(0,255))
449 for x in range(step)]))
450 return ''.join(blocks)[:length]
451
452
453
454def choose_lines(source, number, seed=None, generator=random):
455 """Return a list of number lines randomly chosen from the source"""
456 if seed is not None:
457 generator.seed(seed)
458 sources = source.split('\n')
459 return [generator.choice(sources) for n in range(number)]
460
461
462
Neil Schemenauer6412b122004-06-05 19:34:28 +0000463HAMLET_SCENE = """
Fred Drake004d5e62000-10-23 17:22:08 +0000464LAERTES
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000465
466 O, fear me not.
467 I stay too long: but here my father comes.
468
469 Enter POLONIUS
470
471 A double blessing is a double grace,
472 Occasion smiles upon a second leave.
473
Fred Drake004d5e62000-10-23 17:22:08 +0000474LORD POLONIUS
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000475
476 Yet here, Laertes! aboard, aboard, for shame!
477 The wind sits in the shoulder of your sail,
478 And you are stay'd for. There; my blessing with thee!
479 And these few precepts in thy memory
480 See thou character. Give thy thoughts no tongue,
481 Nor any unproportioned thought his act.
482 Be thou familiar, but by no means vulgar.
483 Those friends thou hast, and their adoption tried,
484 Grapple them to thy soul with hoops of steel;
485 But do not dull thy palm with entertainment
486 Of each new-hatch'd, unfledged comrade. Beware
487 Of entrance to a quarrel, but being in,
488 Bear't that the opposed may beware of thee.
489 Give every man thy ear, but few thy voice;
490 Take each man's censure, but reserve thy judgment.
491 Costly thy habit as thy purse can buy,
492 But not express'd in fancy; rich, not gaudy;
493 For the apparel oft proclaims the man,
494 And they in France of the best rank and station
495 Are of a most select and generous chief in that.
496 Neither a borrower nor a lender be;
497 For loan oft loses both itself and friend,
498 And borrowing dulls the edge of husbandry.
499 This above all: to thine ownself be true,
500 And it must follow, as the night the day,
501 Thou canst not then be false to any man.
502 Farewell: my blessing season this in thee!
503
Fred Drake004d5e62000-10-23 17:22:08 +0000504LAERTES
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000505
506 Most humbly do I take my leave, my lord.
507
Fred Drake004d5e62000-10-23 17:22:08 +0000508LORD POLONIUS
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000509
510 The time invites you; go; your servants tend.
511
Fred Drake004d5e62000-10-23 17:22:08 +0000512LAERTES
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000513
514 Farewell, Ophelia; and remember well
515 What I have said to you.
516
Fred Drake004d5e62000-10-23 17:22:08 +0000517OPHELIA
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000518
519 'Tis in my memory lock'd,
520 And you yourself shall keep the key of it.
521
Fred Drake004d5e62000-10-23 17:22:08 +0000522LAERTES
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000523
524 Farewell.
525"""
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000526
527
528def test_main():
Walter Dörwald21d3a322003-05-01 17:45:56 +0000529 test_support.run_unittest(
530 ChecksumTestCase,
531 ExceptionTestCase,
532 CompressTestCase,
533 CompressObjectTestCase
534 )
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000535
536if __name__ == "__main__":
537 test_main()