]> granicus.if.org Git - python/commitdiff
A test of the struct module
authorBarry Warsaw <barry@python.org>
Thu, 12 Dec 1996 23:34:06 +0000 (23:34 +0000)
committerBarry Warsaw <barry@python.org>
Thu, 12 Dec 1996 23:34:06 +0000 (23:34 +0000)
Lib/test/test_struct.py [new file with mode: 0644]
Lib/test/testall.py

diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py
new file mode 100644 (file)
index 0000000..77cda29
--- /dev/null
@@ -0,0 +1,44 @@
+import struct
+## import pdb
+
+def simple_err(func, *args):
+    try:
+       apply(func, args)
+    except struct.error:
+       pass
+    else:
+       print 'expected struct.error not caught'
+##     pdb.set_trace()
+
+simple_err(struct.calcsize, 'Q')
+
+sz = struct.calcsize('i')
+if sz * 3 <> struct.calcsize('iii'):
+    print 'inconsistent sizes'
+
+sz = struct.calcsize('cbhilfd')
+if sz * 3 <> struct.calcsize('3c3b3h3i3l3f3d'):
+    print 'inconsistent sizes'
+
+simple_err(struct.pack, 'iii', 3)
+simple_err(struct.pack, 'i', 3, 3, 3)
+simple_err(struct.pack, 'i', 'foo')
+simple_err(struct.unpack, 'd', 'flap')
+s = struct.pack('ii', 1, 2)
+simple_err(struct.unpack, 'iii', s)
+simple_err(struct.unpack, 'i', s)
+
+c = 'a'
+b = -1
+h = 255
+i = 65535
+l = 65536
+f = 3.1415
+d = 3.1415
+
+s = struct.pack('xcbhilfd', c, b, h, i, l, f, d)
+cp, bp, hp, ip, lp, fp, dp = struct.unpack('xcbhilfd', s)
+if cp <> c or bp <> b or hp <> h or ip <> i or lp <> l or \
+   int(100 * fp) <> int(100 * f) or int(100 * dp) <> int(100 * d):
+   # ^^^ calculate only to two decimal places
+    print 'unpack/pack not transitive'
index 7ad7b88d1faf5fc42675b6a4075d3d8e2b9c5282..c9470cde4d1efa015cb4357e88ef5d910ac3b70e 100644 (file)
@@ -21,6 +21,7 @@ tests = ['test_grammar',
         'test_rgbimg',
         'test_select',
         'test_strftime',
+        'test_struct',
         ]
 
 if __name__ == '__main__':