blob: 589ecdd4daf53bea46fa45416f6ec3aad8d8bc11 [file] [log] [blame]
Fred Drake8e6669a2001-07-19 22:27:56 +00001"""
2 Test cases for the repr module
3 Nick Mathewson
4"""
5
Antoine Pitrou01296da2012-04-24 13:55:35 +02006import imp
Barry Warsaw0bcf6d82001-08-24 18:37:32 +00007import sys
8import os
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00009import shutil
Antoine Pitrouc541f8e2012-02-20 01:48:16 +010010import importlib
Fred Drake8e6669a2001-07-19 22:27:56 +000011import unittest
Barry Warsaw0bcf6d82001-08-24 18:37:32 +000012
Antoine Pitrou541b7c82012-06-23 00:07:38 +020013from test.support import run_unittest, create_empty_file, verbose
Alexandre Vassalotti1f2ba4b2008-05-16 07:12:44 +000014from reprlib import repr as r # Don't shadow builtin repr
15from reprlib import Repr
Raymond Hettinger98a5f3f2010-09-13 21:36:00 +000016from reprlib import recursive_repr
Fred Drake8e6669a2001-07-19 22:27:56 +000017
18
19def nestedTuple(nesting):
20 t = ()
21 for i in range(nesting):
22 t = (t,)
23 return t
24
25class ReprTests(unittest.TestCase):
26
27 def test_string(self):
Ezio Melottib3aedd42010-11-20 19:04:17 +000028 eq = self.assertEqual
Fred Drake8e6669a2001-07-19 22:27:56 +000029 eq(r("abc"), "'abc'")
30 eq(r("abcdefghijklmnop"),"'abcdefghijklmnop'")
31
32 s = "a"*30+"b"*30
Walter Dörwald70a6b492004-02-12 17:35:32 +000033 expected = repr(s)[:13] + "..." + repr(s)[-14:]
Fred Drake8e6669a2001-07-19 22:27:56 +000034 eq(r(s), expected)
Tim Petersab9ba272001-08-09 21:40:30 +000035
Fred Drake8e6669a2001-07-19 22:27:56 +000036 eq(r("\"'"), repr("\"'"))
37 s = "\""*30+"'"*100
Walter Dörwald70a6b492004-02-12 17:35:32 +000038 expected = repr(s)[:13] + "..." + repr(s)[-14:]
Fred Drake8e6669a2001-07-19 22:27:56 +000039 eq(r(s), expected)
40
Guido van Rossumcd16bf62007-06-13 18:07:49 +000041 def test_tuple(self):
Ezio Melottib3aedd42010-11-20 19:04:17 +000042 eq = self.assertEqual
Guido van Rossumcd16bf62007-06-13 18:07:49 +000043 eq(r((1,)), "(1,)")
44
45 t3 = (1, 2, 3)
46 eq(r(t3), "(1, 2, 3)")
47
48 r2 = Repr()
49 r2.maxtuple = 2
50 expected = repr(t3)[:-2] + "...)"
51 eq(r2.repr(t3), expected)
52
Fred Drake8e6669a2001-07-19 22:27:56 +000053 def test_container(self):
Tim Peters6ee04802003-02-05 18:29:34 +000054 from array import array
Raymond Hettinger1453e4a2004-05-21 23:01:18 +000055 from collections import deque
Tim Peters6ee04802003-02-05 18:29:34 +000056
Ezio Melottib3aedd42010-11-20 19:04:17 +000057 eq = self.assertEqual
Fred Drake8e6669a2001-07-19 22:27:56 +000058 # Tuples give up after 6 elements
59 eq(r(()), "()")
60 eq(r((1,)), "(1,)")
61 eq(r((1, 2, 3)), "(1, 2, 3)")
62 eq(r((1, 2, 3, 4, 5, 6)), "(1, 2, 3, 4, 5, 6)")
63 eq(r((1, 2, 3, 4, 5, 6, 7)), "(1, 2, 3, 4, 5, 6, ...)")
64
65 # Lists give up after 6 as well
66 eq(r([]), "[]")
67 eq(r([1]), "[1]")
68 eq(r([1, 2, 3]), "[1, 2, 3]")
69 eq(r([1, 2, 3, 4, 5, 6]), "[1, 2, 3, 4, 5, 6]")
70 eq(r([1, 2, 3, 4, 5, 6, 7]), "[1, 2, 3, 4, 5, 6, ...]")
71
Raymond Hettingerba6cd362004-05-21 10:00:15 +000072 # Sets give up after 6 as well
73 eq(r(set([])), "set([])")
74 eq(r(set([1])), "set([1])")
75 eq(r(set([1, 2, 3])), "set([1, 2, 3])")
76 eq(r(set([1, 2, 3, 4, 5, 6])), "set([1, 2, 3, 4, 5, 6])")
77 eq(r(set([1, 2, 3, 4, 5, 6, 7])), "set([1, 2, 3, 4, 5, 6, ...])")
78
79 # Frozensets give up after 6 as well
80 eq(r(frozenset([])), "frozenset([])")
81 eq(r(frozenset([1])), "frozenset([1])")
82 eq(r(frozenset([1, 2, 3])), "frozenset([1, 2, 3])")
83 eq(r(frozenset([1, 2, 3, 4, 5, 6])), "frozenset([1, 2, 3, 4, 5, 6])")
84 eq(r(frozenset([1, 2, 3, 4, 5, 6, 7])), "frozenset([1, 2, 3, 4, 5, 6, ...])")
85
Raymond Hettinger1453e4a2004-05-21 23:01:18 +000086 # collections.deque after 6
87 eq(r(deque([1, 2, 3, 4, 5, 6, 7])), "deque([1, 2, 3, 4, 5, 6, ...])")
88
Fred Drake8e6669a2001-07-19 22:27:56 +000089 # Dictionaries give up after 4.
90 eq(r({}), "{}")
91 d = {'alice': 1, 'bob': 2, 'charles': 3, 'dave': 4}
92 eq(r(d), "{'alice': 1, 'bob': 2, 'charles': 3, 'dave': 4}")
93 d['arthur'] = 1
94 eq(r(d), "{'alice': 1, 'arthur': 1, 'bob': 2, 'charles': 3, ...}")
95
Tim Peters6ee04802003-02-05 18:29:34 +000096 # array.array after 5.
97 eq(r(array('i')), "array('i', [])")
98 eq(r(array('i', [1])), "array('i', [1])")
99 eq(r(array('i', [1, 2])), "array('i', [1, 2])")
100 eq(r(array('i', [1, 2, 3])), "array('i', [1, 2, 3])")
101 eq(r(array('i', [1, 2, 3, 4])), "array('i', [1, 2, 3, 4])")
102 eq(r(array('i', [1, 2, 3, 4, 5])), "array('i', [1, 2, 3, 4, 5])")
103 eq(r(array('i', [1, 2, 3, 4, 5, 6])),
104 "array('i', [1, 2, 3, 4, 5, ...])")
105
Fred Drake8e6669a2001-07-19 22:27:56 +0000106 def test_numbers(self):
Ezio Melottib3aedd42010-11-20 19:04:17 +0000107 eq = self.assertEqual
Fred Drake8e6669a2001-07-19 22:27:56 +0000108 eq(r(123), repr(123))
Guido van Rossume2a383d2007-01-15 16:59:06 +0000109 eq(r(123), repr(123))
Fred Drake8e6669a2001-07-19 22:27:56 +0000110 eq(r(1.0/3), repr(1.0/3))
111
Guido van Rossume2a383d2007-01-15 16:59:06 +0000112 n = 10**100
Walter Dörwald70a6b492004-02-12 17:35:32 +0000113 expected = repr(n)[:18] + "..." + repr(n)[-19:]
Fred Drake8e6669a2001-07-19 22:27:56 +0000114 eq(r(n), expected)
115
116 def test_instance(self):
Ezio Melottib3aedd42010-11-20 19:04:17 +0000117 eq = self.assertEqual
Fred Drake8e6669a2001-07-19 22:27:56 +0000118 i1 = ClassWithRepr("a")
119 eq(r(i1), repr(i1))
Tim Petersab9ba272001-08-09 21:40:30 +0000120
Fred Drake8e6669a2001-07-19 22:27:56 +0000121 i2 = ClassWithRepr("x"*1000)
Walter Dörwald70a6b492004-02-12 17:35:32 +0000122 expected = repr(i2)[:13] + "..." + repr(i2)[-14:]
Fred Drake8e6669a2001-07-19 22:27:56 +0000123 eq(r(i2), expected)
124
125 i3 = ClassWithFailingRepr()
126 eq(r(i3), ("<ClassWithFailingRepr instance at %x>"%id(i3)))
127
Guido van Rossumcf856f92001-09-05 02:26:26 +0000128 s = r(ClassWithFailingRepr)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000129 self.assertTrue(s.startswith("<class "))
130 self.assertTrue(s.endswith(">"))
Benjamin Peterson577473f2010-01-19 00:09:57 +0000131 self.assertIn(s.find("..."), [12, 13])
Guido van Rossumcf856f92001-09-05 02:26:26 +0000132
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000133 def test_lambda(self):
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100134 r = repr(lambda x: x)
135 self.assertTrue(r.startswith("<function ReprTests.test_lambda.<locals>.<lambda"), r)
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000136 # XXX anonymous functions? see func_repr
137
138 def test_builtin_function(self):
Ezio Melottib3aedd42010-11-20 19:04:17 +0000139 eq = self.assertEqual
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000140 # Functions
141 eq(repr(hash), '<built-in function hash>')
142 # Methods
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000143 self.assertTrue(repr(''.split).startswith(
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000144 '<built-in method split of str object at 0x'))
145
Guido van Rossum805365e2007-05-07 22:24:25 +0000146 def test_range(self):
Ezio Melottib3aedd42010-11-20 19:04:17 +0000147 eq = self.assertEqual
Guido van Rossum3353a2e2007-05-21 18:14:54 +0000148 eq(repr(range(1)), 'range(0, 1)')
Guido van Rossum805365e2007-05-07 22:24:25 +0000149 eq(repr(range(1, 2)), 'range(1, 2)')
150 eq(repr(range(1, 4, 3)), 'range(1, 4, 3)')
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000151
Fred Drake8e6669a2001-07-19 22:27:56 +0000152 def test_nesting(self):
Ezio Melottib3aedd42010-11-20 19:04:17 +0000153 eq = self.assertEqual
Fred Drake8e6669a2001-07-19 22:27:56 +0000154 # everything is meant to give up after 6 levels.
155 eq(r([[[[[[[]]]]]]]), "[[[[[[[]]]]]]]")
156 eq(r([[[[[[[[]]]]]]]]), "[[[[[[[...]]]]]]]")
157
158 eq(r(nestedTuple(6)), "(((((((),),),),),),)")
159 eq(r(nestedTuple(7)), "(((((((...),),),),),),)")
160
161 eq(r({ nestedTuple(5) : nestedTuple(5) }),
162 "{((((((),),),),),): ((((((),),),),),)}")
163 eq(r({ nestedTuple(6) : nestedTuple(6) }),
164 "{((((((...),),),),),): ((((((...),),),),),)}")
165
166 eq(r([[[[[[{}]]]]]]), "[[[[[[{}]]]]]]")
167 eq(r([[[[[[[{}]]]]]]]), "[[[[[[[...]]]]]]]")
168
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000169 def test_cell(self):
170 # XXX Hmm? How to get at a cell object?
171 pass
172
173 def test_descriptors(self):
Ezio Melottib3aedd42010-11-20 19:04:17 +0000174 eq = self.assertEqual
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000175 # method descriptors
Tim Petersa427a2b2001-10-29 22:25:45 +0000176 eq(repr(dict.items), "<method 'items' of 'dict' objects>")
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000177 # XXX member descriptors
178 # XXX attribute descriptors
179 # XXX slot descriptors
180 # static and class methods
181 class C:
182 def foo(cls): pass
183 x = staticmethod(C.foo)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000184 self.assertTrue(repr(x).startswith('<staticmethod object at 0x'))
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000185 x = classmethod(C.foo)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000186 self.assertTrue(repr(x).startswith('<classmethod object at 0x'))
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000187
Thomas Wouters1b7f8912007-09-19 03:06:30 +0000188 def test_unsortable(self):
189 # Repr.repr() used to call sorted() on sets, frozensets and dicts
190 # without taking into account that not all objects are comparable
191 x = set([1j, 2j, 3j])
192 y = frozenset(x)
193 z = {1j: 1, 2j: 2}
194 r(x)
195 r(y)
196 r(z)
197
Victor Stinnerbf816222011-06-30 23:25:47 +0200198def write_file(path, text):
199 with open(path, 'w', encoding='ASCII') as fp:
200 fp.write(text)
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000201
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000202class LongReprTest(unittest.TestCase):
Antoine Pitrou01296da2012-04-24 13:55:35 +0200203 longname = 'areallylongpackageandmodulenametotestreprtruncation'
204
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000205 def setUp(self):
Antoine Pitrou01296da2012-04-24 13:55:35 +0200206 self.pkgname = os.path.join(self.longname)
207 self.subpkgname = os.path.join(self.longname, self.longname)
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000208 # Make the package and subpackage
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000209 shutil.rmtree(self.pkgname, ignore_errors=True)
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000210 os.mkdir(self.pkgname)
Victor Stinnerbf816222011-06-30 23:25:47 +0200211 create_empty_file(os.path.join(self.pkgname, '__init__.py'))
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000212 shutil.rmtree(self.subpkgname, ignore_errors=True)
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000213 os.mkdir(self.subpkgname)
Victor Stinnerbf816222011-06-30 23:25:47 +0200214 create_empty_file(os.path.join(self.subpkgname, '__init__.py'))
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000215 # Remember where we are
216 self.here = os.getcwd()
217 sys.path.insert(0, self.here)
Brett Cannonceffda82012-04-16 20:48:50 -0400218 # When regrtest is run with its -j option, this command alone is not
219 # enough.
Antoine Pitrouc541f8e2012-02-20 01:48:16 +0100220 importlib.invalidate_caches()
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000221
222 def tearDown(self):
223 actions = []
Benjamin Peterson699adb92008-05-08 22:27:58 +0000224 for dirpath, dirnames, filenames in os.walk(self.pkgname):
225 for name in dirnames + filenames:
226 actions.append(os.path.join(dirpath, name))
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000227 actions.append(self.pkgname)
228 actions.sort()
229 actions.reverse()
230 for p in actions:
231 if os.path.isdir(p):
232 os.rmdir(p)
233 else:
234 os.remove(p)
235 del sys.path[0]
236
Antoine Pitrou01296da2012-04-24 13:55:35 +0200237 def _check_path_limitations(self, module_name):
238 # base directory
239 source_path_len = len(self.here)
240 # a path separator + `longname` (twice)
241 source_path_len += 2 * (len(self.longname) + 1)
242 # a path separator + `module_name` + ".py"
243 source_path_len += len(module_name) + 1 + len(".py")
244 cached_path_len = source_path_len + len(imp.cache_from_source("x.py")) - len("x.py")
Antoine Pitrou110ee342012-06-23 22:55:58 +0200245 if os.name == 'nt' and cached_path_len >= 258:
Antoine Pitrou01296da2012-04-24 13:55:35 +0200246 # Under Windows, the max path len is 260 including C's terminating
247 # NUL character.
248 # (see http://msdn.microsoft.com/en-us/library/windows/desktop/aa365247%28v=vs.85%29.aspx#maxpath)
249 self.skipTest("test paths too long (%d characters) for Windows' 260 character limit"
250 % cached_path_len)
Antoine Pitrou541b7c82012-06-23 00:07:38 +0200251 elif os.name == 'nt' and verbose:
Antoine Pitrouf0f47422012-06-23 00:49:44 +0200252 print("cached_path_len =", cached_path_len)
Antoine Pitrou01296da2012-04-24 13:55:35 +0200253
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000254 def test_module(self):
Antoine Pitrou01296da2012-04-24 13:55:35 +0200255 self._check_path_limitations(self.pkgname)
Victor Stinnerbf816222011-06-30 23:25:47 +0200256 create_empty_file(os.path.join(self.subpkgname, self.pkgname + '.py'))
Brett Cannonceffda82012-04-16 20:48:50 -0400257 importlib.invalidate_caches()
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000258 from areallylongpackageandmodulenametotestreprtruncation.areallylongpackageandmodulenametotestreprtruncation import areallylongpackageandmodulenametotestreprtruncation
Brett Cannon7b383c42012-06-11 11:02:36 -0400259 module = areallylongpackageandmodulenametotestreprtruncation
260 self.assertEqual(repr(module), "<module %r from %r>" % (module.__name__, module.__file__))
261 self.assertEqual(repr(sys), "<module 'sys' (built-in)>")
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000262
263 def test_type(self):
Antoine Pitrou01296da2012-04-24 13:55:35 +0200264 self._check_path_limitations('foo')
Ezio Melottib3aedd42010-11-20 19:04:17 +0000265 eq = self.assertEqual
Victor Stinnerbf816222011-06-30 23:25:47 +0200266 write_file(os.path.join(self.subpkgname, 'foo.py'), '''\
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000267class foo(object):
268 pass
269''')
Brett Cannonceffda82012-04-16 20:48:50 -0400270 importlib.invalidate_caches()
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000271 from areallylongpackageandmodulenametotestreprtruncation.areallylongpackageandmodulenametotestreprtruncation import foo
272 eq(repr(foo.foo),
Mark Hammondd800ae12003-01-16 04:56:52 +0000273 "<class '%s.foo'>" % foo.__name__)
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000274
275 def test_object(self):
276 # XXX Test the repr of a type with a really long tp_name but with no
277 # tp_repr. WIBNI we had ::Inline? :)
278 pass
279
280 def test_class(self):
Antoine Pitrou01296da2012-04-24 13:55:35 +0200281 self._check_path_limitations('bar')
Victor Stinnerbf816222011-06-30 23:25:47 +0200282 write_file(os.path.join(self.subpkgname, 'bar.py'), '''\
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000283class bar:
284 pass
285''')
Brett Cannonceffda82012-04-16 20:48:50 -0400286 importlib.invalidate_caches()
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000287 from areallylongpackageandmodulenametotestreprtruncation.areallylongpackageandmodulenametotestreprtruncation import bar
Mark Hammondd800ae12003-01-16 04:56:52 +0000288 # Module name may be prefixed with "test.", depending on how run.
Ezio Melottib3aedd42010-11-20 19:04:17 +0000289 self.assertEqual(repr(bar.bar), "<class '%s.bar'>" % bar.__name__)
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000290
291 def test_instance(self):
Antoine Pitrou01296da2012-04-24 13:55:35 +0200292 self._check_path_limitations('baz')
Victor Stinnerbf816222011-06-30 23:25:47 +0200293 write_file(os.path.join(self.subpkgname, 'baz.py'), '''\
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000294class baz:
295 pass
296''')
Brett Cannonceffda82012-04-16 20:48:50 -0400297 importlib.invalidate_caches()
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000298 from areallylongpackageandmodulenametotestreprtruncation.areallylongpackageandmodulenametotestreprtruncation import baz
299 ibaz = baz.baz()
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000300 self.assertTrue(repr(ibaz).startswith(
Guido van Rossuma48a3b42006-04-20 16:07:39 +0000301 "<%s.baz object at 0x" % baz.__name__))
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000302
303 def test_method(self):
Antoine Pitrou01296da2012-04-24 13:55:35 +0200304 self._check_path_limitations('qux')
Ezio Melottib3aedd42010-11-20 19:04:17 +0000305 eq = self.assertEqual
Victor Stinnerbf816222011-06-30 23:25:47 +0200306 write_file(os.path.join(self.subpkgname, 'qux.py'), '''\
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000307class aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa:
308 def amethod(self): pass
309''')
Brett Cannonceffda82012-04-16 20:48:50 -0400310 importlib.invalidate_caches()
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000311 from areallylongpackageandmodulenametotestreprtruncation.areallylongpackageandmodulenametotestreprtruncation import qux
312 # Unbound methods first
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100313 r = repr(qux.aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.amethod)
314 self.assertTrue(r.startswith('<function aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.amethod'), r)
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000315 # Bound method next
316 iqux = qux.aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa()
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100317 r = repr(iqux.amethod)
318 self.assertTrue(r.startswith(
Guido van Rossuma48a3b42006-04-20 16:07:39 +0000319 '<bound method aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.amethod of <%s.aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa object at 0x' \
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100320 % (qux.__name__,) ), r)
Barry Warsaw0bcf6d82001-08-24 18:37:32 +0000321
322 def test_builtin_function(self):
323 # XXX test built-in functions and methods with really long names
324 pass
Fred Drake8e6669a2001-07-19 22:27:56 +0000325
326class ClassWithRepr:
327 def __init__(self, s):
328 self.s = s
329 def __repr__(self):
Guido van Rossuma48a3b42006-04-20 16:07:39 +0000330 return "ClassWithRepr(%r)" % self.s
Fred Drake8e6669a2001-07-19 22:27:56 +0000331
332
333class ClassWithFailingRepr:
334 def __repr__(self):
335 raise Exception("This should be caught by Repr.repr_instance")
336
Raymond Hettinger98a5f3f2010-09-13 21:36:00 +0000337class MyContainer:
338 'Helper class for TestRecursiveRepr'
339 def __init__(self, values):
340 self.values = list(values)
341 def append(self, value):
342 self.values.append(value)
343 @recursive_repr()
344 def __repr__(self):
345 return '<' + ', '.join(map(str, self.values)) + '>'
346
347class MyContainer2(MyContainer):
348 @recursive_repr('+++')
349 def __repr__(self):
350 return '<' + ', '.join(map(str, self.values)) + '>'
351
352class TestRecursiveRepr(unittest.TestCase):
353 def test_recursive_repr(self):
354 m = MyContainer(list('abcde'))
355 m.append(m)
356 m.append('x')
357 m.append(m)
358 self.assertEqual(repr(m), '<a, b, c, d, e, ..., x, ...>')
359 m = MyContainer2(list('abcde'))
360 m.append(m)
361 m.append('x')
362 m.append(m)
363 self.assertEqual(repr(m), '<a, b, c, d, e, +++, x, +++>')
Fred Drake8e6669a2001-07-19 22:27:56 +0000364
Fred Drake2e2be372001-09-20 21:33:42 +0000365def test_main():
366 run_unittest(ReprTests)
Ronald Oussoren94f25282010-05-05 19:11:21 +0000367 run_unittest(LongReprTest)
Raymond Hettinger98a5f3f2010-09-13 21:36:00 +0000368 run_unittest(TestRecursiveRepr)
Fred Drake2e2be372001-09-20 21:33:42 +0000369
370
371if __name__ == "__main__":
372 test_main()