blob: ccbc8fd0b2d27ed30a576692f9b5b095014907c7 [file] [log] [blame]
Guido van Rossum7d9ea502003-02-03 20:45:52 +00001import unittest
2from test import test_support
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +00003import zlib
Andrew M. Kuchling9a0f98e2001-02-21 02:17:01 +00004import random
Andrew M. Kuchling9a0f98e2001-02-21 02:17:01 +00005
Guido van Rossum7d9ea502003-02-03 20:45:52 +00006# print test_support.TESTFN
Andrew M. Kuchling9a0f98e2001-02-21 02:17:01 +00007
Guido van Rossum7d9ea502003-02-03 20:45:52 +00008def getbuf():
9 # This was in the original. Avoid non-repeatable sources.
10 # Left here (unused) in case something wants to be done with it.
11 import imp
12 try:
13 t = imp.find_module('test_zlib')
14 file = t[0]
15 except ImportError:
16 file = open(__file__)
17 buf = file.read() * 8
18 file.close()
19 return buf
Andrew M. Kuchling9a0f98e2001-02-21 02:17:01 +000020
Tim Peters0009c4e2001-02-21 07:29:48 +000021
Andrew M. Kuchling9a0f98e2001-02-21 02:17:01 +000022
Guido van Rossum7d9ea502003-02-03 20:45:52 +000023class ChecksumTestCase(unittest.TestCase):
24 # checksum test cases
25 def test_crc32start(self):
26 self.assertEqual(zlib.crc32(""), zlib.crc32("", 0))
Andrew M. Kuchlingbb7e8002005-11-22 15:32:28 +000027 self.assert_(zlib.crc32("abc", 0xffffffff))
Andrew M. Kuchlingfcfc8d52001-08-10 15:50:11 +000028
Guido van Rossum7d9ea502003-02-03 20:45:52 +000029 def test_crc32empty(self):
30 self.assertEqual(zlib.crc32("", 0), 0)
31 self.assertEqual(zlib.crc32("", 1), 1)
32 self.assertEqual(zlib.crc32("", 432), 432)
Andrew M. Kuchling9a0f98e2001-02-21 02:17:01 +000033
Guido van Rossum7d9ea502003-02-03 20:45:52 +000034 def test_adler32start(self):
35 self.assertEqual(zlib.adler32(""), zlib.adler32("", 1))
Andrew M. Kuchlingbb7e8002005-11-22 15:32:28 +000036 self.assert_(zlib.adler32("abc", 0xffffffff))
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +000037
Guido van Rossum7d9ea502003-02-03 20:45:52 +000038 def test_adler32empty(self):
39 self.assertEqual(zlib.adler32("", 0), 0)
40 self.assertEqual(zlib.adler32("", 1), 1)
41 self.assertEqual(zlib.adler32("", 432), 432)
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +000042
Guido van Rossum7d9ea502003-02-03 20:45:52 +000043 def assertEqual32(self, seen, expected):
44 # 32-bit values masked -- checksums on 32- vs 64- bit machines
45 # This is important if bit 31 (0x08000000L) is set.
46 self.assertEqual(seen & 0x0FFFFFFFFL, expected & 0x0FFFFFFFFL)
47
48 def test_penguins(self):
49 self.assertEqual32(zlib.crc32("penguin", 0), 0x0e5c1a120L)
50 self.assertEqual32(zlib.crc32("penguin", 1), 0x43b6aa94)
51 self.assertEqual32(zlib.adler32("penguin", 0), 0x0bcf02f6)
52 self.assertEqual32(zlib.adler32("penguin", 1), 0x0bd602f7)
53
54 self.assertEqual(zlib.crc32("penguin"), zlib.crc32("penguin", 0))
55 self.assertEqual(zlib.adler32("penguin"),zlib.adler32("penguin",1))
56
57
58
59class ExceptionTestCase(unittest.TestCase):
60 # make sure we generate some expected errors
61 def test_bigbits(self):
62 # specifying total bits too large causes an error
63 self.assertRaises(zlib.error,
64 zlib.compress, 'ERROR', zlib.MAX_WBITS + 1)
65
66 def test_badcompressobj(self):
67 # verify failure on building compress object with bad params
Neil Schemenauer94afd3e2004-06-05 19:02:52 +000068 self.assertRaises(ValueError, zlib.compressobj, 1, zlib.DEFLATED, 0)
Guido van Rossum7d9ea502003-02-03 20:45:52 +000069
70 def test_baddecompressobj(self):
71 # verify failure on building decompress object with bad params
72 self.assertRaises(ValueError, zlib.decompressobj, 0)
73
74
75
76class CompressTestCase(unittest.TestCase):
77 # Test compression in one go (whole message compression)
78 def test_speech(self):
Neil Schemenauer6412b122004-06-05 19:34:28 +000079 x = zlib.compress(HAMLET_SCENE)
80 self.assertEqual(zlib.decompress(x), HAMLET_SCENE)
Guido van Rossum7d9ea502003-02-03 20:45:52 +000081
82 def test_speech128(self):
Neil Schemenauer6412b122004-06-05 19:34:28 +000083 # compress more data
84 data = HAMLET_SCENE * 128
Guido van Rossum7d9ea502003-02-03 20:45:52 +000085 x = zlib.compress(data)
86 self.assertEqual(zlib.decompress(x), data)
87
Guido van Rossum7d9ea502003-02-03 20:45:52 +000088
89
90
91class CompressObjectTestCase(unittest.TestCase):
92 # Test compression object
Guido van Rossum7d9ea502003-02-03 20:45:52 +000093 def test_pair(self):
Neil Schemenauer6412b122004-06-05 19:34:28 +000094 # straightforward compress/decompress objects
95 data = HAMLET_SCENE * 128
96 co = zlib.compressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +000097 x1 = co.compress(data)
98 x2 = co.flush()
99 self.assertRaises(zlib.error, co.flush) # second flush should not work
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000100 dco = zlib.decompressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000101 y1 = dco.decompress(x1 + x2)
102 y2 = dco.flush()
103 self.assertEqual(data, y1 + y2)
104
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000105 def test_compressoptions(self):
106 # specify lots of options to compressobj()
107 level = 2
108 method = zlib.DEFLATED
109 wbits = -12
110 memlevel = 9
111 strategy = zlib.Z_FILTERED
112 co = zlib.compressobj(level, method, wbits, memlevel, strategy)
Neil Schemenauer6412b122004-06-05 19:34:28 +0000113 x1 = co.compress(HAMLET_SCENE)
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000114 x2 = co.flush()
115 dco = zlib.decompressobj(wbits)
116 y1 = dco.decompress(x1 + x2)
117 y2 = dco.flush()
Neil Schemenauer6412b122004-06-05 19:34:28 +0000118 self.assertEqual(HAMLET_SCENE, y1 + y2)
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000119
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000120 def test_compressincremental(self):
121 # compress object in steps, decompress object as one-shot
Neil Schemenauer6412b122004-06-05 19:34:28 +0000122 data = HAMLET_SCENE * 128
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000123 co = zlib.compressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000124 bufs = []
125 for i in range(0, len(data), 256):
126 bufs.append(co.compress(data[i:i+256]))
127 bufs.append(co.flush())
128 combuf = ''.join(bufs)
129
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000130 dco = zlib.decompressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000131 y1 = dco.decompress(''.join(bufs))
132 y2 = dco.flush()
133 self.assertEqual(data, y1 + y2)
134
Neil Schemenauer6412b122004-06-05 19:34:28 +0000135 def test_decompinc(self, flush=False, source=None, cx=256, dcx=64):
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000136 # compress object in steps, decompress object in steps
Neil Schemenauer6412b122004-06-05 19:34:28 +0000137 source = source or HAMLET_SCENE
138 data = source * 128
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000139 co = zlib.compressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000140 bufs = []
Neil Schemenauer6412b122004-06-05 19:34:28 +0000141 for i in range(0, len(data), cx):
142 bufs.append(co.compress(data[i:i+cx]))
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000143 bufs.append(co.flush())
144 combuf = ''.join(bufs)
145
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000146 self.assertEqual(data, zlib.decompress(combuf))
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000147
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000148 dco = zlib.decompressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000149 bufs = []
Neil Schemenauer6412b122004-06-05 19:34:28 +0000150 for i in range(0, len(combuf), dcx):
151 bufs.append(dco.decompress(combuf[i:i+dcx]))
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000152 self.assertEqual('', dco.unconsumed_tail, ########
153 "(A) uct should be '': not %d long" %
Neil Schemenauer6412b122004-06-05 19:34:28 +0000154 len(dco.unconsumed_tail))
155 if flush:
156 bufs.append(dco.flush())
157 else:
158 while True:
159 chunk = dco.decompress('')
160 if chunk:
161 bufs.append(chunk)
162 else:
163 break
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000164 self.assertEqual('', dco.unconsumed_tail, ########
Neil Schemenauer6412b122004-06-05 19:34:28 +0000165 "(B) uct should be '': not %d long" %
166 len(dco.unconsumed_tail))
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000167 self.assertEqual(data, ''.join(bufs))
168 # Failure means: "decompressobj with init options failed"
169
Neil Schemenauer6412b122004-06-05 19:34:28 +0000170 def test_decompincflush(self):
171 self.test_decompinc(flush=True)
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000172
Neil Schemenauer6412b122004-06-05 19:34:28 +0000173 def test_decompimax(self, source=None, cx=256, dcx=64):
174 # compress in steps, decompress in length-restricted steps
175 source = source or HAMLET_SCENE
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000176 # Check a decompression object with max_length specified
Neil Schemenauer6412b122004-06-05 19:34:28 +0000177 data = source * 128
178 co = zlib.compressobj()
179 bufs = []
180 for i in range(0, len(data), cx):
181 bufs.append(co.compress(data[i:i+cx]))
182 bufs.append(co.flush())
183 combuf = ''.join(bufs)
184 self.assertEqual(data, zlib.decompress(combuf),
185 'compressed data failure')
186
187 dco = zlib.decompressobj()
188 bufs = []
189 cb = combuf
190 while cb:
191 #max_length = 1 + len(cb)//10
192 chunk = dco.decompress(cb, dcx)
193 self.failIf(len(chunk) > dcx,
194 'chunk too big (%d>%d)' % (len(chunk), dcx))
195 bufs.append(chunk)
196 cb = dco.unconsumed_tail
197 bufs.append(dco.flush())
198 self.assertEqual(data, ''.join(bufs), 'Wrong data retrieved')
199
200 def test_decompressmaxlen(self, flush=False):
201 # Check a decompression object with max_length specified
202 data = HAMLET_SCENE * 128
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000203 co = zlib.compressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000204 bufs = []
205 for i in range(0, len(data), 256):
206 bufs.append(co.compress(data[i:i+256]))
207 bufs.append(co.flush())
208 combuf = ''.join(bufs)
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000209 self.assertEqual(data, zlib.decompress(combuf),
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000210 'compressed data failure')
211
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000212 dco = zlib.decompressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000213 bufs = []
214 cb = combuf
215 while cb:
Guido van Rossumf3594102003-02-27 18:39:18 +0000216 max_length = 1 + len(cb)//10
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000217 chunk = dco.decompress(cb, max_length)
218 self.failIf(len(chunk) > max_length,
219 'chunk too big (%d>%d)' % (len(chunk),max_length))
220 bufs.append(chunk)
221 cb = dco.unconsumed_tail
Neil Schemenauer6412b122004-06-05 19:34:28 +0000222 if flush:
223 bufs.append(dco.flush())
224 else:
225 while chunk:
226 chunk = dco.decompress('', max_length)
227 self.failIf(len(chunk) > max_length,
228 'chunk too big (%d>%d)' % (len(chunk),max_length))
229 bufs.append(chunk)
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000230 self.assertEqual(data, ''.join(bufs), 'Wrong data retrieved')
231
Neil Schemenauer6412b122004-06-05 19:34:28 +0000232 def test_decompressmaxlenflush(self):
233 self.test_decompressmaxlen(flush=True)
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000234
235 def test_maxlenmisc(self):
236 # Misc tests of max_length
Neil Schemenauer94afd3e2004-06-05 19:02:52 +0000237 dco = zlib.decompressobj()
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000238 self.assertRaises(ValueError, dco.decompress, "", -1)
239 self.assertEqual('', dco.unconsumed_tail)
240
241 def test_flushes(self):
242 # Test flush() with the various options, using all the
243 # different levels in order to provide more variations.
244 sync_opt = ['Z_NO_FLUSH', 'Z_SYNC_FLUSH', 'Z_FULL_FLUSH']
245 sync_opt = [getattr(zlib, opt) for opt in sync_opt
246 if hasattr(zlib, opt)]
Neil Schemenauer6412b122004-06-05 19:34:28 +0000247 data = HAMLET_SCENE * 8
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000248
249 for sync in sync_opt:
250 for level in range(10):
251 obj = zlib.compressobj( level )
252 a = obj.compress( data[:3000] )
253 b = obj.flush( sync )
254 c = obj.compress( data[3000:] )
255 d = obj.flush()
256 self.assertEqual(zlib.decompress(''.join([a,b,c,d])),
257 data, ("Decompress failed: flush "
258 "mode=%i, level=%i") % (sync, level))
259 del obj
260
261 def test_odd_flush(self):
262 # Test for odd flushing bugs noted in 2.0, and hopefully fixed in 2.1
263 import random
264
265 if hasattr(zlib, 'Z_SYNC_FLUSH'):
266 # Testing on 17K of "random" data
267
268 # Create compressor and decompressor objects
Neil Schemenauer6412b122004-06-05 19:34:28 +0000269 co = zlib.compressobj(zlib.Z_BEST_COMPRESSION)
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000270 dco = zlib.decompressobj()
271
272 # Try 17K of data
273 # generate random data stream
274 try:
275 # In 2.3 and later, WichmannHill is the RNG of the bug report
276 gen = random.WichmannHill()
277 except AttributeError:
278 try:
279 # 2.2 called it Random
280 gen = random.Random()
281 except AttributeError:
282 # others might simply have a single RNG
283 gen = random
284 gen.seed(1)
285 data = genblock(1, 17 * 1024, generator=gen)
286
287 # compress, sync-flush, and decompress
288 first = co.compress(data)
289 second = co.flush(zlib.Z_SYNC_FLUSH)
290 expanded = dco.decompress(first + second)
291
292 # if decompressed data is different from the input data, choke.
293 self.assertEqual(expanded, data, "17K random source doesn't match")
294
Andrew M. Kuchling3b585b32004-12-28 20:10:48 +0000295 def test_empty_flush(self):
296 # Test that calling .flush() on unused objects works.
297 # (Bug #1083110 -- calling .flush() on decompress objects
298 # caused a core dump.)
299
300 co = zlib.compressobj(zlib.Z_BEST_COMPRESSION)
301 self.failUnless(co.flush()) # Returns a zlib header
302 dco = zlib.decompressobj()
303 self.assertEqual(dco.flush(), "") # Returns nothing
Tim Peters5a9fb3c2005-01-07 16:01:32 +0000304
Georg Brandl8d3342b2006-05-16 07:38:27 +0000305 def test_compresscopy(self):
306 # Test copying a compression object
307 data0 = HAMLET_SCENE
308 data1 = HAMLET_SCENE.swapcase()
309 c0 = zlib.compressobj(zlib.Z_BEST_COMPRESSION)
310 bufs0 = []
311 bufs0.append(c0.compress(data0))
312
313 c1 = c0.copy()
314 bufs1 = bufs0[:]
315
316 bufs0.append(c0.compress(data0))
317 bufs0.append(c0.flush())
318 s0 = ''.join(bufs0)
319
320 bufs1.append(c1.compress(data1))
321 bufs1.append(c1.flush())
322 s1 = ''.join(bufs1)
323
324 self.assertEqual(zlib.decompress(s0),data0+data0)
325 self.assertEqual(zlib.decompress(s1),data0+data1)
326
327 def test_badcompresscopy(self):
328 # Test copying a compression object in an inconsistent state
329 c = zlib.compressobj()
330 c.compress(HAMLET_SCENE)
331 c.flush()
332 self.assertRaises(ValueError, c.copy)
333
334 def test_decompresscopy(self):
335 # Test copying a decompression object
336 data = HAMLET_SCENE
337 comp = zlib.compress(data)
338
339 d0 = zlib.decompressobj()
340 bufs0 = []
341 bufs0.append(d0.decompress(comp[:32]))
342
343 d1 = d0.copy()
344 bufs1 = bufs0[:]
345
346 bufs0.append(d0.decompress(comp[32:]))
347 s0 = ''.join(bufs0)
348
349 bufs1.append(d1.decompress(comp[32:]))
350 s1 = ''.join(bufs1)
351
352 self.assertEqual(s0,s1)
353 self.assertEqual(s0,data)
354
355 def test_baddecompresscopy(self):
356 # Test copying a compression object in an inconsistent state
357 data = zlib.compress(HAMLET_SCENE)
358 d = zlib.decompressobj()
359 d.decompress(data)
360 d.flush()
361 self.assertRaises(ValueError, d.copy)
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000362
363def genblock(seed, length, step=1024, generator=random):
364 """length-byte stream of random data from a seed (in step-byte blocks)."""
365 if seed is not None:
366 generator.seed(seed)
367 randint = generator.randint
368 if length < step or step < 2:
369 step = length
370 blocks = []
371 for i in range(0, length, step):
372 blocks.append(''.join([chr(randint(0,255))
373 for x in range(step)]))
374 return ''.join(blocks)[:length]
375
376
377
378def choose_lines(source, number, seed=None, generator=random):
379 """Return a list of number lines randomly chosen from the source"""
380 if seed is not None:
381 generator.seed(seed)
382 sources = source.split('\n')
383 return [generator.choice(sources) for n in range(number)]
384
385
386
Neil Schemenauer6412b122004-06-05 19:34:28 +0000387HAMLET_SCENE = """
Fred Drake004d5e62000-10-23 17:22:08 +0000388LAERTES
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000389
390 O, fear me not.
391 I stay too long: but here my father comes.
392
393 Enter POLONIUS
394
395 A double blessing is a double grace,
396 Occasion smiles upon a second leave.
397
Fred Drake004d5e62000-10-23 17:22:08 +0000398LORD POLONIUS
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000399
400 Yet here, Laertes! aboard, aboard, for shame!
401 The wind sits in the shoulder of your sail,
402 And you are stay'd for. There; my blessing with thee!
403 And these few precepts in thy memory
404 See thou character. Give thy thoughts no tongue,
405 Nor any unproportioned thought his act.
406 Be thou familiar, but by no means vulgar.
407 Those friends thou hast, and their adoption tried,
408 Grapple them to thy soul with hoops of steel;
409 But do not dull thy palm with entertainment
410 Of each new-hatch'd, unfledged comrade. Beware
411 Of entrance to a quarrel, but being in,
412 Bear't that the opposed may beware of thee.
413 Give every man thy ear, but few thy voice;
414 Take each man's censure, but reserve thy judgment.
415 Costly thy habit as thy purse can buy,
416 But not express'd in fancy; rich, not gaudy;
417 For the apparel oft proclaims the man,
418 And they in France of the best rank and station
419 Are of a most select and generous chief in that.
420 Neither a borrower nor a lender be;
421 For loan oft loses both itself and friend,
422 And borrowing dulls the edge of husbandry.
423 This above all: to thine ownself be true,
424 And it must follow, as the night the day,
425 Thou canst not then be false to any man.
426 Farewell: my blessing season this in thee!
427
Fred Drake004d5e62000-10-23 17:22:08 +0000428LAERTES
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000429
430 Most humbly do I take my leave, my lord.
431
Fred Drake004d5e62000-10-23 17:22:08 +0000432LORD POLONIUS
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000433
434 The time invites you; go; your servants tend.
435
Fred Drake004d5e62000-10-23 17:22:08 +0000436LAERTES
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000437
438 Farewell, Ophelia; and remember well
439 What I have said to you.
440
Fred Drake004d5e62000-10-23 17:22:08 +0000441OPHELIA
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000442
443 'Tis in my memory lock'd,
444 And you yourself shall keep the key of it.
445
Fred Drake004d5e62000-10-23 17:22:08 +0000446LAERTES
Jeremy Hylton6eb4b6a1997-08-15 15:59:43 +0000447
448 Farewell.
449"""
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000450
451
452def test_main():
Walter Dörwald21d3a322003-05-01 17:45:56 +0000453 test_support.run_unittest(
454 ChecksumTestCase,
455 ExceptionTestCase,
456 CompressTestCase,
457 CompressObjectTestCase
458 )
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000459
460if __name__ == "__main__":
461 test_main()
462
463def test(tests=''):
464 if not tests: tests = 'o'
Walter Dörwald21d3a322003-05-01 17:45:56 +0000465 testcases = []
466 if 'k' in tests: testcases.append(ChecksumTestCase)
467 if 'x' in tests: testcases.append(ExceptionTestCase)
468 if 'c' in tests: testcases.append(CompressTestCase)
469 if 'o' in tests: testcases.append(CompressObjectTestCase)
470 test_support.run_unittest(*testcases)
Guido van Rossum7d9ea502003-02-03 20:45:52 +0000471
472if False:
473 import sys
474 sys.path.insert(1, '/Py23Src/python/dist/src/Lib/test')
475 import test_zlib as tz
476 ts, ut = tz.test_support, tz.unittest
477 su = ut.TestSuite()
478 su.addTest(ut.makeSuite(tz.CompressTestCase))
479 ts.run_suite(su)