]> granicus.if.org Git - python/commitdiff
Fix some tests by deleting stuff.
authorGuido van Rossum <guido@python.org>
Thu, 14 Jun 2007 00:04:46 +0000 (00:04 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 14 Jun 2007 00:04:46 +0000 (00:04 +0000)
Lib/test/string_tests.py
Lib/test/test_str.py
Lib/test/test_unicode.py
Lib/test/test_userstring.py

index 0ce212ceb2637a53eea22b3de2a2b53f4e06d2df..fe159b666592bd6730fef897af199fc52bf88f39 100644 (file)
@@ -1096,58 +1096,6 @@ class MixinStrUnicodeUserStringTest:
         self.checkraises(TypeError, S, 'rpartition', None)
 
 
-class MixinStrStringUserStringTest:
-    # Additional tests for 8bit strings, i.e. str, UserString and
-    # the string module
-
-    def test_maketrans(self):
-        self.assertEqual(
-           ''.join(map(chr, range(256))).replace('abc', 'xyz'),
-           string.maketrans('abc', 'xyz')
-        )
-        self.assertRaises(ValueError, string.maketrans, 'abc', 'xyzw')
-
-    def test_translate(self):
-        table = string.maketrans('abc', 'xyz')
-        self.checkequal('xyzxyz', 'xyzabcdef', 'translate', table, 'def')
-
-        table = string.maketrans('a', 'A')
-        self.checkequal('Abc', 'abc', 'translate', table)
-        self.checkequal('xyz', 'xyz', 'translate', table)
-        self.checkequal('yz', 'xyz', 'translate', table, 'x')
-        self.checkequal('yx', 'zyzzx', 'translate', None, 'z')
-        self.checkequal('zyzzx', 'zyzzx', 'translate', None, '')
-        self.checkequal('zyzzx', 'zyzzx', 'translate', None)
-        self.checkraises(ValueError, 'xyz', 'translate', 'too short', 'strip')
-        self.checkraises(ValueError, 'xyz', 'translate', 'too short')
-
-
-class MixinStrUserStringTest:
-    # Additional tests that only work with
-    # 8bit compatible object, i.e. str and UserString
-
-    def test_encoding_decoding(self):
-        codecs = [('rot13', b'uryyb jbeyq'),
-                  ('base64', b'aGVsbG8gd29ybGQ=\n'),
-                  ('hex', b'68656c6c6f20776f726c64'),
-                  ('uu', b'begin 666 <data>\n+:&5L;&\\@=V]R;&0 \n \nend\n')]
-        for encoding, data in codecs:
-            self.checkequal(data, 'hello world', 'encode', encoding)
-            self.checkequal('hello world', data, 'decode', encoding)
-        # zlib is optional, so we make the test optional too...
-        try:
-            import zlib
-        except ImportError:
-            pass
-        else:
-            data = b'x\x9c\xcbH\xcd\xc9\xc9W(\xcf/\xcaI\x01\x00\x1a\x0b\x04]'
-            self.checkequal(data, 'hello world', 'encode', 'zlib')
-            self.checkequal('hello world', data, 'decode', 'zlib')
-
-        self.checkraises(TypeError, 'xyz', 'decode', 42)
-        self.checkraises(TypeError, 'xyz', 'encode', 42)
-
-
 class MixinStrUnicodeTest:
     # Additional tests that only work with str and unicode.
 
index 2ef01f00dd09442a27eaf31b49dcc14b3afdc088..ad118d6b6db4344fc3c938b269df6bda69326151 100644 (file)
@@ -8,7 +8,6 @@ from test import test_support, string_tests
 class StrTest(
     string_tests.CommonTest,
     string_tests.MixinStrUnicodeUserStringTest,
-    string_tests.MixinStrUserStringTest,
     string_tests.MixinStrUnicodeTest,
     ):
 
index fbad9843b883106bb484459f1bfd170196c47db8..11c7328bddc5b487bcc52472f5408f6ea3a11cf5 100644 (file)
@@ -791,7 +791,7 @@ class UnicodeTest(
         # to take a 64-bit long, this test should apply to all platforms.
         if sys.maxint > (1 << 32) or struct.calcsize('P') != 4:
             return
-        self.assertRaises(OverflowError, u't\tt\t'.expandtabs, sys.maxint)
+        self.assertRaises(OverflowError, 't\tt\t'.expandtabs, sys.maxint)
 
 
 def test_main():
index 53114db28513ae1a53c7bb3491577dcf748372a2..ec0f1a93361498673ddb9a6228b413f7a3b8b94f 100755 (executable)
@@ -10,8 +10,6 @@ from UserString import UserString, MutableString
 class UserStringTest(
     string_tests.CommonTest,
     string_tests.MixinStrUnicodeUserStringTest,
-    string_tests.MixinStrStringUserStringTest,
-    string_tests.MixinStrUserStringTest
     ):
 
     type2test = UserString