summaryrefslogtreecommitdiff
path: root/Lib/test/test_zlib.py
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-03-17 20:24:09 +0000
committerGregory P. Smith <greg@mad-scientist.com>2008-03-17 20:24:09 +0000
commit41fc86077df2d18e8c1a7bcabf3450b5c777f739 (patch)
treec06f3c7a65a12714ef50acd070be19c4cccc6044 /Lib/test/test_zlib.py
parent51d6378565dbaa06c8ed408eb85831a5b5b77cfc (diff)
downloadcpython-41fc86077df2d18e8c1a7bcabf3450b5c777f739.tar.gz
zlib.crc32 and zlib.adler32 now return an unsigned value as any sane person
would expect. Fixes issues1202.
Diffstat (limited to 'Lib/test/test_zlib.py')
-rw-r--r--Lib/test/test_zlib.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_zlib.py b/Lib/test/test_zlib.py
index 13656d6fe9..6b7d4a6eb0 100644
--- a/Lib/test/test_zlib.py
+++ b/Lib/test/test_zlib.py
@@ -38,6 +38,14 @@ class ChecksumTestCase(unittest.TestCase):
self.assertEqual(zlib.crc32(b"penguin"), zlib.crc32(b"penguin", 0))
self.assertEqual(zlib.adler32(b"penguin"),zlib.adler32(b"penguin",1))
+ def test_crc32_adler32_unsigned(self):
+ foo = 'abcdefghijklmnop'
+ # explicitly test signed behavior
+ self.assertEqual(zlib.crc32(foo), 2486878355)
+ self.assertEqual(zlib.crc32('spam'), 1138425661)
+ self.assertEqual(zlib.adler32(foo+foo), 3573550353)
+ self.assertEqual(zlib.adler32('spam'), 72286642)
+
class ExceptionTestCase(unittest.TestCase):