blob: ba9d9d397232b6114ae41cd29a811eb27bb1ba62 [file] [log] [blame]
Walter Dörwald0fd583c2003-02-21 12:53:50 +00001import unittest, string
2from test import test_support, string_tests
3from UserList import UserList
Barry Warsaw50f0e161999-06-10 22:53:10 +00004
Walter Dörwald0fd583c2003-02-21 12:53:50 +00005class StringTest(
6 string_tests.CommonTest,
7 string_tests.MixinStrStringUserStringTest
8 ):
Barry Warsaw6e1d78a1999-06-15 16:49:11 +00009
Walter Dörwald0fd583c2003-02-21 12:53:50 +000010 type2test = str
Barry Warsaw50f0e161999-06-10 22:53:10 +000011
Walter Dörwald0fd583c2003-02-21 12:53:50 +000012 def checkequal(self, result, object, methodname, *args):
13 realresult = getattr(string, methodname)(object, *args)
14 self.assertEqual(
15 result,
16 realresult
17 )
Barry Warsaw50f0e161999-06-10 22:53:10 +000018
Walter Dörwald0fd583c2003-02-21 12:53:50 +000019 def checkraises(self, exc, object, methodname, *args):
20 self.assertRaises(
21 exc,
22 getattr(string, methodname),
23 object,
24 *args
25 )
Marc-André Lemburg79f57832002-12-29 19:44:06 +000026
Walter Dörwald0fd583c2003-02-21 12:53:50 +000027 def checkcall(self, object, methodname, *args):
28 getattr(string, methodname)(object, *args)
29
30 def test_join(self):
31 # These are the same checks as in string_test.ObjectTest.test_join
32 # but the argument order ist different
33 self.checkequal('a b c d', ['a', 'b', 'c', 'd'], 'join', ' ')
34 self.checkequal('abcd', ('a', 'b', 'c', 'd'), 'join', '')
35 self.checkequal('w x y z', string_tests.Sequence(), 'join', ' ')
36 self.checkequal('abc', ('abc',), 'join', 'a')
37 self.checkequal('z', UserList(['z']), 'join', 'a')
38 if test_support.have_unicode:
39 self.checkequal(unicode('a.b.c'), ['a', 'b', 'c'], 'join', unicode('.'))
40 self.checkequal(unicode('a.b.c'), [unicode('a'), 'b', 'c'], 'join', '.')
41 self.checkequal(unicode('a.b.c'), ['a', unicode('b'), 'c'], 'join', '.')
42 self.checkequal(unicode('a.b.c'), ['a', 'b', unicode('c')], 'join', '.')
43 self.checkraises(TypeError, ['a', unicode('b'), 3], 'join', '.')
44 for i in [5, 25, 125]:
45 self.checkequal(
46 ((('a' * i) + '-') * i)[:-1],
47 ['a' * i] * i, 'join', '-')
48 self.checkequal(
49 ((('a' * i) + '-') * i)[:-1],
50 ('a' * i,) * i, 'join', '-')
51
52 self.checkraises(TypeError, string_tests.BadSeq1(), 'join', ' ')
53 self.checkequal('a b c', string_tests.BadSeq2(), 'join', ' ')
54
Raymond Hettinger674f2412004-08-23 23:23:54 +000055 def test_bug1001011(self):
56 # Make sure join returns a NEW object for single item sequences
57 # involving a subclass
58 # Make sure that it is of the appropriate type
59 # Check the optimisation still occurs for standard objects
60 class str_subclass(str): pass
61 s1 = str_subclass('abcd')
62 s2 = ''.join([s1])
63 self.failIf(s1 is s2)
64 self.assertEqual(type(s2), type(''))
65 s3 = 'abcd'
66 s4 = ''.join([s3])
67 self.failUnless(s3 is s4)
68 if test_support.have_unicode:
69 class unicode_subclass(unicode): pass
70 u1 = unicode_subclass(u'abcd')
71 u2 = ''.join([u1])
72 self.failIf(u1 is u2)
73 self.assertEqual(type(u2), type(u''))
74 u3 = u'abcd'
75 u4 = ''.join([u3])
76 self.failUnless(u3 is u4)
77
Walter Dörwald0fd583c2003-02-21 12:53:50 +000078class ModuleTest(unittest.TestCase):
79
80 def test_attrs(self):
81 string.whitespace
82 string.lowercase
83 string.uppercase
84 string.letters
85 string.digits
86 string.hexdigits
87 string.octdigits
88 string.punctuation
89 string.printable
90
91 def test_atoi(self):
92 self.assertEqual(string.atoi(" 1 "), 1)
93 self.assertRaises(ValueError, string.atoi, " 1x")
94 self.assertRaises(ValueError, string.atoi, " x1 ")
95
96 def test_atol(self):
97 self.assertEqual(string.atol(" 1 "), 1L)
98 self.assertRaises(ValueError, string.atol, " 1x ")
99 self.assertRaises(ValueError, string.atol, " x1 ")
100
101 def test_atof(self):
102 self.assertAlmostEqual(string.atof(" 1 "), 1.0)
103 self.assertRaises(ValueError, string.atof, " 1x ")
104 self.assertRaises(ValueError, string.atof, " x1 ")
105
106 def test_maketrans(self):
107 transtable = '\000\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037 !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`xyzdefghijklmnopqrstuvwxyz{|}~\177\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373\374\375\376\377'
108
109 self.assertEqual(string.maketrans('abc', 'xyz'), transtable)
110 self.assertRaises(ValueError, string.maketrans, 'abc', 'xyzq')
111
112 def test_capwords(self):
113 self.assertEqual(string.capwords('abc def ghi'), 'Abc Def Ghi')
114 self.assertEqual(string.capwords('abc\tdef\nghi'), 'Abc Def Ghi')
115 self.assertEqual(string.capwords('abc\t def \nghi'), 'Abc Def Ghi')
116 self.assertEqual(string.capwords('ABC DEF GHI'), 'Abc Def Ghi')
117 self.assertEqual(string.capwords('ABC-DEF-GHI', '-'), 'Abc-Def-Ghi')
118 self.assertEqual(string.capwords('ABC-def DEF-ghi GHI'), 'Abc-def Def-ghi Ghi')
119
120def test_main():
Walter Dörwald21d3a322003-05-01 17:45:56 +0000121 test_support.run_unittest(StringTest, ModuleTest)
Walter Dörwald0fd583c2003-02-21 12:53:50 +0000122
123if __name__ == "__main__":
124 test_main()