summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_structmembers.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-04-03 01:40:44 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-04-03 01:40:44 (GMT)
commit498289ef28284d99bd0d73bf3349c17977308693 (patch)
tree665c68b40f0912f96a4f5ad8ffc9129afb322609 /Lib/test/test_structmembers.py
parent8d837ab8695ec74b05bd99d63bb23deefa05d85f (diff)
downloadcpython-498289ef28284d99bd0d73bf3349c17977308693.zip
cpython-498289ef28284d99bd0d73bf3349c17977308693.tar.gz
cpython-498289ef28284d99bd0d73bf3349c17977308693.tar.bz2
Merged revisions 79642,79644 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79642 | benjamin.peterson | 2010-04-02 20:08:34 -0500 (Fri, 02 Apr 2010) | 1 line split out large test function ........ r79644 | benjamin.peterson | 2010-04-02 20:28:57 -0500 (Fri, 02 Apr 2010) | 1 line give TypeError when trying to set T_STRING_INPLACE ........
Diffstat (limited to 'Lib/test/test_structmembers.py')
-rw-r--r--Lib/test/test_structmembers.py44
1 files changed, 27 insertions, 17 deletions
diff --git a/Lib/test/test_structmembers.py b/Lib/test/test_structmembers.py
index c196cc5..b8ee6bd 100644
--- a/Lib/test/test_structmembers.py
+++ b/Lib/test/test_structmembers.py
@@ -9,16 +9,18 @@ import warnings, exceptions, unittest, sys
from test import test_support
ts=test_structmembersType(False, 1, 2, 3, 4, 5, 6, 7, 8,
- 9.99999, 10.1010101010)
+ 9.99999, 10.1010101010, "hi")
class ReadWriteTests(unittest.TestCase):
- def test_types(self):
+
+ def test_bool(self):
ts.T_BOOL = True
self.assertEquals(ts.T_BOOL, True)
ts.T_BOOL = False
self.assertEquals(ts.T_BOOL, False)
self.assertRaises(TypeError, setattr, ts, 'T_BOOL', 1)
+ def test_byte(self):
ts.T_BYTE = CHAR_MAX
self.assertEquals(ts.T_BYTE, CHAR_MAX)
ts.T_BYTE = CHAR_MIN
@@ -26,6 +28,7 @@ class ReadWriteTests(unittest.TestCase):
ts.T_UBYTE = UCHAR_MAX
self.assertEquals(ts.T_UBYTE, UCHAR_MAX)
+ def test_short(self):
ts.T_SHORT = SHRT_MAX
self.assertEquals(ts.T_SHORT, SHRT_MAX)
ts.T_SHORT = SHRT_MIN
@@ -33,6 +36,7 @@ class ReadWriteTests(unittest.TestCase):
ts.T_USHORT = USHRT_MAX
self.assertEquals(ts.T_USHORT, USHRT_MAX)
+ def test_int(self):
ts.T_INT = INT_MAX
self.assertEquals(ts.T_INT, INT_MAX)
ts.T_INT = INT_MIN
@@ -40,6 +44,7 @@ class ReadWriteTests(unittest.TestCase):
ts.T_UINT = UINT_MAX
self.assertEquals(ts.T_UINT, UINT_MAX)
+ def test_long(self):
ts.T_LONG = LONG_MAX
self.assertEquals(ts.T_LONG, LONG_MAX)
ts.T_LONG = LONG_MIN
@@ -47,21 +52,26 @@ class ReadWriteTests(unittest.TestCase):
ts.T_ULONG = ULONG_MAX
self.assertEquals(ts.T_ULONG, ULONG_MAX)
- ## T_LONGLONG and T_ULONGLONG may not be present on some platforms
- if hasattr(ts, 'T_LONGLONG'):
- ts.T_LONGLONG = LLONG_MAX
- self.assertEquals(ts.T_LONGLONG, LLONG_MAX)
- ts.T_LONGLONG = LLONG_MIN
- self.assertEquals(ts.T_LONGLONG, LLONG_MIN)
-
- ts.T_ULONGLONG = ULLONG_MAX
- self.assertEquals(ts.T_ULONGLONG, ULLONG_MAX)
-
- ## make sure these will accept a plain int as well as a long
- ts.T_LONGLONG = 3
- self.assertEquals(ts.T_LONGLONG, 3)
- ts.T_ULONGLONG = 4
- self.assertEquals(ts.T_ULONGLONG, 4)
+ @unittest.skipUnless(hasattr(ts, "T_LONGLONG"), "long long not present")
+ def test_longlong(self):
+ ts.T_LONGLONG = LLONG_MAX
+ self.assertEquals(ts.T_LONGLONG, LLONG_MAX)
+ ts.T_LONGLONG = LLONG_MIN
+ self.assertEquals(ts.T_LONGLONG, LLONG_MIN)
+
+ ts.T_ULONGLONG = ULLONG_MAX
+ self.assertEquals(ts.T_ULONGLONG, ULLONG_MAX)
+
+ ## make sure these will accept a plain int as well as a long
+ ts.T_LONGLONG = 3
+ self.assertEquals(ts.T_LONGLONG, 3)
+ ts.T_ULONGLONG = 4
+ self.assertEquals(ts.T_ULONGLONG, 4)
+
+ def test_inplace_string(self):
+ self.assertEquals(ts.T_STRING_INPLACE, "hi")
+ self.assertRaises(TypeError, setattr, ts, "T_STRING_INPLACE", "s")
+ self.assertRaises(TypeError, delattr, ts, "T_STRING_INPLACE")
class TestWarnings(unittest.TestCase):