blob: 873e495d7f0d556ac33872e4e26f449003563e55 [file] [log] [blame]
Tim Peters8485b562004-08-04 18:46:34 +00001"""
2Test script for doctest.
3"""
4
Benjamin Petersonee8712c2008-05-20 21:35:26 +00005from test import support
Tim Peters8485b562004-08-04 18:46:34 +00006import doctest
7
Florent Xiclunadc6f2d02010-04-02 19:25:32 +00008
Nick Coghlanf088e5e2008-12-14 11:50:48 +00009# NOTE: There are some additional tests relating to interaction with
10# zipimport in the test_zipimport_support test module.
11
Tim Peters8485b562004-08-04 18:46:34 +000012######################################################################
13## Sample Objects (used by test cases)
14######################################################################
15
16def sample_func(v):
17 """
Tim Peters19397e52004-08-06 22:02:59 +000018 Blah blah
19
Guido van Rossum7131f842007-02-09 20:13:25 +000020 >>> print(sample_func(22))
Tim Peters8485b562004-08-04 18:46:34 +000021 44
Tim Peters19397e52004-08-06 22:02:59 +000022
23 Yee ha!
Tim Peters8485b562004-08-04 18:46:34 +000024 """
25 return v+v
26
27class SampleClass:
28 """
Guido van Rossum7131f842007-02-09 20:13:25 +000029 >>> print(1)
Tim Peters8485b562004-08-04 18:46:34 +000030 1
Edward Loper4ae900f2004-09-21 03:20:34 +000031
32 >>> # comments get ignored. so are empty PS1 and PS2 prompts:
33 >>>
34 ...
35
36 Multiline example:
37 >>> sc = SampleClass(3)
38 >>> for i in range(10):
39 ... sc = sc.double()
Guido van Rossum805365e2007-05-07 22:24:25 +000040 ... print(' ', sc.get(), sep='', end='')
41 6 12 24 48 96 192 384 768 1536 3072
Tim Peters8485b562004-08-04 18:46:34 +000042 """
43 def __init__(self, val):
44 """
Guido van Rossum7131f842007-02-09 20:13:25 +000045 >>> print(SampleClass(12).get())
Tim Peters8485b562004-08-04 18:46:34 +000046 12
47 """
48 self.val = val
49
50 def double(self):
51 """
Guido van Rossum7131f842007-02-09 20:13:25 +000052 >>> print(SampleClass(12).double().get())
Tim Peters8485b562004-08-04 18:46:34 +000053 24
54 """
55 return SampleClass(self.val + self.val)
56
57 def get(self):
58 """
Guido van Rossum7131f842007-02-09 20:13:25 +000059 >>> print(SampleClass(-5).get())
Tim Peters8485b562004-08-04 18:46:34 +000060 -5
61 """
62 return self.val
63
64 def a_staticmethod(v):
65 """
Guido van Rossum7131f842007-02-09 20:13:25 +000066 >>> print(SampleClass.a_staticmethod(10))
Tim Peters8485b562004-08-04 18:46:34 +000067 11
68 """
69 return v+1
70 a_staticmethod = staticmethod(a_staticmethod)
71
72 def a_classmethod(cls, v):
73 """
Guido van Rossum7131f842007-02-09 20:13:25 +000074 >>> print(SampleClass.a_classmethod(10))
Tim Peters8485b562004-08-04 18:46:34 +000075 12
Guido van Rossum7131f842007-02-09 20:13:25 +000076 >>> print(SampleClass(0).a_classmethod(10))
Tim Peters8485b562004-08-04 18:46:34 +000077 12
78 """
79 return v+2
80 a_classmethod = classmethod(a_classmethod)
81
82 a_property = property(get, doc="""
Guido van Rossum7131f842007-02-09 20:13:25 +000083 >>> print(SampleClass(22).a_property)
Tim Peters8485b562004-08-04 18:46:34 +000084 22
85 """)
86
87 class NestedClass:
88 """
89 >>> x = SampleClass.NestedClass(5)
90 >>> y = x.square()
Guido van Rossum7131f842007-02-09 20:13:25 +000091 >>> print(y.get())
Tim Peters8485b562004-08-04 18:46:34 +000092 25
93 """
94 def __init__(self, val=0):
95 """
Guido van Rossum7131f842007-02-09 20:13:25 +000096 >>> print(SampleClass.NestedClass().get())
Tim Peters8485b562004-08-04 18:46:34 +000097 0
98 """
99 self.val = val
100 def square(self):
101 return SampleClass.NestedClass(self.val*self.val)
102 def get(self):
103 return self.val
104
105class SampleNewStyleClass(object):
106 r"""
Guido van Rossum7131f842007-02-09 20:13:25 +0000107 >>> print('1\n2\n3')
Tim Peters8485b562004-08-04 18:46:34 +0000108 1
109 2
110 3
111 """
112 def __init__(self, val):
113 """
Guido van Rossum7131f842007-02-09 20:13:25 +0000114 >>> print(SampleNewStyleClass(12).get())
Tim Peters8485b562004-08-04 18:46:34 +0000115 12
116 """
117 self.val = val
118
119 def double(self):
120 """
Guido van Rossum7131f842007-02-09 20:13:25 +0000121 >>> print(SampleNewStyleClass(12).double().get())
Tim Peters8485b562004-08-04 18:46:34 +0000122 24
123 """
124 return SampleNewStyleClass(self.val + self.val)
125
126 def get(self):
127 """
Guido van Rossum7131f842007-02-09 20:13:25 +0000128 >>> print(SampleNewStyleClass(-5).get())
Tim Peters8485b562004-08-04 18:46:34 +0000129 -5
130 """
131 return self.val
132
133######################################################################
Edward Loper2de91ba2004-08-27 02:07:46 +0000134## Fake stdin (for testing interactive debugging)
135######################################################################
136
137class _FakeInput:
138 """
139 A fake input stream for pdb's interactive debugger. Whenever a
140 line is read, print it (to simulate the user typing it), and then
141 return it. The set of lines to return is specified in the
142 constructor; they should not have trailing newlines.
143 """
144 def __init__(self, lines):
145 self.lines = lines
146
147 def readline(self):
148 line = self.lines.pop(0)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000149 print(line)
Edward Loper2de91ba2004-08-27 02:07:46 +0000150 return line+'\n'
151
152######################################################################
Tim Peters8485b562004-08-04 18:46:34 +0000153## Test Cases
154######################################################################
155
156def test_Example(): r"""
157Unit tests for the `Example` class.
158
Edward Lopera6b68322004-08-26 00:05:43 +0000159Example is a simple container class that holds:
160 - `source`: A source string.
161 - `want`: An expected output string.
162 - `exc_msg`: An expected exception message string (or None if no
163 exception is expected).
164 - `lineno`: A line number (within the docstring).
165 - `indent`: The example's indentation in the input string.
166 - `options`: An option dictionary, mapping option flags to True or
167 False.
Tim Peters8485b562004-08-04 18:46:34 +0000168
Edward Lopera6b68322004-08-26 00:05:43 +0000169These attributes are set by the constructor. `source` and `want` are
170required; the other attributes all have default values:
Tim Peters8485b562004-08-04 18:46:34 +0000171
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000172 >>> example = doctest.Example('print(1)', '1\n')
Edward Lopera6b68322004-08-26 00:05:43 +0000173 >>> (example.source, example.want, example.exc_msg,
174 ... example.lineno, example.indent, example.options)
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000175 ('print(1)\n', '1\n', None, 0, 0, {})
Edward Lopera6b68322004-08-26 00:05:43 +0000176
177The first three attributes (`source`, `want`, and `exc_msg`) may be
178specified positionally; the remaining arguments should be specified as
179keyword arguments:
180
181 >>> exc_msg = 'IndexError: pop from an empty list'
182 >>> example = doctest.Example('[].pop()', '', exc_msg,
183 ... lineno=5, indent=4,
184 ... options={doctest.ELLIPSIS: True})
185 >>> (example.source, example.want, example.exc_msg,
186 ... example.lineno, example.indent, example.options)
187 ('[].pop()\n', '', 'IndexError: pop from an empty list\n', 5, 4, {8: True})
188
189The constructor normalizes the `source` string to end in a newline:
Tim Peters8485b562004-08-04 18:46:34 +0000190
Tim Petersbb431472004-08-09 03:51:46 +0000191 Source spans a single line: no terminating newline.
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000192 >>> e = doctest.Example('print(1)', '1\n')
Tim Petersbb431472004-08-09 03:51:46 +0000193 >>> e.source, e.want
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000194 ('print(1)\n', '1\n')
Tim Petersbb431472004-08-09 03:51:46 +0000195
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000196 >>> e = doctest.Example('print(1)\n', '1\n')
Tim Petersbb431472004-08-09 03:51:46 +0000197 >>> e.source, e.want
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000198 ('print(1)\n', '1\n')
Tim Peters8485b562004-08-04 18:46:34 +0000199
Tim Petersbb431472004-08-09 03:51:46 +0000200 Source spans multiple lines: require terminating newline.
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000201 >>> e = doctest.Example('print(1);\nprint(2)\n', '1\n2\n')
Tim Petersbb431472004-08-09 03:51:46 +0000202 >>> e.source, e.want
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000203 ('print(1);\nprint(2)\n', '1\n2\n')
Tim Peters8485b562004-08-04 18:46:34 +0000204
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000205 >>> e = doctest.Example('print(1);\nprint(2)', '1\n2\n')
Tim Petersbb431472004-08-09 03:51:46 +0000206 >>> e.source, e.want
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000207 ('print(1);\nprint(2)\n', '1\n2\n')
Tim Petersbb431472004-08-09 03:51:46 +0000208
Edward Lopera6b68322004-08-26 00:05:43 +0000209 Empty source string (which should never appear in real examples)
210 >>> e = doctest.Example('', '')
211 >>> e.source, e.want
212 ('\n', '')
Tim Peters8485b562004-08-04 18:46:34 +0000213
Edward Lopera6b68322004-08-26 00:05:43 +0000214The constructor normalizes the `want` string to end in a newline,
215unless it's the empty string:
216
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000217 >>> e = doctest.Example('print(1)', '1\n')
Tim Petersbb431472004-08-09 03:51:46 +0000218 >>> e.source, e.want
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000219 ('print(1)\n', '1\n')
Tim Petersbb431472004-08-09 03:51:46 +0000220
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000221 >>> e = doctest.Example('print(1)', '1')
Tim Petersbb431472004-08-09 03:51:46 +0000222 >>> e.source, e.want
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000223 ('print(1)\n', '1\n')
Tim Petersbb431472004-08-09 03:51:46 +0000224
Edward Lopera6b68322004-08-26 00:05:43 +0000225 >>> e = doctest.Example('print', '')
Tim Petersbb431472004-08-09 03:51:46 +0000226 >>> e.source, e.want
227 ('print\n', '')
Edward Lopera6b68322004-08-26 00:05:43 +0000228
229The constructor normalizes the `exc_msg` string to end in a newline,
230unless it's `None`:
231
232 Message spans one line
233 >>> exc_msg = 'IndexError: pop from an empty list'
234 >>> e = doctest.Example('[].pop()', '', exc_msg)
235 >>> e.exc_msg
236 'IndexError: pop from an empty list\n'
237
238 >>> exc_msg = 'IndexError: pop from an empty list\n'
239 >>> e = doctest.Example('[].pop()', '', exc_msg)
240 >>> e.exc_msg
241 'IndexError: pop from an empty list\n'
242
243 Message spans multiple lines
244 >>> exc_msg = 'ValueError: 1\n 2'
245 >>> e = doctest.Example('raise ValueError("1\n 2")', '', exc_msg)
246 >>> e.exc_msg
247 'ValueError: 1\n 2\n'
248
249 >>> exc_msg = 'ValueError: 1\n 2\n'
250 >>> e = doctest.Example('raise ValueError("1\n 2")', '', exc_msg)
251 >>> e.exc_msg
252 'ValueError: 1\n 2\n'
253
254 Empty (but non-None) exception message (which should never appear
255 in real examples)
256 >>> exc_msg = ''
257 >>> e = doctest.Example('raise X()', '', exc_msg)
258 >>> e.exc_msg
259 '\n'
Tim Peters8485b562004-08-04 18:46:34 +0000260"""
261
262def test_DocTest(): r"""
263Unit tests for the `DocTest` class.
264
265DocTest is a collection of examples, extracted from a docstring, along
266with information about where the docstring comes from (a name,
267filename, and line number). The docstring is parsed by the `DocTest`
268constructor:
269
270 >>> docstring = '''
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000271 ... >>> print(12)
Tim Peters8485b562004-08-04 18:46:34 +0000272 ... 12
273 ...
274 ... Non-example text.
275 ...
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000276 ... >>> print('another\example')
Tim Peters8485b562004-08-04 18:46:34 +0000277 ... another
278 ... example
279 ... '''
280 >>> globs = {} # globals to run the test in.
Edward Lopera1ef6112004-08-09 16:14:41 +0000281 >>> parser = doctest.DocTestParser()
282 >>> test = parser.get_doctest(docstring, globs, 'some_test',
283 ... 'some_file', 20)
Guido van Rossum7131f842007-02-09 20:13:25 +0000284 >>> print(test)
Tim Peters8485b562004-08-04 18:46:34 +0000285 <DocTest some_test from some_file:20 (2 examples)>
286 >>> len(test.examples)
287 2
288 >>> e1, e2 = test.examples
289 >>> (e1.source, e1.want, e1.lineno)
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000290 ('print(12)\n', '12\n', 1)
Tim Peters8485b562004-08-04 18:46:34 +0000291 >>> (e2.source, e2.want, e2.lineno)
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000292 ("print('another\\example')\n", 'another\nexample\n', 6)
Tim Peters8485b562004-08-04 18:46:34 +0000293
294Source information (name, filename, and line number) is available as
295attributes on the doctest object:
296
297 >>> (test.name, test.filename, test.lineno)
298 ('some_test', 'some_file', 20)
299
300The line number of an example within its containing file is found by
301adding the line number of the example and the line number of its
302containing test:
303
304 >>> test.lineno + e1.lineno
305 21
306 >>> test.lineno + e2.lineno
307 26
308
309If the docstring contains inconsistant leading whitespace in the
310expected output of an example, then `DocTest` will raise a ValueError:
311
312 >>> docstring = r'''
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000313 ... >>> print('bad\nindentation')
Tim Peters8485b562004-08-04 18:46:34 +0000314 ... bad
315 ... indentation
316 ... '''
Edward Lopera1ef6112004-08-09 16:14:41 +0000317 >>> parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
Tim Peters8485b562004-08-04 18:46:34 +0000318 Traceback (most recent call last):
Edward Loper00f8da72004-08-26 18:05:07 +0000319 ValueError: line 4 of the docstring for some_test has inconsistent leading whitespace: 'indentation'
Tim Peters8485b562004-08-04 18:46:34 +0000320
321If the docstring contains inconsistent leading whitespace on
322continuation lines, then `DocTest` will raise a ValueError:
323
324 >>> docstring = r'''
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000325 ... >>> print(('bad indentation',
326 ... ... 2))
Tim Peters8485b562004-08-04 18:46:34 +0000327 ... ('bad', 'indentation')
328 ... '''
Edward Lopera1ef6112004-08-09 16:14:41 +0000329 >>> parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
Tim Peters8485b562004-08-04 18:46:34 +0000330 Traceback (most recent call last):
Guido van Rossume0192e52007-02-09 23:39:59 +0000331 ValueError: line 2 of the docstring for some_test has inconsistent leading whitespace: '... 2))'
Tim Peters8485b562004-08-04 18:46:34 +0000332
333If there's no blank space after a PS1 prompt ('>>>'), then `DocTest`
334will raise a ValueError:
335
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000336 >>> docstring = '>>>print(1)\n1'
Edward Lopera1ef6112004-08-09 16:14:41 +0000337 >>> parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
Tim Peters8485b562004-08-04 18:46:34 +0000338 Traceback (most recent call last):
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000339 ValueError: line 1 of the docstring for some_test lacks blank after >>>: '>>>print(1)'
Edward Loper7c748462004-08-09 02:06:06 +0000340
341If there's no blank space after a PS2 prompt ('...'), then `DocTest`
342will raise a ValueError:
343
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000344 >>> docstring = '>>> if 1:\n...print(1)\n1'
Edward Lopera1ef6112004-08-09 16:14:41 +0000345 >>> parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
Edward Loper7c748462004-08-09 02:06:06 +0000346 Traceback (most recent call last):
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000347 ValueError: line 2 of the docstring for some_test lacks blank after ...: '...print(1)'
Edward Loper7c748462004-08-09 02:06:06 +0000348
Tim Peters8485b562004-08-04 18:46:34 +0000349"""
350
Tim Peters8485b562004-08-04 18:46:34 +0000351def test_DocTestFinder(): r"""
352Unit tests for the `DocTestFinder` class.
353
354DocTestFinder is used to extract DocTests from an object's docstring
355and the docstrings of its contained objects. It can be used with
356modules, functions, classes, methods, staticmethods, classmethods, and
357properties.
358
359Finding Tests in Functions
360~~~~~~~~~~~~~~~~~~~~~~~~~~
361For a function whose docstring contains examples, DocTestFinder.find()
362will return a single test (for that function's docstring):
363
Tim Peters8485b562004-08-04 18:46:34 +0000364 >>> finder = doctest.DocTestFinder()
Jim Fulton07a349c2004-08-22 14:10:00 +0000365
366We'll simulate a __file__ attr that ends in pyc:
367
368 >>> import test.test_doctest
369 >>> old = test.test_doctest.__file__
370 >>> test.test_doctest.__file__ = 'test_doctest.pyc'
371
Tim Peters8485b562004-08-04 18:46:34 +0000372 >>> tests = finder.find(sample_func)
Edward Loper8e4a34b2004-08-12 02:34:27 +0000373
Guido van Rossum7131f842007-02-09 20:13:25 +0000374 >>> print(tests) # doctest: +ELLIPSIS
Nick Coghlanf088e5e2008-12-14 11:50:48 +0000375 [<DocTest sample_func from ...:16 (1 example)>]
Edward Loper8e4a34b2004-08-12 02:34:27 +0000376
Tim Peters4de7c5c2004-08-23 22:38:05 +0000377The exact name depends on how test_doctest was invoked, so allow for
378leading path components.
379
380 >>> tests[0].filename # doctest: +ELLIPSIS
381 '...test_doctest.py'
Jim Fulton07a349c2004-08-22 14:10:00 +0000382
383 >>> test.test_doctest.__file__ = old
Tim Petersc6cbab02004-08-22 19:43:28 +0000384
Jim Fulton07a349c2004-08-22 14:10:00 +0000385
Tim Peters8485b562004-08-04 18:46:34 +0000386 >>> e = tests[0].examples[0]
Tim Petersbb431472004-08-09 03:51:46 +0000387 >>> (e.source, e.want, e.lineno)
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000388 ('print(sample_func(22))\n', '44\n', 3)
Tim Peters8485b562004-08-04 18:46:34 +0000389
Edward Loper32ddbf72004-09-13 05:47:24 +0000390By default, tests are created for objects with no docstring:
Tim Peters8485b562004-08-04 18:46:34 +0000391
392 >>> def no_docstring(v):
393 ... pass
Tim Peters958cc892004-09-13 14:53:28 +0000394 >>> finder.find(no_docstring)
395 []
Edward Loper32ddbf72004-09-13 05:47:24 +0000396
397However, the optional argument `exclude_empty` to the DocTestFinder
398constructor can be used to exclude tests for objects with empty
399docstrings:
400
401 >>> def no_docstring(v):
402 ... pass
403 >>> excl_empty_finder = doctest.DocTestFinder(exclude_empty=True)
404 >>> excl_empty_finder.find(no_docstring)
Tim Peters8485b562004-08-04 18:46:34 +0000405 []
406
407If the function has a docstring with no examples, then a test with no
408examples is returned. (This lets `DocTestRunner` collect statistics
409about which functions have no tests -- but is that useful? And should
410an empty test also be created when there's no docstring?)
411
412 >>> def no_examples(v):
413 ... ''' no doctest examples '''
Tim Peters17b56372004-09-11 17:33:27 +0000414 >>> finder.find(no_examples) # doctest: +ELLIPSIS
415 [<DocTest no_examples from ...:1 (no examples)>]
Tim Peters8485b562004-08-04 18:46:34 +0000416
417Finding Tests in Classes
418~~~~~~~~~~~~~~~~~~~~~~~~
419For a class, DocTestFinder will create a test for the class's
420docstring, and will recursively explore its contents, including
421methods, classmethods, staticmethods, properties, and nested classes.
422
423 >>> finder = doctest.DocTestFinder()
424 >>> tests = finder.find(SampleClass)
Tim Peters8485b562004-08-04 18:46:34 +0000425 >>> for t in tests:
Guido van Rossum7131f842007-02-09 20:13:25 +0000426 ... print('%2s %s' % (len(t.examples), t.name))
Edward Loper4ae900f2004-09-21 03:20:34 +0000427 3 SampleClass
Tim Peters8485b562004-08-04 18:46:34 +0000428 3 SampleClass.NestedClass
429 1 SampleClass.NestedClass.__init__
430 1 SampleClass.__init__
431 2 SampleClass.a_classmethod
432 1 SampleClass.a_property
433 1 SampleClass.a_staticmethod
434 1 SampleClass.double
435 1 SampleClass.get
436
437New-style classes are also supported:
438
439 >>> tests = finder.find(SampleNewStyleClass)
Tim Peters8485b562004-08-04 18:46:34 +0000440 >>> for t in tests:
Guido van Rossum7131f842007-02-09 20:13:25 +0000441 ... print('%2s %s' % (len(t.examples), t.name))
Tim Peters8485b562004-08-04 18:46:34 +0000442 1 SampleNewStyleClass
443 1 SampleNewStyleClass.__init__
444 1 SampleNewStyleClass.double
445 1 SampleNewStyleClass.get
446
447Finding Tests in Modules
448~~~~~~~~~~~~~~~~~~~~~~~~
449For a module, DocTestFinder will create a test for the class's
450docstring, and will recursively explore its contents, including
451functions, classes, and the `__test__` dictionary, if it exists:
452
453 >>> # A module
Christian Heimes45f9af32007-11-27 21:50:00 +0000454 >>> import types
455 >>> m = types.ModuleType('some_module')
Tim Peters8485b562004-08-04 18:46:34 +0000456 >>> def triple(val):
457 ... '''
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000458 ... >>> print(triple(11))
Tim Peters8485b562004-08-04 18:46:34 +0000459 ... 33
460 ... '''
461 ... return val*3
462 >>> m.__dict__.update({
463 ... 'sample_func': sample_func,
464 ... 'SampleClass': SampleClass,
465 ... '__doc__': '''
466 ... Module docstring.
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000467 ... >>> print('module')
Tim Peters8485b562004-08-04 18:46:34 +0000468 ... module
469 ... ''',
470 ... '__test__': {
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000471 ... 'd': '>>> print(6)\n6\n>>> print(7)\n7\n',
Tim Peters8485b562004-08-04 18:46:34 +0000472 ... 'c': triple}})
473
474 >>> finder = doctest.DocTestFinder()
475 >>> # Use module=test.test_doctest, to prevent doctest from
476 >>> # ignoring the objects since they weren't defined in m.
477 >>> import test.test_doctest
478 >>> tests = finder.find(m, module=test.test_doctest)
Tim Peters8485b562004-08-04 18:46:34 +0000479 >>> for t in tests:
Guido van Rossum7131f842007-02-09 20:13:25 +0000480 ... print('%2s %s' % (len(t.examples), t.name))
Tim Peters8485b562004-08-04 18:46:34 +0000481 1 some_module
Edward Loper4ae900f2004-09-21 03:20:34 +0000482 3 some_module.SampleClass
Tim Peters8485b562004-08-04 18:46:34 +0000483 3 some_module.SampleClass.NestedClass
484 1 some_module.SampleClass.NestedClass.__init__
485 1 some_module.SampleClass.__init__
486 2 some_module.SampleClass.a_classmethod
487 1 some_module.SampleClass.a_property
488 1 some_module.SampleClass.a_staticmethod
489 1 some_module.SampleClass.double
490 1 some_module.SampleClass.get
Tim Petersc5684782004-09-13 01:07:12 +0000491 1 some_module.__test__.c
492 2 some_module.__test__.d
Tim Peters8485b562004-08-04 18:46:34 +0000493 1 some_module.sample_func
494
495Duplicate Removal
496~~~~~~~~~~~~~~~~~
497If a single object is listed twice (under different names), then tests
498will only be generated for it once:
499
Tim Petersf3f57472004-08-08 06:11:48 +0000500 >>> from test import doctest_aliases
Benjamin Peterson78565b22009-06-28 19:19:51 +0000501 >>> assert doctest_aliases.TwoNames.f
502 >>> assert doctest_aliases.TwoNames.g
Edward Loper32ddbf72004-09-13 05:47:24 +0000503 >>> tests = excl_empty_finder.find(doctest_aliases)
Guido van Rossum7131f842007-02-09 20:13:25 +0000504 >>> print(len(tests))
Tim Peters8485b562004-08-04 18:46:34 +0000505 2
Guido van Rossum7131f842007-02-09 20:13:25 +0000506 >>> print(tests[0].name)
Tim Petersf3f57472004-08-08 06:11:48 +0000507 test.doctest_aliases.TwoNames
508
509 TwoNames.f and TwoNames.g are bound to the same object.
510 We can't guess which will be found in doctest's traversal of
511 TwoNames.__dict__ first, so we have to allow for either.
512
513 >>> tests[1].name.split('.')[-1] in ['f', 'g']
Tim Peters8485b562004-08-04 18:46:34 +0000514 True
515
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000516Empty Tests
517~~~~~~~~~~~
518By default, an object with no doctests doesn't create any tests:
Tim Peters8485b562004-08-04 18:46:34 +0000519
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000520 >>> tests = doctest.DocTestFinder().find(SampleClass)
Tim Peters8485b562004-08-04 18:46:34 +0000521 >>> for t in tests:
Guido van Rossum7131f842007-02-09 20:13:25 +0000522 ... print('%2s %s' % (len(t.examples), t.name))
Edward Loper4ae900f2004-09-21 03:20:34 +0000523 3 SampleClass
Tim Peters8485b562004-08-04 18:46:34 +0000524 3 SampleClass.NestedClass
525 1 SampleClass.NestedClass.__init__
Tim Peters958cc892004-09-13 14:53:28 +0000526 1 SampleClass.__init__
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000527 2 SampleClass.a_classmethod
528 1 SampleClass.a_property
529 1 SampleClass.a_staticmethod
Tim Peters958cc892004-09-13 14:53:28 +0000530 1 SampleClass.double
531 1 SampleClass.get
532
533By default, that excluded objects with no doctests. exclude_empty=False
534tells it to include (empty) tests for objects with no doctests. This feature
535is really to support backward compatibility in what doctest.master.summarize()
536displays.
537
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000538 >>> tests = doctest.DocTestFinder(exclude_empty=False).find(SampleClass)
Tim Peters958cc892004-09-13 14:53:28 +0000539 >>> for t in tests:
Guido van Rossum7131f842007-02-09 20:13:25 +0000540 ... print('%2s %s' % (len(t.examples), t.name))
Edward Loper4ae900f2004-09-21 03:20:34 +0000541 3 SampleClass
Tim Peters958cc892004-09-13 14:53:28 +0000542 3 SampleClass.NestedClass
543 1 SampleClass.NestedClass.__init__
Edward Loper32ddbf72004-09-13 05:47:24 +0000544 0 SampleClass.NestedClass.get
545 0 SampleClass.NestedClass.square
Tim Peters8485b562004-08-04 18:46:34 +0000546 1 SampleClass.__init__
Tim Peters8485b562004-08-04 18:46:34 +0000547 2 SampleClass.a_classmethod
548 1 SampleClass.a_property
549 1 SampleClass.a_staticmethod
550 1 SampleClass.double
551 1 SampleClass.get
552
Tim Peters8485b562004-08-04 18:46:34 +0000553Turning off Recursion
554~~~~~~~~~~~~~~~~~~~~~
555DocTestFinder can be told not to look for tests in contained objects
556using the `recurse` flag:
557
558 >>> tests = doctest.DocTestFinder(recurse=False).find(SampleClass)
Tim Peters8485b562004-08-04 18:46:34 +0000559 >>> for t in tests:
Guido van Rossum7131f842007-02-09 20:13:25 +0000560 ... print('%2s %s' % (len(t.examples), t.name))
Edward Loper4ae900f2004-09-21 03:20:34 +0000561 3 SampleClass
Edward Loperb51b2342004-08-17 16:37:12 +0000562
563Line numbers
564~~~~~~~~~~~~
565DocTestFinder finds the line number of each example:
566
567 >>> def f(x):
568 ... '''
569 ... >>> x = 12
570 ...
571 ... some text
572 ...
573 ... >>> # examples are not created for comments & bare prompts.
574 ... >>>
575 ... ...
576 ...
577 ... >>> for x in range(10):
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000578 ... ... print(x, end=' ')
Guido van Rossumd8faa362007-04-27 19:54:29 +0000579 ... 0 1 2 3 4 5 6 7 8 9
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000580 ... >>> x//2
581 ... 6
Edward Loperb51b2342004-08-17 16:37:12 +0000582 ... '''
583 >>> test = doctest.DocTestFinder().find(f)[0]
584 >>> [e.lineno for e in test.examples]
585 [1, 9, 12]
Tim Peters8485b562004-08-04 18:46:34 +0000586"""
587
Edward Loper00f8da72004-08-26 18:05:07 +0000588def test_DocTestParser(): r"""
589Unit tests for the `DocTestParser` class.
590
591DocTestParser is used to parse docstrings containing doctest examples.
592
593The `parse` method divides a docstring into examples and intervening
594text:
595
596 >>> s = '''
597 ... >>> x, y = 2, 3 # no output expected
598 ... >>> if 1:
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000599 ... ... print(x)
600 ... ... print(y)
Edward Loper00f8da72004-08-26 18:05:07 +0000601 ... 2
602 ... 3
603 ...
604 ... Some text.
605 ... >>> x+y
606 ... 5
607 ... '''
608 >>> parser = doctest.DocTestParser()
609 >>> for piece in parser.parse(s):
610 ... if isinstance(piece, doctest.Example):
Guido van Rossum7131f842007-02-09 20:13:25 +0000611 ... print('Example:', (piece.source, piece.want, piece.lineno))
Edward Loper00f8da72004-08-26 18:05:07 +0000612 ... else:
Guido van Rossum7131f842007-02-09 20:13:25 +0000613 ... print(' Text:', repr(piece))
Edward Loper00f8da72004-08-26 18:05:07 +0000614 Text: '\n'
615 Example: ('x, y = 2, 3 # no output expected\n', '', 1)
616 Text: ''
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000617 Example: ('if 1:\n print(x)\n print(y)\n', '2\n3\n', 2)
Edward Loper00f8da72004-08-26 18:05:07 +0000618 Text: '\nSome text.\n'
619 Example: ('x+y\n', '5\n', 9)
620 Text: ''
621
622The `get_examples` method returns just the examples:
623
624 >>> for piece in parser.get_examples(s):
Guido van Rossum7131f842007-02-09 20:13:25 +0000625 ... print((piece.source, piece.want, piece.lineno))
Edward Loper00f8da72004-08-26 18:05:07 +0000626 ('x, y = 2, 3 # no output expected\n', '', 1)
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000627 ('if 1:\n print(x)\n print(y)\n', '2\n3\n', 2)
Edward Loper00f8da72004-08-26 18:05:07 +0000628 ('x+y\n', '5\n', 9)
629
630The `get_doctest` method creates a Test from the examples, along with the
631given arguments:
632
633 >>> test = parser.get_doctest(s, {}, 'name', 'filename', lineno=5)
634 >>> (test.name, test.filename, test.lineno)
635 ('name', 'filename', 5)
636 >>> for piece in test.examples:
Guido van Rossum7131f842007-02-09 20:13:25 +0000637 ... print((piece.source, piece.want, piece.lineno))
Edward Loper00f8da72004-08-26 18:05:07 +0000638 ('x, y = 2, 3 # no output expected\n', '', 1)
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000639 ('if 1:\n print(x)\n print(y)\n', '2\n3\n', 2)
Edward Loper00f8da72004-08-26 18:05:07 +0000640 ('x+y\n', '5\n', 9)
641"""
642
Tim Peters8485b562004-08-04 18:46:34 +0000643class test_DocTestRunner:
644 def basics(): r"""
645Unit tests for the `DocTestRunner` class.
646
647DocTestRunner is used to run DocTest test cases, and to accumulate
648statistics. Here's a simple DocTest case we can use:
649
650 >>> def f(x):
651 ... '''
652 ... >>> x = 12
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000653 ... >>> print(x)
Tim Peters8485b562004-08-04 18:46:34 +0000654 ... 12
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000655 ... >>> x//2
656 ... 6
Tim Peters8485b562004-08-04 18:46:34 +0000657 ... '''
658 >>> test = doctest.DocTestFinder().find(f)[0]
659
660The main DocTestRunner interface is the `run` method, which runs a
661given DocTest case in a given namespace (globs). It returns a tuple
662`(f,t)`, where `f` is the number of failed tests and `t` is the number
663of tried tests.
664
665 >>> doctest.DocTestRunner(verbose=False).run(test)
Christian Heimes25bb7832008-01-11 16:17:00 +0000666 TestResults(failed=0, attempted=3)
Tim Peters8485b562004-08-04 18:46:34 +0000667
668If any example produces incorrect output, then the test runner reports
669the failure and proceeds to the next example:
670
671 >>> def f(x):
672 ... '''
673 ... >>> x = 12
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000674 ... >>> print(x)
Tim Peters8485b562004-08-04 18:46:34 +0000675 ... 14
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000676 ... >>> x//2
677 ... 6
Tim Peters8485b562004-08-04 18:46:34 +0000678 ... '''
679 >>> test = doctest.DocTestFinder().find(f)[0]
680 >>> doctest.DocTestRunner(verbose=True).run(test)
Tim Peters17b56372004-09-11 17:33:27 +0000681 ... # doctest: +ELLIPSIS
Edward Loperaacf0832004-08-26 01:19:50 +0000682 Trying:
683 x = 12
684 Expecting nothing
Tim Peters8485b562004-08-04 18:46:34 +0000685 ok
Edward Loperaacf0832004-08-26 01:19:50 +0000686 Trying:
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000687 print(x)
Edward Loperaacf0832004-08-26 01:19:50 +0000688 Expecting:
689 14
Tim Peters8485b562004-08-04 18:46:34 +0000690 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +0000691 File ..., line 4, in f
Jim Fulton07a349c2004-08-22 14:10:00 +0000692 Failed example:
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000693 print(x)
Jim Fulton07a349c2004-08-22 14:10:00 +0000694 Expected:
695 14
696 Got:
697 12
Edward Loperaacf0832004-08-26 01:19:50 +0000698 Trying:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000699 x//2
Edward Loperaacf0832004-08-26 01:19:50 +0000700 Expecting:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000701 6
Tim Peters8485b562004-08-04 18:46:34 +0000702 ok
Christian Heimes25bb7832008-01-11 16:17:00 +0000703 TestResults(failed=1, attempted=3)
Tim Peters8485b562004-08-04 18:46:34 +0000704"""
705 def verbose_flag(): r"""
706The `verbose` flag makes the test runner generate more detailed
707output:
708
709 >>> def f(x):
710 ... '''
711 ... >>> x = 12
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000712 ... >>> print(x)
Tim Peters8485b562004-08-04 18:46:34 +0000713 ... 12
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000714 ... >>> x//2
715 ... 6
Tim Peters8485b562004-08-04 18:46:34 +0000716 ... '''
717 >>> test = doctest.DocTestFinder().find(f)[0]
718
719 >>> doctest.DocTestRunner(verbose=True).run(test)
Edward Loperaacf0832004-08-26 01:19:50 +0000720 Trying:
721 x = 12
722 Expecting nothing
Tim Peters8485b562004-08-04 18:46:34 +0000723 ok
Edward Loperaacf0832004-08-26 01:19:50 +0000724 Trying:
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000725 print(x)
Edward Loperaacf0832004-08-26 01:19:50 +0000726 Expecting:
727 12
Tim Peters8485b562004-08-04 18:46:34 +0000728 ok
Edward Loperaacf0832004-08-26 01:19:50 +0000729 Trying:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000730 x//2
Edward Loperaacf0832004-08-26 01:19:50 +0000731 Expecting:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000732 6
Tim Peters8485b562004-08-04 18:46:34 +0000733 ok
Christian Heimes25bb7832008-01-11 16:17:00 +0000734 TestResults(failed=0, attempted=3)
Tim Peters8485b562004-08-04 18:46:34 +0000735
736If the `verbose` flag is unspecified, then the output will be verbose
737iff `-v` appears in sys.argv:
738
739 >>> # Save the real sys.argv list.
740 >>> old_argv = sys.argv
741
742 >>> # If -v does not appear in sys.argv, then output isn't verbose.
743 >>> sys.argv = ['test']
744 >>> doctest.DocTestRunner().run(test)
Christian Heimes25bb7832008-01-11 16:17:00 +0000745 TestResults(failed=0, attempted=3)
Tim Peters8485b562004-08-04 18:46:34 +0000746
747 >>> # If -v does appear in sys.argv, then output is verbose.
748 >>> sys.argv = ['test', '-v']
749 >>> doctest.DocTestRunner().run(test)
Edward Loperaacf0832004-08-26 01:19:50 +0000750 Trying:
751 x = 12
752 Expecting nothing
Tim Peters8485b562004-08-04 18:46:34 +0000753 ok
Edward Loperaacf0832004-08-26 01:19:50 +0000754 Trying:
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000755 print(x)
Edward Loperaacf0832004-08-26 01:19:50 +0000756 Expecting:
757 12
Tim Peters8485b562004-08-04 18:46:34 +0000758 ok
Edward Loperaacf0832004-08-26 01:19:50 +0000759 Trying:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000760 x//2
Edward Loperaacf0832004-08-26 01:19:50 +0000761 Expecting:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000762 6
Tim Peters8485b562004-08-04 18:46:34 +0000763 ok
Christian Heimes25bb7832008-01-11 16:17:00 +0000764 TestResults(failed=0, attempted=3)
Tim Peters8485b562004-08-04 18:46:34 +0000765
766 >>> # Restore sys.argv
767 >>> sys.argv = old_argv
768
769In the remaining examples, the test runner's verbosity will be
770explicitly set, to ensure that the test behavior is consistent.
771 """
772 def exceptions(): r"""
773Tests of `DocTestRunner`'s exception handling.
774
775An expected exception is specified with a traceback message. The
776lines between the first line and the type/value may be omitted or
777replaced with any other string:
778
779 >>> def f(x):
780 ... '''
781 ... >>> x = 12
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000782 ... >>> print(x//0)
Tim Peters8485b562004-08-04 18:46:34 +0000783 ... Traceback (most recent call last):
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000784 ... ZeroDivisionError: integer division or modulo by zero
Tim Peters8485b562004-08-04 18:46:34 +0000785 ... '''
786 >>> test = doctest.DocTestFinder().find(f)[0]
787 >>> doctest.DocTestRunner(verbose=False).run(test)
Christian Heimes25bb7832008-01-11 16:17:00 +0000788 TestResults(failed=0, attempted=2)
Tim Peters8485b562004-08-04 18:46:34 +0000789
Edward Loper19b19582004-08-25 23:07:03 +0000790An example may not generate output before it raises an exception; if
791it does, then the traceback message will not be recognized as
792signaling an expected exception, so the example will be reported as an
793unexpected exception:
Tim Peters8485b562004-08-04 18:46:34 +0000794
795 >>> def f(x):
796 ... '''
797 ... >>> x = 12
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000798 ... >>> print('pre-exception output', x//0)
Tim Peters8485b562004-08-04 18:46:34 +0000799 ... pre-exception output
800 ... Traceback (most recent call last):
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000801 ... ZeroDivisionError: integer division or modulo by zero
Tim Peters8485b562004-08-04 18:46:34 +0000802 ... '''
803 >>> test = doctest.DocTestFinder().find(f)[0]
804 >>> doctest.DocTestRunner(verbose=False).run(test)
Edward Loper19b19582004-08-25 23:07:03 +0000805 ... # doctest: +ELLIPSIS
806 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +0000807 File ..., line 4, in f
Edward Loper19b19582004-08-25 23:07:03 +0000808 Failed example:
Guido van Rossumbdc36e42007-02-09 22:43:47 +0000809 print('pre-exception output', x//0)
Edward Loper19b19582004-08-25 23:07:03 +0000810 Exception raised:
811 ...
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000812 ZeroDivisionError: integer division or modulo by zero
Christian Heimes25bb7832008-01-11 16:17:00 +0000813 TestResults(failed=1, attempted=2)
Tim Peters8485b562004-08-04 18:46:34 +0000814
815Exception messages may contain newlines:
816
817 >>> def f(x):
818 ... r'''
Collin Winter3add4d72007-08-29 23:37:32 +0000819 ... >>> raise ValueError('multi\nline\nmessage')
Tim Peters8485b562004-08-04 18:46:34 +0000820 ... Traceback (most recent call last):
821 ... ValueError: multi
822 ... line
823 ... message
824 ... '''
825 >>> test = doctest.DocTestFinder().find(f)[0]
826 >>> doctest.DocTestRunner(verbose=False).run(test)
Christian Heimes25bb7832008-01-11 16:17:00 +0000827 TestResults(failed=0, attempted=1)
Tim Peters8485b562004-08-04 18:46:34 +0000828
829If an exception is expected, but an exception with the wrong type or
830message is raised, then it is reported as a failure:
831
832 >>> def f(x):
833 ... r'''
Collin Winter3add4d72007-08-29 23:37:32 +0000834 ... >>> raise ValueError('message')
Tim Peters8485b562004-08-04 18:46:34 +0000835 ... Traceback (most recent call last):
836 ... ValueError: wrong message
837 ... '''
838 >>> test = doctest.DocTestFinder().find(f)[0]
839 >>> doctest.DocTestRunner(verbose=False).run(test)
Edward Loper8e4a34b2004-08-12 02:34:27 +0000840 ... # doctest: +ELLIPSIS
Tim Peters8485b562004-08-04 18:46:34 +0000841 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +0000842 File ..., line 3, in f
Jim Fulton07a349c2004-08-22 14:10:00 +0000843 Failed example:
Collin Winter3add4d72007-08-29 23:37:32 +0000844 raise ValueError('message')
Tim Peters8485b562004-08-04 18:46:34 +0000845 Expected:
846 Traceback (most recent call last):
847 ValueError: wrong message
848 Got:
849 Traceback (most recent call last):
Edward Loper8e4a34b2004-08-12 02:34:27 +0000850 ...
Tim Peters8485b562004-08-04 18:46:34 +0000851 ValueError: message
Christian Heimes25bb7832008-01-11 16:17:00 +0000852 TestResults(failed=1, attempted=1)
Tim Peters8485b562004-08-04 18:46:34 +0000853
Tim Peters1fbf9c52004-09-04 17:21:02 +0000854However, IGNORE_EXCEPTION_DETAIL can be used to allow a mismatch in the
855detail:
856
857 >>> def f(x):
858 ... r'''
Collin Winter3add4d72007-08-29 23:37:32 +0000859 ... >>> raise ValueError('message') #doctest: +IGNORE_EXCEPTION_DETAIL
Tim Peters1fbf9c52004-09-04 17:21:02 +0000860 ... Traceback (most recent call last):
861 ... ValueError: wrong message
862 ... '''
863 >>> test = doctest.DocTestFinder().find(f)[0]
864 >>> doctest.DocTestRunner(verbose=False).run(test)
Christian Heimes25bb7832008-01-11 16:17:00 +0000865 TestResults(failed=0, attempted=1)
Tim Peters1fbf9c52004-09-04 17:21:02 +0000866
Nick Coghlan5e76e942010-06-12 13:42:46 +0000867IGNORE_EXCEPTION_DETAIL also ignores difference in exception formatting
868between Python versions. For example, in Python 2.x, the module path of
869the exception is not in the output, but this will fail under Python 3:
870
871 >>> def f(x):
872 ... r'''
873 ... >>> from http.client import HTTPException
874 ... >>> raise HTTPException('message')
875 ... Traceback (most recent call last):
876 ... HTTPException: message
877 ... '''
878 >>> test = doctest.DocTestFinder().find(f)[0]
879 >>> doctest.DocTestRunner(verbose=False).run(test)
880 ... # doctest: +ELLIPSIS
881 **********************************************************************
882 File ..., line 4, in f
883 Failed example:
884 raise HTTPException('message')
885 Expected:
886 Traceback (most recent call last):
887 HTTPException: message
888 Got:
889 Traceback (most recent call last):
890 ...
891 http.client.HTTPException: message
892 TestResults(failed=1, attempted=2)
893
894But in Python 3 the module path is included, and therefore a test must look
895like the following test to succeed in Python 3. But that test will fail under
896Python 2.
897
898 >>> def f(x):
899 ... r'''
900 ... >>> from http.client import HTTPException
901 ... >>> raise HTTPException('message')
902 ... Traceback (most recent call last):
903 ... http.client.HTTPException: message
904 ... '''
905 >>> test = doctest.DocTestFinder().find(f)[0]
906 >>> doctest.DocTestRunner(verbose=False).run(test)
907 TestResults(failed=0, attempted=2)
908
909However, with IGNORE_EXCEPTION_DETAIL, the module name of the exception
910(or its unexpected absence) will be ignored:
911
912 >>> def f(x):
913 ... r'''
914 ... >>> from http.client import HTTPException
915 ... >>> raise HTTPException('message') #doctest: +IGNORE_EXCEPTION_DETAIL
916 ... Traceback (most recent call last):
917 ... HTTPException: message
918 ... '''
919 >>> test = doctest.DocTestFinder().find(f)[0]
920 >>> doctest.DocTestRunner(verbose=False).run(test)
921 TestResults(failed=0, attempted=2)
922
923The module path will be completely ignored, so two different module paths will
924still pass if IGNORE_EXCEPTION_DETAIL is given. This is intentional, so it can
925be used when exceptions have changed module.
926
927 >>> def f(x):
928 ... r'''
929 ... >>> from http.client import HTTPException
930 ... >>> raise HTTPException('message') #doctest: +IGNORE_EXCEPTION_DETAIL
931 ... Traceback (most recent call last):
932 ... foo.bar.HTTPException: message
933 ... '''
934 >>> test = doctest.DocTestFinder().find(f)[0]
935 >>> doctest.DocTestRunner(verbose=False).run(test)
936 TestResults(failed=0, attempted=2)
937
Tim Peters1fbf9c52004-09-04 17:21:02 +0000938But IGNORE_EXCEPTION_DETAIL does not allow a mismatch in the exception type:
939
940 >>> def f(x):
941 ... r'''
Collin Winter3add4d72007-08-29 23:37:32 +0000942 ... >>> raise ValueError('message') #doctest: +IGNORE_EXCEPTION_DETAIL
Tim Peters1fbf9c52004-09-04 17:21:02 +0000943 ... Traceback (most recent call last):
944 ... TypeError: wrong type
945 ... '''
946 >>> test = doctest.DocTestFinder().find(f)[0]
947 >>> doctest.DocTestRunner(verbose=False).run(test)
948 ... # doctest: +ELLIPSIS
949 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +0000950 File ..., line 3, in f
Tim Peters1fbf9c52004-09-04 17:21:02 +0000951 Failed example:
Collin Winter3add4d72007-08-29 23:37:32 +0000952 raise ValueError('message') #doctest: +IGNORE_EXCEPTION_DETAIL
Tim Peters1fbf9c52004-09-04 17:21:02 +0000953 Expected:
954 Traceback (most recent call last):
955 TypeError: wrong type
956 Got:
957 Traceback (most recent call last):
958 ...
959 ValueError: message
Christian Heimes25bb7832008-01-11 16:17:00 +0000960 TestResults(failed=1, attempted=1)
Tim Peters1fbf9c52004-09-04 17:21:02 +0000961
Tim Peters8485b562004-08-04 18:46:34 +0000962If an exception is raised but not expected, then it is reported as an
963unexpected exception:
964
Tim Peters8485b562004-08-04 18:46:34 +0000965 >>> def f(x):
966 ... r'''
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000967 ... >>> 1//0
Tim Peters8485b562004-08-04 18:46:34 +0000968 ... 0
969 ... '''
970 >>> test = doctest.DocTestFinder().find(f)[0]
971 >>> doctest.DocTestRunner(verbose=False).run(test)
Edward Loper74bca7a2004-08-12 02:27:44 +0000972 ... # doctest: +ELLIPSIS
Tim Peters8485b562004-08-04 18:46:34 +0000973 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +0000974 File ..., line 3, in f
Jim Fulton07a349c2004-08-22 14:10:00 +0000975 Failed example:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000976 1//0
Tim Peters8485b562004-08-04 18:46:34 +0000977 Exception raised:
978 Traceback (most recent call last):
Jim Fulton07a349c2004-08-22 14:10:00 +0000979 ...
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000980 ZeroDivisionError: integer division or modulo by zero
Christian Heimes25bb7832008-01-11 16:17:00 +0000981 TestResults(failed=1, attempted=1)
Tim Peters8485b562004-08-04 18:46:34 +0000982"""
983 def optionflags(): r"""
984Tests of `DocTestRunner`'s option flag handling.
985
986Several option flags can be used to customize the behavior of the test
987runner. These are defined as module constants in doctest, and passed
Christian Heimesfaf2f632008-01-06 16:59:19 +0000988to the DocTestRunner constructor (multiple constants should be ORed
Tim Peters8485b562004-08-04 18:46:34 +0000989together).
990
991The DONT_ACCEPT_TRUE_FOR_1 flag disables matches between True/False
992and 1/0:
993
994 >>> def f(x):
995 ... '>>> True\n1\n'
996
997 >>> # Without the flag:
998 >>> test = doctest.DocTestFinder().find(f)[0]
999 >>> doctest.DocTestRunner(verbose=False).run(test)
Christian Heimes25bb7832008-01-11 16:17:00 +00001000 TestResults(failed=0, attempted=1)
Tim Peters8485b562004-08-04 18:46:34 +00001001
1002 >>> # With the flag:
1003 >>> test = doctest.DocTestFinder().find(f)[0]
1004 >>> flags = doctest.DONT_ACCEPT_TRUE_FOR_1
1005 >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001006 ... # doctest: +ELLIPSIS
Tim Peters8485b562004-08-04 18:46:34 +00001007 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001008 File ..., line 2, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001009 Failed example:
1010 True
1011 Expected:
1012 1
1013 Got:
1014 True
Christian Heimes25bb7832008-01-11 16:17:00 +00001015 TestResults(failed=1, attempted=1)
Tim Peters8485b562004-08-04 18:46:34 +00001016
1017The DONT_ACCEPT_BLANKLINE flag disables the match between blank lines
1018and the '<BLANKLINE>' marker:
1019
1020 >>> def f(x):
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001021 ... '>>> print("a\\n\\nb")\na\n<BLANKLINE>\nb\n'
Tim Peters8485b562004-08-04 18:46:34 +00001022
1023 >>> # Without the flag:
1024 >>> test = doctest.DocTestFinder().find(f)[0]
1025 >>> doctest.DocTestRunner(verbose=False).run(test)
Christian Heimes25bb7832008-01-11 16:17:00 +00001026 TestResults(failed=0, attempted=1)
Tim Peters8485b562004-08-04 18:46:34 +00001027
1028 >>> # With the flag:
1029 >>> test = doctest.DocTestFinder().find(f)[0]
1030 >>> flags = doctest.DONT_ACCEPT_BLANKLINE
1031 >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001032 ... # doctest: +ELLIPSIS
Tim Peters8485b562004-08-04 18:46:34 +00001033 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001034 File ..., line 2, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001035 Failed example:
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001036 print("a\n\nb")
Tim Peters8485b562004-08-04 18:46:34 +00001037 Expected:
1038 a
1039 <BLANKLINE>
1040 b
1041 Got:
1042 a
1043 <BLANKLINE>
1044 b
Christian Heimes25bb7832008-01-11 16:17:00 +00001045 TestResults(failed=1, attempted=1)
Tim Peters8485b562004-08-04 18:46:34 +00001046
1047The NORMALIZE_WHITESPACE flag causes all sequences of whitespace to be
1048treated as equal:
1049
1050 >>> def f(x):
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001051 ... '>>> print(1, 2, 3)\n 1 2\n 3'
Tim Peters8485b562004-08-04 18:46:34 +00001052
1053 >>> # Without the flag:
1054 >>> test = doctest.DocTestFinder().find(f)[0]
1055 >>> doctest.DocTestRunner(verbose=False).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001056 ... # doctest: +ELLIPSIS
Tim Peters8485b562004-08-04 18:46:34 +00001057 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001058 File ..., line 2, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001059 Failed example:
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001060 print(1, 2, 3)
Tim Peters8485b562004-08-04 18:46:34 +00001061 Expected:
1062 1 2
1063 3
Jim Fulton07a349c2004-08-22 14:10:00 +00001064 Got:
1065 1 2 3
Christian Heimes25bb7832008-01-11 16:17:00 +00001066 TestResults(failed=1, attempted=1)
Tim Peters8485b562004-08-04 18:46:34 +00001067
1068 >>> # With the flag:
1069 >>> test = doctest.DocTestFinder().find(f)[0]
1070 >>> flags = doctest.NORMALIZE_WHITESPACE
1071 >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
Christian Heimes25bb7832008-01-11 16:17:00 +00001072 TestResults(failed=0, attempted=1)
Tim Peters8485b562004-08-04 18:46:34 +00001073
Tim Peters026f8dc2004-08-19 16:38:58 +00001074 An example from the docs:
Guido van Rossum805365e2007-05-07 22:24:25 +00001075 >>> print(list(range(20))) #doctest: +NORMALIZE_WHITESPACE
Tim Peters026f8dc2004-08-19 16:38:58 +00001076 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
1077 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
1078
Tim Peters8485b562004-08-04 18:46:34 +00001079The ELLIPSIS flag causes ellipsis marker ("...") in the expected
1080output to match any substring in the actual output:
1081
1082 >>> def f(x):
Guido van Rossum805365e2007-05-07 22:24:25 +00001083 ... '>>> print(list(range(15)))\n[0, 1, 2, ..., 14]\n'
Tim Peters8485b562004-08-04 18:46:34 +00001084
1085 >>> # Without the flag:
1086 >>> test = doctest.DocTestFinder().find(f)[0]
1087 >>> doctest.DocTestRunner(verbose=False).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001088 ... # doctest: +ELLIPSIS
Tim Peters8485b562004-08-04 18:46:34 +00001089 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001090 File ..., line 2, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001091 Failed example:
Guido van Rossum805365e2007-05-07 22:24:25 +00001092 print(list(range(15)))
Jim Fulton07a349c2004-08-22 14:10:00 +00001093 Expected:
1094 [0, 1, 2, ..., 14]
1095 Got:
1096 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
Christian Heimes25bb7832008-01-11 16:17:00 +00001097 TestResults(failed=1, attempted=1)
Tim Peters8485b562004-08-04 18:46:34 +00001098
1099 >>> # With the flag:
1100 >>> test = doctest.DocTestFinder().find(f)[0]
1101 >>> flags = doctest.ELLIPSIS
1102 >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
Christian Heimes25bb7832008-01-11 16:17:00 +00001103 TestResults(failed=0, attempted=1)
Tim Peters8485b562004-08-04 18:46:34 +00001104
Tim Peterse594bee2004-08-22 01:47:51 +00001105 ... also matches nothing:
Tim Peters1cf3aa62004-08-19 06:49:33 +00001106
Guido van Rossume0192e52007-02-09 23:39:59 +00001107 >>> if 1:
1108 ... for i in range(100):
1109 ... print(i**2, end=' ') #doctest: +ELLIPSIS
1110 ... print('!')
1111 0 1...4...9 16 ... 36 49 64 ... 9801 !
Tim Peters1cf3aa62004-08-19 06:49:33 +00001112
Tim Peters026f8dc2004-08-19 16:38:58 +00001113 ... can be surprising; e.g., this test passes:
Tim Peters26b3ebb2004-08-19 08:10:08 +00001114
Guido van Rossume0192e52007-02-09 23:39:59 +00001115 >>> if 1: #doctest: +ELLIPSIS
1116 ... for i in range(20):
1117 ... print(i, end=' ')
1118 ... print(20)
Tim Peterse594bee2004-08-22 01:47:51 +00001119 0 1 2 ...1...2...0
Tim Peters26b3ebb2004-08-19 08:10:08 +00001120
Tim Peters026f8dc2004-08-19 16:38:58 +00001121 Examples from the docs:
1122
Guido van Rossum805365e2007-05-07 22:24:25 +00001123 >>> print(list(range(20))) # doctest:+ELLIPSIS
Tim Peters026f8dc2004-08-19 16:38:58 +00001124 [0, 1, ..., 18, 19]
1125
Guido van Rossum805365e2007-05-07 22:24:25 +00001126 >>> print(list(range(20))) # doctest: +ELLIPSIS
Tim Peters026f8dc2004-08-19 16:38:58 +00001127 ... # doctest: +NORMALIZE_WHITESPACE
1128 [0, 1, ..., 18, 19]
1129
Thomas Wouters477c8d52006-05-27 19:21:47 +00001130The SKIP flag causes an example to be skipped entirely. I.e., the
1131example is not run. It can be useful in contexts where doctest
1132examples serve as both documentation and test cases, and an example
1133should be included for documentation purposes, but should not be
1134checked (e.g., because its output is random, or depends on resources
1135which would be unavailable.) The SKIP flag can also be used for
1136'commenting out' broken examples.
1137
1138 >>> import unavailable_resource # doctest: +SKIP
1139 >>> unavailable_resource.do_something() # doctest: +SKIP
1140 >>> unavailable_resource.blow_up() # doctest: +SKIP
1141 Traceback (most recent call last):
1142 ...
1143 UncheckedBlowUpError: Nobody checks me.
1144
1145 >>> import random
Guido van Rossum7131f842007-02-09 20:13:25 +00001146 >>> print(random.random()) # doctest: +SKIP
Thomas Wouters477c8d52006-05-27 19:21:47 +00001147 0.721216923889
1148
Edward Loper71f55af2004-08-26 01:41:51 +00001149The REPORT_UDIFF flag causes failures that involve multi-line expected
Tim Peters8485b562004-08-04 18:46:34 +00001150and actual outputs to be displayed using a unified diff:
1151
1152 >>> def f(x):
1153 ... r'''
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001154 ... >>> print('\n'.join('abcdefg'))
Tim Peters8485b562004-08-04 18:46:34 +00001155 ... a
1156 ... B
1157 ... c
1158 ... d
1159 ... f
1160 ... g
1161 ... h
1162 ... '''
1163
1164 >>> # Without the flag:
1165 >>> test = doctest.DocTestFinder().find(f)[0]
1166 >>> doctest.DocTestRunner(verbose=False).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001167 ... # doctest: +ELLIPSIS
Tim Peters8485b562004-08-04 18:46:34 +00001168 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001169 File ..., line 3, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001170 Failed example:
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001171 print('\n'.join('abcdefg'))
Tim Peters8485b562004-08-04 18:46:34 +00001172 Expected:
1173 a
1174 B
1175 c
1176 d
1177 f
1178 g
1179 h
1180 Got:
1181 a
1182 b
1183 c
1184 d
1185 e
1186 f
1187 g
Christian Heimes25bb7832008-01-11 16:17:00 +00001188 TestResults(failed=1, attempted=1)
Tim Peters8485b562004-08-04 18:46:34 +00001189
1190 >>> # With the flag:
1191 >>> test = doctest.DocTestFinder().find(f)[0]
Edward Loper71f55af2004-08-26 01:41:51 +00001192 >>> flags = doctest.REPORT_UDIFF
Tim Peters8485b562004-08-04 18:46:34 +00001193 >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001194 ... # doctest: +ELLIPSIS
Tim Peters8485b562004-08-04 18:46:34 +00001195 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001196 File ..., line 3, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001197 Failed example:
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001198 print('\n'.join('abcdefg'))
Edward Loper56629292004-08-26 01:31:56 +00001199 Differences (unified diff with -expected +actual):
Tim Peterse7edcb82004-08-26 05:44:27 +00001200 @@ -1,7 +1,7 @@
Tim Peters8485b562004-08-04 18:46:34 +00001201 a
1202 -B
1203 +b
1204 c
1205 d
1206 +e
1207 f
1208 g
1209 -h
Christian Heimes25bb7832008-01-11 16:17:00 +00001210 TestResults(failed=1, attempted=1)
Tim Peters8485b562004-08-04 18:46:34 +00001211
Edward Loper71f55af2004-08-26 01:41:51 +00001212The REPORT_CDIFF flag causes failures that involve multi-line expected
Tim Peters8485b562004-08-04 18:46:34 +00001213and actual outputs to be displayed using a context diff:
1214
Edward Loper71f55af2004-08-26 01:41:51 +00001215 >>> # Reuse f() from the REPORT_UDIFF example, above.
Tim Peters8485b562004-08-04 18:46:34 +00001216 >>> test = doctest.DocTestFinder().find(f)[0]
Edward Loper71f55af2004-08-26 01:41:51 +00001217 >>> flags = doctest.REPORT_CDIFF
Tim Peters8485b562004-08-04 18:46:34 +00001218 >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001219 ... # doctest: +ELLIPSIS
Tim Peters8485b562004-08-04 18:46:34 +00001220 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001221 File ..., line 3, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001222 Failed example:
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001223 print('\n'.join('abcdefg'))
Edward Loper56629292004-08-26 01:31:56 +00001224 Differences (context diff with expected followed by actual):
Tim Peters8485b562004-08-04 18:46:34 +00001225 ***************
Tim Peterse7edcb82004-08-26 05:44:27 +00001226 *** 1,7 ****
Tim Peters8485b562004-08-04 18:46:34 +00001227 a
1228 ! B
1229 c
1230 d
1231 f
1232 g
1233 - h
Tim Peterse7edcb82004-08-26 05:44:27 +00001234 --- 1,7 ----
Tim Peters8485b562004-08-04 18:46:34 +00001235 a
1236 ! b
1237 c
1238 d
1239 + e
1240 f
1241 g
Christian Heimes25bb7832008-01-11 16:17:00 +00001242 TestResults(failed=1, attempted=1)
Tim Petersc6cbab02004-08-22 19:43:28 +00001243
1244
Edward Loper71f55af2004-08-26 01:41:51 +00001245The REPORT_NDIFF flag causes failures to use the difflib.Differ algorithm
Tim Petersc6cbab02004-08-22 19:43:28 +00001246used by the popular ndiff.py utility. This does intraline difference
1247marking, as well as interline differences.
1248
1249 >>> def f(x):
1250 ... r'''
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001251 ... >>> print("a b c d e f g h i j k l m")
Tim Petersc6cbab02004-08-22 19:43:28 +00001252 ... a b c d e f g h i j k 1 m
1253 ... '''
1254 >>> test = doctest.DocTestFinder().find(f)[0]
Edward Loper71f55af2004-08-26 01:41:51 +00001255 >>> flags = doctest.REPORT_NDIFF
Tim Petersc6cbab02004-08-22 19:43:28 +00001256 >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001257 ... # doctest: +ELLIPSIS
Tim Petersc6cbab02004-08-22 19:43:28 +00001258 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001259 File ..., line 3, in f
Tim Petersc6cbab02004-08-22 19:43:28 +00001260 Failed example:
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001261 print("a b c d e f g h i j k l m")
Tim Petersc6cbab02004-08-22 19:43:28 +00001262 Differences (ndiff with -expected +actual):
1263 - a b c d e f g h i j k 1 m
1264 ? ^
1265 + a b c d e f g h i j k l m
1266 ? + ++ ^
Christian Heimes25bb7832008-01-11 16:17:00 +00001267 TestResults(failed=1, attempted=1)
Edward Lopera89f88d2004-08-26 02:45:51 +00001268
1269The REPORT_ONLY_FIRST_FAILURE supresses result output after the first
1270failing example:
1271
1272 >>> def f(x):
1273 ... r'''
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001274 ... >>> print(1) # first success
Edward Lopera89f88d2004-08-26 02:45:51 +00001275 ... 1
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001276 ... >>> print(2) # first failure
Edward Lopera89f88d2004-08-26 02:45:51 +00001277 ... 200
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001278 ... >>> print(3) # second failure
Edward Lopera89f88d2004-08-26 02:45:51 +00001279 ... 300
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001280 ... >>> print(4) # second success
Edward Lopera89f88d2004-08-26 02:45:51 +00001281 ... 4
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001282 ... >>> print(5) # third failure
Edward Lopera89f88d2004-08-26 02:45:51 +00001283 ... 500
1284 ... '''
1285 >>> test = doctest.DocTestFinder().find(f)[0]
1286 >>> flags = doctest.REPORT_ONLY_FIRST_FAILURE
1287 >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001288 ... # doctest: +ELLIPSIS
Edward Lopera89f88d2004-08-26 02:45:51 +00001289 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001290 File ..., line 5, in f
Edward Lopera89f88d2004-08-26 02:45:51 +00001291 Failed example:
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001292 print(2) # first failure
Edward Lopera89f88d2004-08-26 02:45:51 +00001293 Expected:
1294 200
1295 Got:
1296 2
Christian Heimes25bb7832008-01-11 16:17:00 +00001297 TestResults(failed=3, attempted=5)
Edward Lopera89f88d2004-08-26 02:45:51 +00001298
1299However, output from `report_start` is not supressed:
1300
1301 >>> doctest.DocTestRunner(verbose=True, optionflags=flags).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001302 ... # doctest: +ELLIPSIS
Edward Lopera89f88d2004-08-26 02:45:51 +00001303 Trying:
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001304 print(1) # first success
Edward Lopera89f88d2004-08-26 02:45:51 +00001305 Expecting:
1306 1
1307 ok
1308 Trying:
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001309 print(2) # first failure
Edward Lopera89f88d2004-08-26 02:45:51 +00001310 Expecting:
1311 200
1312 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001313 File ..., line 5, in f
Edward Lopera89f88d2004-08-26 02:45:51 +00001314 Failed example:
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001315 print(2) # first failure
Edward Lopera89f88d2004-08-26 02:45:51 +00001316 Expected:
1317 200
1318 Got:
1319 2
Christian Heimes25bb7832008-01-11 16:17:00 +00001320 TestResults(failed=3, attempted=5)
Edward Lopera89f88d2004-08-26 02:45:51 +00001321
1322For the purposes of REPORT_ONLY_FIRST_FAILURE, unexpected exceptions
1323count as failures:
1324
1325 >>> def f(x):
1326 ... r'''
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001327 ... >>> print(1) # first success
Edward Lopera89f88d2004-08-26 02:45:51 +00001328 ... 1
1329 ... >>> raise ValueError(2) # first failure
1330 ... 200
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001331 ... >>> print(3) # second failure
Edward Lopera89f88d2004-08-26 02:45:51 +00001332 ... 300
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001333 ... >>> print(4) # second success
Edward Lopera89f88d2004-08-26 02:45:51 +00001334 ... 4
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001335 ... >>> print(5) # third failure
Edward Lopera89f88d2004-08-26 02:45:51 +00001336 ... 500
1337 ... '''
1338 >>> test = doctest.DocTestFinder().find(f)[0]
1339 >>> flags = doctest.REPORT_ONLY_FIRST_FAILURE
1340 >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
1341 ... # doctest: +ELLIPSIS
1342 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001343 File ..., line 5, in f
Edward Lopera89f88d2004-08-26 02:45:51 +00001344 Failed example:
1345 raise ValueError(2) # first failure
1346 Exception raised:
1347 ...
1348 ValueError: 2
Christian Heimes25bb7832008-01-11 16:17:00 +00001349 TestResults(failed=3, attempted=5)
Edward Lopera89f88d2004-08-26 02:45:51 +00001350
Thomas Wouters477c8d52006-05-27 19:21:47 +00001351New option flags can also be registered, via register_optionflag(). Here
1352we reach into doctest's internals a bit.
1353
1354 >>> unlikely = "UNLIKELY_OPTION_NAME"
1355 >>> unlikely in doctest.OPTIONFLAGS_BY_NAME
1356 False
1357 >>> new_flag_value = doctest.register_optionflag(unlikely)
1358 >>> unlikely in doctest.OPTIONFLAGS_BY_NAME
1359 True
1360
1361Before 2.4.4/2.5, registering a name more than once erroneously created
1362more than one flag value. Here we verify that's fixed:
1363
1364 >>> redundant_flag_value = doctest.register_optionflag(unlikely)
1365 >>> redundant_flag_value == new_flag_value
1366 True
1367
1368Clean up.
1369 >>> del doctest.OPTIONFLAGS_BY_NAME[unlikely]
1370
Tim Petersc6cbab02004-08-22 19:43:28 +00001371 """
1372
Tim Peters8485b562004-08-04 18:46:34 +00001373 def option_directives(): r"""
1374Tests of `DocTestRunner`'s option directive mechanism.
1375
Edward Loper74bca7a2004-08-12 02:27:44 +00001376Option directives can be used to turn option flags on or off for a
1377single example. To turn an option on for an example, follow that
1378example with a comment of the form ``# doctest: +OPTION``:
Tim Peters8485b562004-08-04 18:46:34 +00001379
1380 >>> def f(x): r'''
Guido van Rossum805365e2007-05-07 22:24:25 +00001381 ... >>> print(list(range(10))) # should fail: no ellipsis
Edward Loper74bca7a2004-08-12 02:27:44 +00001382 ... [0, 1, ..., 9]
1383 ...
Guido van Rossum805365e2007-05-07 22:24:25 +00001384 ... >>> print(list(range(10))) # doctest: +ELLIPSIS
Edward Loper74bca7a2004-08-12 02:27:44 +00001385 ... [0, 1, ..., 9]
1386 ... '''
1387 >>> test = doctest.DocTestFinder().find(f)[0]
1388 >>> doctest.DocTestRunner(verbose=False).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001389 ... # doctest: +ELLIPSIS
Edward Loper74bca7a2004-08-12 02:27:44 +00001390 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001391 File ..., line 2, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001392 Failed example:
Guido van Rossum805365e2007-05-07 22:24:25 +00001393 print(list(range(10))) # should fail: no ellipsis
Jim Fulton07a349c2004-08-22 14:10:00 +00001394 Expected:
1395 [0, 1, ..., 9]
1396 Got:
1397 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Christian Heimes25bb7832008-01-11 16:17:00 +00001398 TestResults(failed=1, attempted=2)
Edward Loper74bca7a2004-08-12 02:27:44 +00001399
1400To turn an option off for an example, follow that example with a
1401comment of the form ``# doctest: -OPTION``:
1402
1403 >>> def f(x): r'''
Guido van Rossum805365e2007-05-07 22:24:25 +00001404 ... >>> print(list(range(10)))
Edward Loper74bca7a2004-08-12 02:27:44 +00001405 ... [0, 1, ..., 9]
1406 ...
1407 ... >>> # should fail: no ellipsis
Guido van Rossum805365e2007-05-07 22:24:25 +00001408 ... >>> print(list(range(10))) # doctest: -ELLIPSIS
Edward Loper74bca7a2004-08-12 02:27:44 +00001409 ... [0, 1, ..., 9]
1410 ... '''
1411 >>> test = doctest.DocTestFinder().find(f)[0]
1412 >>> doctest.DocTestRunner(verbose=False,
1413 ... optionflags=doctest.ELLIPSIS).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001414 ... # doctest: +ELLIPSIS
Edward Loper74bca7a2004-08-12 02:27:44 +00001415 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001416 File ..., line 6, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001417 Failed example:
Guido van Rossum805365e2007-05-07 22:24:25 +00001418 print(list(range(10))) # doctest: -ELLIPSIS
Jim Fulton07a349c2004-08-22 14:10:00 +00001419 Expected:
1420 [0, 1, ..., 9]
1421 Got:
1422 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Christian Heimes25bb7832008-01-11 16:17:00 +00001423 TestResults(failed=1, attempted=2)
Edward Loper74bca7a2004-08-12 02:27:44 +00001424
1425Option directives affect only the example that they appear with; they
1426do not change the options for surrounding examples:
Edward Loper8e4a34b2004-08-12 02:34:27 +00001427
Edward Loper74bca7a2004-08-12 02:27:44 +00001428 >>> def f(x): r'''
Guido van Rossum805365e2007-05-07 22:24:25 +00001429 ... >>> print(list(range(10))) # Should fail: no ellipsis
Tim Peters8485b562004-08-04 18:46:34 +00001430 ... [0, 1, ..., 9]
1431 ...
Guido van Rossum805365e2007-05-07 22:24:25 +00001432 ... >>> print(list(range(10))) # doctest: +ELLIPSIS
Tim Peters8485b562004-08-04 18:46:34 +00001433 ... [0, 1, ..., 9]
1434 ...
Guido van Rossum805365e2007-05-07 22:24:25 +00001435 ... >>> print(list(range(10))) # Should fail: no ellipsis
Tim Peters8485b562004-08-04 18:46:34 +00001436 ... [0, 1, ..., 9]
1437 ... '''
1438 >>> test = doctest.DocTestFinder().find(f)[0]
1439 >>> doctest.DocTestRunner(verbose=False).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001440 ... # doctest: +ELLIPSIS
Tim Peters8485b562004-08-04 18:46:34 +00001441 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001442 File ..., line 2, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001443 Failed example:
Guido van Rossum805365e2007-05-07 22:24:25 +00001444 print(list(range(10))) # Should fail: no ellipsis
Jim Fulton07a349c2004-08-22 14:10:00 +00001445 Expected:
1446 [0, 1, ..., 9]
1447 Got:
1448 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Tim Peters8485b562004-08-04 18:46:34 +00001449 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001450 File ..., line 8, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001451 Failed example:
Guido van Rossum805365e2007-05-07 22:24:25 +00001452 print(list(range(10))) # Should fail: no ellipsis
Jim Fulton07a349c2004-08-22 14:10:00 +00001453 Expected:
1454 [0, 1, ..., 9]
1455 Got:
1456 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Christian Heimes25bb7832008-01-11 16:17:00 +00001457 TestResults(failed=2, attempted=3)
Tim Peters8485b562004-08-04 18:46:34 +00001458
Edward Loper74bca7a2004-08-12 02:27:44 +00001459Multiple options may be modified by a single option directive. They
1460may be separated by whitespace, commas, or both:
Tim Peters8485b562004-08-04 18:46:34 +00001461
1462 >>> def f(x): r'''
Guido van Rossum805365e2007-05-07 22:24:25 +00001463 ... >>> print(list(range(10))) # Should fail
Tim Peters8485b562004-08-04 18:46:34 +00001464 ... [0, 1, ..., 9]
Guido van Rossum805365e2007-05-07 22:24:25 +00001465 ... >>> print(list(range(10))) # Should succeed
Edward Loper74bca7a2004-08-12 02:27:44 +00001466 ... ... # doctest: +ELLIPSIS +NORMALIZE_WHITESPACE
Tim Peters8485b562004-08-04 18:46:34 +00001467 ... [0, 1, ..., 9]
1468 ... '''
1469 >>> test = doctest.DocTestFinder().find(f)[0]
1470 >>> doctest.DocTestRunner(verbose=False).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001471 ... # doctest: +ELLIPSIS
Tim Peters8485b562004-08-04 18:46:34 +00001472 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001473 File ..., line 2, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001474 Failed example:
Guido van Rossum805365e2007-05-07 22:24:25 +00001475 print(list(range(10))) # Should fail
Jim Fulton07a349c2004-08-22 14:10:00 +00001476 Expected:
1477 [0, 1, ..., 9]
1478 Got:
1479 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Christian Heimes25bb7832008-01-11 16:17:00 +00001480 TestResults(failed=1, attempted=2)
Edward Loper74bca7a2004-08-12 02:27:44 +00001481
1482 >>> def f(x): r'''
Guido van Rossum805365e2007-05-07 22:24:25 +00001483 ... >>> print(list(range(10))) # Should fail
Edward Loper74bca7a2004-08-12 02:27:44 +00001484 ... [0, 1, ..., 9]
Guido van Rossum805365e2007-05-07 22:24:25 +00001485 ... >>> print(list(range(10))) # Should succeed
Edward Loper74bca7a2004-08-12 02:27:44 +00001486 ... ... # doctest: +ELLIPSIS,+NORMALIZE_WHITESPACE
1487 ... [0, 1, ..., 9]
1488 ... '''
1489 >>> test = doctest.DocTestFinder().find(f)[0]
1490 >>> doctest.DocTestRunner(verbose=False).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001491 ... # doctest: +ELLIPSIS
Edward Loper74bca7a2004-08-12 02:27:44 +00001492 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001493 File ..., line 2, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001494 Failed example:
Guido van Rossum805365e2007-05-07 22:24:25 +00001495 print(list(range(10))) # Should fail
Jim Fulton07a349c2004-08-22 14:10:00 +00001496 Expected:
1497 [0, 1, ..., 9]
1498 Got:
1499 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Christian Heimes25bb7832008-01-11 16:17:00 +00001500 TestResults(failed=1, attempted=2)
Edward Loper74bca7a2004-08-12 02:27:44 +00001501
1502 >>> def f(x): r'''
Guido van Rossum805365e2007-05-07 22:24:25 +00001503 ... >>> print(list(range(10))) # Should fail
Edward Loper74bca7a2004-08-12 02:27:44 +00001504 ... [0, 1, ..., 9]
Guido van Rossum805365e2007-05-07 22:24:25 +00001505 ... >>> print(list(range(10))) # Should succeed
Edward Loper74bca7a2004-08-12 02:27:44 +00001506 ... ... # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
1507 ... [0, 1, ..., 9]
1508 ... '''
1509 >>> test = doctest.DocTestFinder().find(f)[0]
1510 >>> doctest.DocTestRunner(verbose=False).run(test)
Tim Peters17b56372004-09-11 17:33:27 +00001511 ... # doctest: +ELLIPSIS
Edward Loper74bca7a2004-08-12 02:27:44 +00001512 **********************************************************************
Tim Peters17b56372004-09-11 17:33:27 +00001513 File ..., line 2, in f
Jim Fulton07a349c2004-08-22 14:10:00 +00001514 Failed example:
Guido van Rossum805365e2007-05-07 22:24:25 +00001515 print(list(range(10))) # Should fail
Jim Fulton07a349c2004-08-22 14:10:00 +00001516 Expected:
1517 [0, 1, ..., 9]
1518 Got:
1519 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Christian Heimes25bb7832008-01-11 16:17:00 +00001520 TestResults(failed=1, attempted=2)
Edward Loper74bca7a2004-08-12 02:27:44 +00001521
1522The option directive may be put on the line following the source, as
1523long as a continuation prompt is used:
1524
1525 >>> def f(x): r'''
Guido van Rossum805365e2007-05-07 22:24:25 +00001526 ... >>> print(list(range(10)))
Edward Loper74bca7a2004-08-12 02:27:44 +00001527 ... ... # doctest: +ELLIPSIS
1528 ... [0, 1, ..., 9]
1529 ... '''
1530 >>> test = doctest.DocTestFinder().find(f)[0]
1531 >>> doctest.DocTestRunner(verbose=False).run(test)
Christian Heimes25bb7832008-01-11 16:17:00 +00001532 TestResults(failed=0, attempted=1)
Edward Loper8e4a34b2004-08-12 02:34:27 +00001533
Edward Loper74bca7a2004-08-12 02:27:44 +00001534For examples with multi-line source, the option directive may appear
1535at the end of any line:
1536
1537 >>> def f(x): r'''
1538 ... >>> for x in range(10): # doctest: +ELLIPSIS
Guido van Rossum805365e2007-05-07 22:24:25 +00001539 ... ... print(' ', x, end='', sep='')
1540 ... 0 1 2 ... 9
Edward Loper74bca7a2004-08-12 02:27:44 +00001541 ...
1542 ... >>> for x in range(10):
Guido van Rossum805365e2007-05-07 22:24:25 +00001543 ... ... print(' ', x, end='', sep='') # doctest: +ELLIPSIS
1544 ... 0 1 2 ... 9
Edward Loper74bca7a2004-08-12 02:27:44 +00001545 ... '''
1546 >>> test = doctest.DocTestFinder().find(f)[0]
1547 >>> doctest.DocTestRunner(verbose=False).run(test)
Christian Heimes25bb7832008-01-11 16:17:00 +00001548 TestResults(failed=0, attempted=2)
Edward Loper74bca7a2004-08-12 02:27:44 +00001549
1550If more than one line of an example with multi-line source has an
1551option directive, then they are combined:
1552
1553 >>> def f(x): r'''
1554 ... Should fail (option directive not on the last line):
1555 ... >>> for x in range(10): # doctest: +ELLIPSIS
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001556 ... ... print(x, end=' ') # doctest: +NORMALIZE_WHITESPACE
Guido van Rossumd8faa362007-04-27 19:54:29 +00001557 ... 0 1 2...9
Edward Loper74bca7a2004-08-12 02:27:44 +00001558 ... '''
1559 >>> test = doctest.DocTestFinder().find(f)[0]
1560 >>> doctest.DocTestRunner(verbose=False).run(test)
Christian Heimes25bb7832008-01-11 16:17:00 +00001561 TestResults(failed=0, attempted=1)
Edward Loper74bca7a2004-08-12 02:27:44 +00001562
1563It is an error to have a comment of the form ``# doctest:`` that is
1564*not* followed by words of the form ``+OPTION`` or ``-OPTION``, where
1565``OPTION`` is an option that has been registered with
1566`register_option`:
1567
1568 >>> # Error: Option not registered
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001569 >>> s = '>>> print(12) #doctest: +BADOPTION'
Edward Loper74bca7a2004-08-12 02:27:44 +00001570 >>> test = doctest.DocTestParser().get_doctest(s, {}, 's', 's.py', 0)
1571 Traceback (most recent call last):
1572 ValueError: line 1 of the doctest for s has an invalid option: '+BADOPTION'
1573
1574 >>> # Error: No + or - prefix
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001575 >>> s = '>>> print(12) #doctest: ELLIPSIS'
Edward Loper74bca7a2004-08-12 02:27:44 +00001576 >>> test = doctest.DocTestParser().get_doctest(s, {}, 's', 's.py', 0)
1577 Traceback (most recent call last):
1578 ValueError: line 1 of the doctest for s has an invalid option: 'ELLIPSIS'
1579
1580It is an error to use an option directive on a line that contains no
1581source:
1582
1583 >>> s = '>>> # doctest: +ELLIPSIS'
1584 >>> test = doctest.DocTestParser().get_doctest(s, {}, 's', 's.py', 0)
1585 Traceback (most recent call last):
1586 ValueError: line 0 of the doctest for s has an option directive on a line with no example: '# doctest: +ELLIPSIS'
Tim Peters8485b562004-08-04 18:46:34 +00001587"""
1588
1589def test_testsource(): r"""
1590Unit tests for `testsource()`.
1591
1592The testsource() function takes a module and a name, finds the (first)
Tim Peters19397e52004-08-06 22:02:59 +00001593test with that name in that module, and converts it to a script. The
1594example code is converted to regular Python code. The surrounding
1595words and expected output are converted to comments:
Tim Peters8485b562004-08-04 18:46:34 +00001596
1597 >>> import test.test_doctest
1598 >>> name = 'test.test_doctest.sample_func'
Guido van Rossum7131f842007-02-09 20:13:25 +00001599 >>> print(doctest.testsource(test.test_doctest, name))
Edward Lopera5db6002004-08-12 02:41:30 +00001600 # Blah blah
Tim Peters19397e52004-08-06 22:02:59 +00001601 #
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001602 print(sample_func(22))
Tim Peters8485b562004-08-04 18:46:34 +00001603 # Expected:
Edward Lopera5db6002004-08-12 02:41:30 +00001604 ## 44
Tim Peters19397e52004-08-06 22:02:59 +00001605 #
Edward Lopera5db6002004-08-12 02:41:30 +00001606 # Yee ha!
Georg Brandlecf93c72005-06-26 23:09:51 +00001607 <BLANKLINE>
Tim Peters8485b562004-08-04 18:46:34 +00001608
1609 >>> name = 'test.test_doctest.SampleNewStyleClass'
Guido van Rossum7131f842007-02-09 20:13:25 +00001610 >>> print(doctest.testsource(test.test_doctest, name))
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001611 print('1\n2\n3')
Tim Peters8485b562004-08-04 18:46:34 +00001612 # Expected:
Edward Lopera5db6002004-08-12 02:41:30 +00001613 ## 1
1614 ## 2
1615 ## 3
Georg Brandlecf93c72005-06-26 23:09:51 +00001616 <BLANKLINE>
Tim Peters8485b562004-08-04 18:46:34 +00001617
1618 >>> name = 'test.test_doctest.SampleClass.a_classmethod'
Guido van Rossum7131f842007-02-09 20:13:25 +00001619 >>> print(doctest.testsource(test.test_doctest, name))
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001620 print(SampleClass.a_classmethod(10))
Tim Peters8485b562004-08-04 18:46:34 +00001621 # Expected:
Edward Lopera5db6002004-08-12 02:41:30 +00001622 ## 12
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001623 print(SampleClass(0).a_classmethod(10))
Tim Peters8485b562004-08-04 18:46:34 +00001624 # Expected:
Edward Lopera5db6002004-08-12 02:41:30 +00001625 ## 12
Georg Brandlecf93c72005-06-26 23:09:51 +00001626 <BLANKLINE>
Tim Peters8485b562004-08-04 18:46:34 +00001627"""
1628
1629def test_debug(): r"""
1630
1631Create a docstring that we want to debug:
1632
1633 >>> s = '''
1634 ... >>> x = 12
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001635 ... >>> print(x)
Tim Peters8485b562004-08-04 18:46:34 +00001636 ... 12
1637 ... '''
1638
1639Create some fake stdin input, to feed to the debugger:
1640
Tim Peters8485b562004-08-04 18:46:34 +00001641 >>> real_stdin = sys.stdin
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001642 >>> sys.stdin = _FakeInput(['next', 'print(x)', 'continue'])
Tim Peters8485b562004-08-04 18:46:34 +00001643
1644Run the debugger on the docstring, and then restore sys.stdin.
1645
Edward Loper2de91ba2004-08-27 02:07:46 +00001646 >>> try: doctest.debug_src(s)
1647 ... finally: sys.stdin = real_stdin
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001648 > <string>(1)<module>()
Edward Loper2de91ba2004-08-27 02:07:46 +00001649 (Pdb) next
1650 12
Tim Peters8485b562004-08-04 18:46:34 +00001651 --Return--
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001652 > <string>(1)<module>()->None
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001653 (Pdb) print(x)
Edward Loper2de91ba2004-08-27 02:07:46 +00001654 12
1655 (Pdb) continue
Tim Peters8485b562004-08-04 18:46:34 +00001656
1657"""
1658
Jim Fulton356fd192004-08-09 11:34:47 +00001659def test_pdb_set_trace():
Tim Peters50c6bdb2004-11-08 22:07:37 +00001660 """Using pdb.set_trace from a doctest.
Jim Fulton356fd192004-08-09 11:34:47 +00001661
Tim Peters413ced62004-08-09 15:43:47 +00001662 You can use pdb.set_trace from a doctest. To do so, you must
Jim Fulton356fd192004-08-09 11:34:47 +00001663 retrieve the set_trace function from the pdb module at the time
Tim Peters413ced62004-08-09 15:43:47 +00001664 you use it. The doctest module changes sys.stdout so that it can
1665 capture program output. It also temporarily replaces pdb.set_trace
1666 with a version that restores stdout. This is necessary for you to
Jim Fulton356fd192004-08-09 11:34:47 +00001667 see debugger output.
1668
1669 >>> doc = '''
1670 ... >>> x = 42
1671 ... >>> import pdb; pdb.set_trace()
1672 ... '''
Edward Lopera1ef6112004-08-09 16:14:41 +00001673 >>> parser = doctest.DocTestParser()
1674 >>> test = parser.get_doctest(doc, {}, "foo", "foo.py", 0)
Jim Fulton356fd192004-08-09 11:34:47 +00001675 >>> runner = doctest.DocTestRunner(verbose=False)
1676
1677 To demonstrate this, we'll create a fake standard input that
1678 captures our debugger input:
1679
1680 >>> import tempfile
Edward Loper2de91ba2004-08-27 02:07:46 +00001681 >>> real_stdin = sys.stdin
1682 >>> sys.stdin = _FakeInput([
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001683 ... 'print(x)', # print data defined by the example
Jim Fulton356fd192004-08-09 11:34:47 +00001684 ... 'continue', # stop debugging
Edward Loper2de91ba2004-08-27 02:07:46 +00001685 ... ''])
Jim Fulton356fd192004-08-09 11:34:47 +00001686
Edward Loper2de91ba2004-08-27 02:07:46 +00001687 >>> try: runner.run(test)
1688 ... finally: sys.stdin = real_stdin
Jim Fulton356fd192004-08-09 11:34:47 +00001689 --Return--
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001690 > <doctest foo[1]>(1)<module>()->None
Edward Loper2de91ba2004-08-27 02:07:46 +00001691 -> import pdb; pdb.set_trace()
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001692 (Pdb) print(x)
Edward Loper2de91ba2004-08-27 02:07:46 +00001693 42
1694 (Pdb) continue
Christian Heimes25bb7832008-01-11 16:17:00 +00001695 TestResults(failed=0, attempted=2)
Jim Fulton356fd192004-08-09 11:34:47 +00001696
1697 You can also put pdb.set_trace in a function called from a test:
1698
1699 >>> def calls_set_trace():
1700 ... y=2
1701 ... import pdb; pdb.set_trace()
1702
1703 >>> doc = '''
1704 ... >>> x=1
1705 ... >>> calls_set_trace()
1706 ... '''
Edward Lopera1ef6112004-08-09 16:14:41 +00001707 >>> test = parser.get_doctest(doc, globals(), "foo", "foo.py", 0)
Edward Loper2de91ba2004-08-27 02:07:46 +00001708 >>> real_stdin = sys.stdin
1709 >>> sys.stdin = _FakeInput([
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001710 ... 'print(y)', # print data defined in the function
Jim Fulton356fd192004-08-09 11:34:47 +00001711 ... 'up', # out of function
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001712 ... 'print(x)', # print data defined by the example
Jim Fulton356fd192004-08-09 11:34:47 +00001713 ... 'continue', # stop debugging
Edward Loper2de91ba2004-08-27 02:07:46 +00001714 ... ''])
Jim Fulton356fd192004-08-09 11:34:47 +00001715
Tim Peters50c6bdb2004-11-08 22:07:37 +00001716 >>> try:
1717 ... runner.run(test)
1718 ... finally:
1719 ... sys.stdin = real_stdin
Jim Fulton356fd192004-08-09 11:34:47 +00001720 --Return--
Edward Loper2de91ba2004-08-27 02:07:46 +00001721 > <doctest test.test_doctest.test_pdb_set_trace[8]>(3)calls_set_trace()->None
1722 -> import pdb; pdb.set_trace()
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001723 (Pdb) print(y)
Edward Loper2de91ba2004-08-27 02:07:46 +00001724 2
1725 (Pdb) up
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001726 > <doctest foo[1]>(1)<module>()
Edward Loper2de91ba2004-08-27 02:07:46 +00001727 -> calls_set_trace()
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001728 (Pdb) print(x)
Edward Loper2de91ba2004-08-27 02:07:46 +00001729 1
1730 (Pdb) continue
Christian Heimes25bb7832008-01-11 16:17:00 +00001731 TestResults(failed=0, attempted=2)
Edward Loper2de91ba2004-08-27 02:07:46 +00001732
1733 During interactive debugging, source code is shown, even for
1734 doctest examples:
1735
1736 >>> doc = '''
1737 ... >>> def f(x):
1738 ... ... g(x*2)
1739 ... >>> def g(x):
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001740 ... ... print(x+3)
Edward Loper2de91ba2004-08-27 02:07:46 +00001741 ... ... import pdb; pdb.set_trace()
1742 ... >>> f(3)
1743 ... '''
1744 >>> test = parser.get_doctest(doc, globals(), "foo", "foo.py", 0)
1745 >>> real_stdin = sys.stdin
1746 >>> sys.stdin = _FakeInput([
1747 ... 'list', # list source from example 2
1748 ... 'next', # return from g()
1749 ... 'list', # list source from example 1
1750 ... 'next', # return from f()
1751 ... 'list', # list source from example 3
1752 ... 'continue', # stop debugging
1753 ... ''])
1754 >>> try: runner.run(test)
1755 ... finally: sys.stdin = real_stdin
1756 ... # doctest: +NORMALIZE_WHITESPACE
1757 --Return--
1758 > <doctest foo[1]>(3)g()->None
1759 -> import pdb; pdb.set_trace()
1760 (Pdb) list
1761 1 def g(x):
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001762 2 print(x+3)
Edward Loper2de91ba2004-08-27 02:07:46 +00001763 3 -> import pdb; pdb.set_trace()
1764 [EOF]
1765 (Pdb) next
1766 --Return--
1767 > <doctest foo[0]>(2)f()->None
1768 -> g(x*2)
1769 (Pdb) list
1770 1 def f(x):
1771 2 -> g(x*2)
1772 [EOF]
1773 (Pdb) next
1774 --Return--
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001775 > <doctest foo[2]>(1)<module>()->None
Edward Loper2de91ba2004-08-27 02:07:46 +00001776 -> f(3)
1777 (Pdb) list
1778 1 -> f(3)
1779 [EOF]
1780 (Pdb) continue
1781 **********************************************************************
1782 File "foo.py", line 7, in foo
1783 Failed example:
1784 f(3)
1785 Expected nothing
1786 Got:
1787 9
Christian Heimes25bb7832008-01-11 16:17:00 +00001788 TestResults(failed=1, attempted=3)
Jim Fulton356fd192004-08-09 11:34:47 +00001789 """
1790
Tim Peters50c6bdb2004-11-08 22:07:37 +00001791def test_pdb_set_trace_nested():
1792 """This illustrates more-demanding use of set_trace with nested functions.
1793
1794 >>> class C(object):
1795 ... def calls_set_trace(self):
1796 ... y = 1
1797 ... import pdb; pdb.set_trace()
1798 ... self.f1()
1799 ... y = 2
1800 ... def f1(self):
1801 ... x = 1
1802 ... self.f2()
1803 ... x = 2
1804 ... def f2(self):
1805 ... z = 1
1806 ... z = 2
1807
1808 >>> calls_set_trace = C().calls_set_trace
1809
1810 >>> doc = '''
1811 ... >>> a = 1
1812 ... >>> calls_set_trace()
1813 ... '''
1814 >>> parser = doctest.DocTestParser()
1815 >>> runner = doctest.DocTestRunner(verbose=False)
1816 >>> test = parser.get_doctest(doc, globals(), "foo", "foo.py", 0)
1817 >>> real_stdin = sys.stdin
1818 >>> sys.stdin = _FakeInput([
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001819 ... 'print(y)', # print data defined in the function
1820 ... 'step', 'step', 'step', 'step', 'step', 'step', 'print(z)',
1821 ... 'up', 'print(x)',
1822 ... 'up', 'print(y)',
1823 ... 'up', 'print(foo)',
Tim Peters50c6bdb2004-11-08 22:07:37 +00001824 ... 'continue', # stop debugging
1825 ... ''])
1826
1827 >>> try:
1828 ... runner.run(test)
1829 ... finally:
1830 ... sys.stdin = real_stdin
Guido van Rossum4a625c32007-09-08 16:05:25 +00001831 ... # doctest: +REPORT_NDIFF
Tim Peters50c6bdb2004-11-08 22:07:37 +00001832 > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(5)calls_set_trace()
1833 -> self.f1()
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001834 (Pdb) print(y)
Tim Peters50c6bdb2004-11-08 22:07:37 +00001835 1
1836 (Pdb) step
1837 --Call--
1838 > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(7)f1()
1839 -> def f1(self):
1840 (Pdb) step
1841 > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(8)f1()
1842 -> x = 1
1843 (Pdb) step
1844 > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(9)f1()
1845 -> self.f2()
1846 (Pdb) step
1847 --Call--
1848 > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(11)f2()
1849 -> def f2(self):
1850 (Pdb) step
1851 > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(12)f2()
1852 -> z = 1
1853 (Pdb) step
1854 > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(13)f2()
1855 -> z = 2
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001856 (Pdb) print(z)
Tim Peters50c6bdb2004-11-08 22:07:37 +00001857 1
1858 (Pdb) up
1859 > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(9)f1()
1860 -> self.f2()
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001861 (Pdb) print(x)
Tim Peters50c6bdb2004-11-08 22:07:37 +00001862 1
1863 (Pdb) up
1864 > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(5)calls_set_trace()
1865 -> self.f1()
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001866 (Pdb) print(y)
Tim Peters50c6bdb2004-11-08 22:07:37 +00001867 1
1868 (Pdb) up
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001869 > <doctest foo[1]>(1)<module>()
Tim Peters50c6bdb2004-11-08 22:07:37 +00001870 -> calls_set_trace()
Guido van Rossumbdc36e42007-02-09 22:43:47 +00001871 (Pdb) print(foo)
Guido van Rossumfd4a7de2007-09-05 03:26:38 +00001872 *** NameError: NameError("name 'foo' is not defined",)
Tim Peters50c6bdb2004-11-08 22:07:37 +00001873 (Pdb) continue
Christian Heimes25bb7832008-01-11 16:17:00 +00001874 TestResults(failed=0, attempted=2)
Tim Peters50c6bdb2004-11-08 22:07:37 +00001875"""
1876
Tim Peters19397e52004-08-06 22:02:59 +00001877def test_DocTestSuite():
Tim Peters1e277ee2004-08-07 05:37:52 +00001878 """DocTestSuite creates a unittest test suite from a doctest.
Tim Peters19397e52004-08-06 22:02:59 +00001879
1880 We create a Suite by providing a module. A module can be provided
1881 by passing a module object:
1882
1883 >>> import unittest
1884 >>> import test.sample_doctest
1885 >>> suite = doctest.DocTestSuite(test.sample_doctest)
1886 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00001887 <unittest.result.TestResult run=9 errors=0 failures=4>
Tim Peters19397e52004-08-06 22:02:59 +00001888
1889 We can also supply the module by name:
1890
1891 >>> suite = doctest.DocTestSuite('test.sample_doctest')
1892 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00001893 <unittest.result.TestResult run=9 errors=0 failures=4>
Tim Peters19397e52004-08-06 22:02:59 +00001894
1895 We can use the current module:
1896
1897 >>> suite = test.sample_doctest.test_suite()
1898 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00001899 <unittest.result.TestResult run=9 errors=0 failures=4>
Tim Peters19397e52004-08-06 22:02:59 +00001900
1901 We can supply global variables. If we pass globs, they will be
1902 used instead of the module globals. Here we'll pass an empty
1903 globals, triggering an extra error:
1904
1905 >>> suite = doctest.DocTestSuite('test.sample_doctest', globs={})
1906 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00001907 <unittest.result.TestResult run=9 errors=0 failures=5>
Tim Peters19397e52004-08-06 22:02:59 +00001908
1909 Alternatively, we can provide extra globals. Here we'll make an
1910 error go away by providing an extra global variable:
1911
1912 >>> suite = doctest.DocTestSuite('test.sample_doctest',
1913 ... extraglobs={'y': 1})
1914 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00001915 <unittest.result.TestResult run=9 errors=0 failures=3>
Tim Peters19397e52004-08-06 22:02:59 +00001916
1917 You can pass option flags. Here we'll cause an extra error
1918 by disabling the blank-line feature:
1919
1920 >>> suite = doctest.DocTestSuite('test.sample_doctest',
Tim Peters1e277ee2004-08-07 05:37:52 +00001921 ... optionflags=doctest.DONT_ACCEPT_BLANKLINE)
Tim Peters19397e52004-08-06 22:02:59 +00001922 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00001923 <unittest.result.TestResult run=9 errors=0 failures=5>
Tim Peters19397e52004-08-06 22:02:59 +00001924
Tim Peters1e277ee2004-08-07 05:37:52 +00001925 You can supply setUp and tearDown functions:
Tim Peters19397e52004-08-06 22:02:59 +00001926
Jim Fultonf54bad42004-08-28 14:57:56 +00001927 >>> def setUp(t):
Tim Peters19397e52004-08-06 22:02:59 +00001928 ... import test.test_doctest
1929 ... test.test_doctest.sillySetup = True
1930
Jim Fultonf54bad42004-08-28 14:57:56 +00001931 >>> def tearDown(t):
Tim Peters19397e52004-08-06 22:02:59 +00001932 ... import test.test_doctest
1933 ... del test.test_doctest.sillySetup
1934
1935 Here, we installed a silly variable that the test expects:
1936
1937 >>> suite = doctest.DocTestSuite('test.sample_doctest',
1938 ... setUp=setUp, tearDown=tearDown)
1939 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00001940 <unittest.result.TestResult run=9 errors=0 failures=3>
Tim Peters19397e52004-08-06 22:02:59 +00001941
1942 But the tearDown restores sanity:
1943
1944 >>> import test.test_doctest
1945 >>> test.test_doctest.sillySetup
1946 Traceback (most recent call last):
1947 ...
1948 AttributeError: 'module' object has no attribute 'sillySetup'
1949
Jim Fultonf54bad42004-08-28 14:57:56 +00001950 The setUp and tearDown funtions are passed test objects. Here
1951 we'll use the setUp function to supply the missing variable y:
1952
1953 >>> def setUp(test):
1954 ... test.globs['y'] = 1
1955
1956 >>> suite = doctest.DocTestSuite('test.sample_doctest', setUp=setUp)
1957 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00001958 <unittest.result.TestResult run=9 errors=0 failures=3>
Jim Fultonf54bad42004-08-28 14:57:56 +00001959
1960 Here, we didn't need to use a tearDown function because we
1961 modified the test globals, which are a copy of the
1962 sample_doctest module dictionary. The test globals are
1963 automatically cleared for us after a test.
Tim Peters19397e52004-08-06 22:02:59 +00001964 """
1965
1966def test_DocFileSuite():
1967 """We can test tests found in text files using a DocFileSuite.
1968
1969 We create a suite by providing the names of one or more text
1970 files that include examples:
1971
1972 >>> import unittest
1973 >>> suite = doctest.DocFileSuite('test_doctest.txt',
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00001974 ... 'test_doctest2.txt',
1975 ... 'test_doctest4.txt')
Tim Peters19397e52004-08-06 22:02:59 +00001976 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00001977 <unittest.result.TestResult run=3 errors=0 failures=2>
Tim Peters19397e52004-08-06 22:02:59 +00001978
1979 The test files are looked for in the directory containing the
1980 calling module. A package keyword argument can be provided to
1981 specify a different relative location.
1982
1983 >>> import unittest
1984 >>> suite = doctest.DocFileSuite('test_doctest.txt',
1985 ... 'test_doctest2.txt',
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00001986 ... 'test_doctest4.txt',
Tim Peters19397e52004-08-06 22:02:59 +00001987 ... package='test')
1988 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00001989 <unittest.result.TestResult run=3 errors=0 failures=2>
Tim Peters19397e52004-08-06 22:02:59 +00001990
Guido van Rossumcd4d4522007-11-22 00:30:02 +00001991 Support for using a package's __loader__.get_data() is also
1992 provided.
1993
1994 >>> import unittest, pkgutil, test
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +00001995 >>> added_loader = False
Guido van Rossumcd4d4522007-11-22 00:30:02 +00001996 >>> if not hasattr(test, '__loader__'):
1997 ... test.__loader__ = pkgutil.get_loader(test)
1998 ... added_loader = True
1999 >>> try:
2000 ... suite = doctest.DocFileSuite('test_doctest.txt',
2001 ... 'test_doctest2.txt',
2002 ... 'test_doctest4.txt',
2003 ... package='test')
2004 ... suite.run(unittest.TestResult())
2005 ... finally:
2006 ... if added_loader:
2007 ... del test.__loader__
Benjamin Petersonbed7d042009-07-19 21:01:52 +00002008 <unittest.result.TestResult run=3 errors=0 failures=2>
Guido van Rossumcd4d4522007-11-22 00:30:02 +00002009
Edward Loper0273f5b2004-09-18 20:27:04 +00002010 '/' should be used as a path separator. It will be converted
2011 to a native separator at run time:
Tim Peters19397e52004-08-06 22:02:59 +00002012
2013 >>> suite = doctest.DocFileSuite('../test/test_doctest.txt')
2014 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00002015 <unittest.result.TestResult run=1 errors=0 failures=1>
Tim Peters19397e52004-08-06 22:02:59 +00002016
Edward Loper0273f5b2004-09-18 20:27:04 +00002017 If DocFileSuite is used from an interactive session, then files
2018 are resolved relative to the directory of sys.argv[0]:
2019
Christian Heimes45f9af32007-11-27 21:50:00 +00002020 >>> import types, os.path, test.test_doctest
Edward Loper0273f5b2004-09-18 20:27:04 +00002021 >>> save_argv = sys.argv
2022 >>> sys.argv = [test.test_doctest.__file__]
2023 >>> suite = doctest.DocFileSuite('test_doctest.txt',
Christian Heimes45f9af32007-11-27 21:50:00 +00002024 ... package=types.ModuleType('__main__'))
Edward Loper0273f5b2004-09-18 20:27:04 +00002025 >>> sys.argv = save_argv
2026
Edward Loper052d0cd2004-09-19 17:19:33 +00002027 By setting `module_relative=False`, os-specific paths may be
2028 used (including absolute paths and paths relative to the
2029 working directory):
Edward Loper0273f5b2004-09-18 20:27:04 +00002030
2031 >>> # Get the absolute path of the test package.
2032 >>> test_doctest_path = os.path.abspath(test.test_doctest.__file__)
2033 >>> test_pkg_path = os.path.split(test_doctest_path)[0]
2034
2035 >>> # Use it to find the absolute path of test_doctest.txt.
2036 >>> test_file = os.path.join(test_pkg_path, 'test_doctest.txt')
2037
Edward Loper052d0cd2004-09-19 17:19:33 +00002038 >>> suite = doctest.DocFileSuite(test_file, module_relative=False)
Edward Loper0273f5b2004-09-18 20:27:04 +00002039 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00002040 <unittest.result.TestResult run=1 errors=0 failures=1>
Edward Loper0273f5b2004-09-18 20:27:04 +00002041
Edward Loper052d0cd2004-09-19 17:19:33 +00002042 It is an error to specify `package` when `module_relative=False`:
2043
2044 >>> suite = doctest.DocFileSuite(test_file, module_relative=False,
2045 ... package='test')
2046 Traceback (most recent call last):
2047 ValueError: Package may only be specified for module-relative paths.
2048
Tim Peters19397e52004-08-06 22:02:59 +00002049 You can specify initial global variables:
2050
2051 >>> suite = doctest.DocFileSuite('test_doctest.txt',
2052 ... 'test_doctest2.txt',
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002053 ... 'test_doctest4.txt',
Tim Peters19397e52004-08-06 22:02:59 +00002054 ... globs={'favorite_color': 'blue'})
2055 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00002056 <unittest.result.TestResult run=3 errors=0 failures=1>
Tim Peters19397e52004-08-06 22:02:59 +00002057
2058 In this case, we supplied a missing favorite color. You can
2059 provide doctest options:
2060
2061 >>> suite = doctest.DocFileSuite('test_doctest.txt',
2062 ... 'test_doctest2.txt',
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002063 ... 'test_doctest4.txt',
Tim Peters19397e52004-08-06 22:02:59 +00002064 ... optionflags=doctest.DONT_ACCEPT_BLANKLINE,
2065 ... globs={'favorite_color': 'blue'})
2066 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00002067 <unittest.result.TestResult run=3 errors=0 failures=2>
Tim Peters19397e52004-08-06 22:02:59 +00002068
2069 And, you can provide setUp and tearDown functions:
2070
Jim Fultonf54bad42004-08-28 14:57:56 +00002071 >>> def setUp(t):
Tim Peters19397e52004-08-06 22:02:59 +00002072 ... import test.test_doctest
2073 ... test.test_doctest.sillySetup = True
2074
Jim Fultonf54bad42004-08-28 14:57:56 +00002075 >>> def tearDown(t):
Tim Peters19397e52004-08-06 22:02:59 +00002076 ... import test.test_doctest
2077 ... del test.test_doctest.sillySetup
2078
2079 Here, we installed a silly variable that the test expects:
2080
2081 >>> suite = doctest.DocFileSuite('test_doctest.txt',
2082 ... 'test_doctest2.txt',
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002083 ... 'test_doctest4.txt',
Tim Peters19397e52004-08-06 22:02:59 +00002084 ... setUp=setUp, tearDown=tearDown)
2085 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00002086 <unittest.result.TestResult run=3 errors=0 failures=1>
Tim Peters19397e52004-08-06 22:02:59 +00002087
2088 But the tearDown restores sanity:
2089
2090 >>> import test.test_doctest
2091 >>> test.test_doctest.sillySetup
2092 Traceback (most recent call last):
2093 ...
2094 AttributeError: 'module' object has no attribute 'sillySetup'
2095
Jim Fultonf54bad42004-08-28 14:57:56 +00002096 The setUp and tearDown funtions are passed test objects.
2097 Here, we'll use a setUp function to set the favorite color in
2098 test_doctest.txt:
2099
2100 >>> def setUp(test):
2101 ... test.globs['favorite_color'] = 'blue'
2102
2103 >>> suite = doctest.DocFileSuite('test_doctest.txt', setUp=setUp)
2104 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00002105 <unittest.result.TestResult run=1 errors=0 failures=0>
Jim Fultonf54bad42004-08-28 14:57:56 +00002106
2107 Here, we didn't need to use a tearDown function because we
2108 modified the test globals. The test globals are
2109 automatically cleared for us after a test.
Tim Petersdf7a2082004-08-29 00:38:17 +00002110
Fred Drake7c404a42004-12-21 23:46:34 +00002111 Tests in a file run using `DocFileSuite` can also access the
2112 `__file__` global, which is set to the name of the file
2113 containing the tests:
2114
2115 >>> suite = doctest.DocFileSuite('test_doctest3.txt')
2116 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00002117 <unittest.result.TestResult run=1 errors=0 failures=0>
Fred Drake7c404a42004-12-21 23:46:34 +00002118
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002119 If the tests contain non-ASCII characters, we have to specify which
2120 encoding the file is encoded with. We do so by using the `encoding`
2121 parameter:
2122
2123 >>> suite = doctest.DocFileSuite('test_doctest.txt',
2124 ... 'test_doctest2.txt',
2125 ... 'test_doctest4.txt',
2126 ... encoding='utf-8')
2127 >>> suite.run(unittest.TestResult())
Benjamin Petersonbed7d042009-07-19 21:01:52 +00002128 <unittest.result.TestResult run=3 errors=0 failures=2>
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002129
Jim Fultonf54bad42004-08-28 14:57:56 +00002130 """
Tim Peters19397e52004-08-06 22:02:59 +00002131
Jim Fulton07a349c2004-08-22 14:10:00 +00002132def test_trailing_space_in_test():
2133 """
Tim Petersa7def722004-08-23 22:13:22 +00002134 Trailing spaces in expected output are significant:
Tim Petersc6cbab02004-08-22 19:43:28 +00002135
Jim Fulton07a349c2004-08-22 14:10:00 +00002136 >>> x, y = 'foo', ''
Guido van Rossum7131f842007-02-09 20:13:25 +00002137 >>> print(x, y)
Jim Fulton07a349c2004-08-22 14:10:00 +00002138 foo \n
2139 """
Tim Peters19397e52004-08-06 22:02:59 +00002140
Jim Fultonf54bad42004-08-28 14:57:56 +00002141
2142def test_unittest_reportflags():
2143 """Default unittest reporting flags can be set to control reporting
2144
2145 Here, we'll set the REPORT_ONLY_FIRST_FAILURE option so we see
2146 only the first failure of each test. First, we'll look at the
2147 output without the flag. The file test_doctest.txt file has two
2148 tests. They both fail if blank lines are disabled:
2149
2150 >>> suite = doctest.DocFileSuite('test_doctest.txt',
2151 ... optionflags=doctest.DONT_ACCEPT_BLANKLINE)
2152 >>> import unittest
2153 >>> result = suite.run(unittest.TestResult())
Guido van Rossum7131f842007-02-09 20:13:25 +00002154 >>> print(result.failures[0][1]) # doctest: +ELLIPSIS
Jim Fultonf54bad42004-08-28 14:57:56 +00002155 Traceback ...
2156 Failed example:
2157 favorite_color
2158 ...
2159 Failed example:
2160 if 1:
2161 ...
2162
2163 Note that we see both failures displayed.
2164
2165 >>> old = doctest.set_unittest_reportflags(
2166 ... doctest.REPORT_ONLY_FIRST_FAILURE)
2167
2168 Now, when we run the test:
2169
2170 >>> result = suite.run(unittest.TestResult())
Guido van Rossum7131f842007-02-09 20:13:25 +00002171 >>> print(result.failures[0][1]) # doctest: +ELLIPSIS
Jim Fultonf54bad42004-08-28 14:57:56 +00002172 Traceback ...
2173 Failed example:
2174 favorite_color
2175 Exception raised:
2176 ...
2177 NameError: name 'favorite_color' is not defined
2178 <BLANKLINE>
2179 <BLANKLINE>
Tim Petersdf7a2082004-08-29 00:38:17 +00002180
Jim Fultonf54bad42004-08-28 14:57:56 +00002181 We get only the first failure.
2182
2183 If we give any reporting options when we set up the tests,
2184 however:
2185
2186 >>> suite = doctest.DocFileSuite('test_doctest.txt',
2187 ... optionflags=doctest.DONT_ACCEPT_BLANKLINE | doctest.REPORT_NDIFF)
2188
2189 Then the default eporting options are ignored:
2190
2191 >>> result = suite.run(unittest.TestResult())
Guido van Rossum7131f842007-02-09 20:13:25 +00002192 >>> print(result.failures[0][1]) # doctest: +ELLIPSIS
Jim Fultonf54bad42004-08-28 14:57:56 +00002193 Traceback ...
2194 Failed example:
2195 favorite_color
2196 ...
2197 Failed example:
2198 if 1:
Guido van Rossumbdc36e42007-02-09 22:43:47 +00002199 print('a')
2200 print()
2201 print('b')
Jim Fultonf54bad42004-08-28 14:57:56 +00002202 Differences (ndiff with -expected +actual):
2203 a
2204 - <BLANKLINE>
2205 +
2206 b
2207 <BLANKLINE>
2208 <BLANKLINE>
2209
2210
2211 Test runners can restore the formatting flags after they run:
2212
2213 >>> ignored = doctest.set_unittest_reportflags(old)
2214
2215 """
2216
Edward Loper052d0cd2004-09-19 17:19:33 +00002217def test_testfile(): r"""
2218Tests for the `testfile()` function. This function runs all the
2219doctest examples in a given file. In its simple invokation, it is
2220called with the name of a file, which is taken to be relative to the
2221calling module. The return value is (#failures, #tests).
2222
Florent Xicluna59250852010-02-27 14:21:57 +00002223We don't want `-v` in sys.argv for these tests.
2224
2225 >>> save_argv = sys.argv
2226 >>> if '-v' in sys.argv:
2227 ... sys.argv = [arg for arg in save_argv if arg != '-v']
2228
2229
Edward Loper052d0cd2004-09-19 17:19:33 +00002230 >>> doctest.testfile('test_doctest.txt') # doctest: +ELLIPSIS
2231 **********************************************************************
2232 File "...", line 6, in test_doctest.txt
2233 Failed example:
2234 favorite_color
2235 Exception raised:
2236 ...
2237 NameError: name 'favorite_color' is not defined
2238 **********************************************************************
2239 1 items had failures:
2240 1 of 2 in test_doctest.txt
2241 ***Test Failed*** 1 failures.
Christian Heimes25bb7832008-01-11 16:17:00 +00002242 TestResults(failed=1, attempted=2)
Edward Loper052d0cd2004-09-19 17:19:33 +00002243 >>> doctest.master = None # Reset master.
2244
2245(Note: we'll be clearing doctest.master after each call to
2246`doctest.testfile`, to supress warnings about multiple tests with the
2247same name.)
2248
2249Globals may be specified with the `globs` and `extraglobs` parameters:
2250
2251 >>> globs = {'favorite_color': 'blue'}
2252 >>> doctest.testfile('test_doctest.txt', globs=globs)
Christian Heimes25bb7832008-01-11 16:17:00 +00002253 TestResults(failed=0, attempted=2)
Edward Loper052d0cd2004-09-19 17:19:33 +00002254 >>> doctest.master = None # Reset master.
2255
2256 >>> extraglobs = {'favorite_color': 'red'}
2257 >>> doctest.testfile('test_doctest.txt', globs=globs,
2258 ... extraglobs=extraglobs) # doctest: +ELLIPSIS
2259 **********************************************************************
2260 File "...", line 6, in test_doctest.txt
2261 Failed example:
2262 favorite_color
2263 Expected:
2264 'blue'
2265 Got:
2266 'red'
2267 **********************************************************************
2268 1 items had failures:
2269 1 of 2 in test_doctest.txt
2270 ***Test Failed*** 1 failures.
Christian Heimes25bb7832008-01-11 16:17:00 +00002271 TestResults(failed=1, attempted=2)
Edward Loper052d0cd2004-09-19 17:19:33 +00002272 >>> doctest.master = None # Reset master.
2273
2274The file may be made relative to a given module or package, using the
2275optional `module_relative` parameter:
2276
2277 >>> doctest.testfile('test_doctest.txt', globs=globs,
2278 ... module_relative='test')
Christian Heimes25bb7832008-01-11 16:17:00 +00002279 TestResults(failed=0, attempted=2)
Edward Loper052d0cd2004-09-19 17:19:33 +00002280 >>> doctest.master = None # Reset master.
2281
2282Verbosity can be increased with the optional `verbose` paremter:
2283
2284 >>> doctest.testfile('test_doctest.txt', globs=globs, verbose=True)
2285 Trying:
2286 favorite_color
2287 Expecting:
2288 'blue'
2289 ok
2290 Trying:
2291 if 1:
Guido van Rossumbdc36e42007-02-09 22:43:47 +00002292 print('a')
2293 print()
2294 print('b')
Edward Loper052d0cd2004-09-19 17:19:33 +00002295 Expecting:
2296 a
2297 <BLANKLINE>
2298 b
2299 ok
2300 1 items passed all tests:
2301 2 tests in test_doctest.txt
2302 2 tests in 1 items.
2303 2 passed and 0 failed.
2304 Test passed.
Christian Heimes25bb7832008-01-11 16:17:00 +00002305 TestResults(failed=0, attempted=2)
Edward Loper052d0cd2004-09-19 17:19:33 +00002306 >>> doctest.master = None # Reset master.
2307
2308The name of the test may be specified with the optional `name`
2309parameter:
2310
2311 >>> doctest.testfile('test_doctest.txt', name='newname')
2312 ... # doctest: +ELLIPSIS
2313 **********************************************************************
2314 File "...", line 6, in newname
2315 ...
Christian Heimes25bb7832008-01-11 16:17:00 +00002316 TestResults(failed=1, attempted=2)
Edward Loper052d0cd2004-09-19 17:19:33 +00002317 >>> doctest.master = None # Reset master.
2318
2319The summary report may be supressed with the optional `report`
2320parameter:
2321
2322 >>> doctest.testfile('test_doctest.txt', report=False)
2323 ... # doctest: +ELLIPSIS
2324 **********************************************************************
2325 File "...", line 6, in test_doctest.txt
2326 Failed example:
2327 favorite_color
2328 Exception raised:
2329 ...
2330 NameError: name 'favorite_color' is not defined
Christian Heimes25bb7832008-01-11 16:17:00 +00002331 TestResults(failed=1, attempted=2)
Edward Loper052d0cd2004-09-19 17:19:33 +00002332 >>> doctest.master = None # Reset master.
2333
2334The optional keyword argument `raise_on_error` can be used to raise an
2335exception on the first error (which may be useful for postmortem
2336debugging):
2337
2338 >>> doctest.testfile('test_doctest.txt', raise_on_error=True)
2339 ... # doctest: +ELLIPSIS
2340 Traceback (most recent call last):
Guido van Rossum6a2a2a02006-08-26 20:37:44 +00002341 doctest.UnexpectedException: ...
Edward Loper052d0cd2004-09-19 17:19:33 +00002342 >>> doctest.master = None # Reset master.
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002343
2344If the tests contain non-ASCII characters, the tests might fail, since
2345it's unknown which encoding is used. The encoding can be specified
2346using the optional keyword argument `encoding`:
2347
Martin v. Löwisb1a9f272007-07-20 07:13:39 +00002348 >>> doctest.testfile('test_doctest4.txt', encoding='latin-1') # doctest: +ELLIPSIS
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002349 **********************************************************************
2350 File "...", line 7, in test_doctest4.txt
2351 Failed example:
Martin v. Löwisb1a9f272007-07-20 07:13:39 +00002352 '...'
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002353 Expected:
Martin v. Löwisb1a9f272007-07-20 07:13:39 +00002354 'f\xf6\xf6'
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002355 Got:
Martin v. Löwisb1a9f272007-07-20 07:13:39 +00002356 'f\xc3\xb6\xc3\xb6'
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002357 **********************************************************************
2358 ...
2359 **********************************************************************
2360 1 items had failures:
Martin v. Löwisb1a9f272007-07-20 07:13:39 +00002361 2 of 2 in test_doctest4.txt
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002362 ***Test Failed*** 2 failures.
Christian Heimes25bb7832008-01-11 16:17:00 +00002363 TestResults(failed=2, attempted=2)
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002364 >>> doctest.master = None # Reset master.
2365
2366 >>> doctest.testfile('test_doctest4.txt', encoding='utf-8')
Christian Heimes25bb7832008-01-11 16:17:00 +00002367 TestResults(failed=0, attempted=2)
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002368 >>> doctest.master = None # Reset master.
Florent Xicluna59250852010-02-27 14:21:57 +00002369
2370Test the verbose output:
2371
2372 >>> doctest.testfile('test_doctest4.txt', encoding='utf-8', verbose=True)
2373 Trying:
2374 'föö'
2375 Expecting:
2376 'f\xf6\xf6'
2377 ok
2378 Trying:
2379 'bąr'
2380 Expecting:
2381 'b\u0105r'
2382 ok
2383 1 items passed all tests:
2384 2 tests in test_doctest4.txt
2385 2 tests in 1 items.
2386 2 passed and 0 failed.
2387 Test passed.
2388 TestResults(failed=0, attempted=2)
2389 >>> doctest.master = None # Reset master.
2390 >>> sys.argv = save_argv
Edward Loper052d0cd2004-09-19 17:19:33 +00002391"""
2392
R. David Murray58641de2009-06-12 15:33:19 +00002393def test_testmod(): r"""
2394Tests for the testmod function. More might be useful, but for now we're just
2395testing the case raised by Issue 6195, where trying to doctest a C module would
2396fail with a UnicodeDecodeError because doctest tried to read the "source" lines
2397out of the binary module.
2398
2399 >>> import unicodedata
Florent Xicluna59250852010-02-27 14:21:57 +00002400 >>> doctest.testmod(unicodedata, verbose=False)
R. David Murray58641de2009-06-12 15:33:19 +00002401 TestResults(failed=0, attempted=0)
2402"""
2403
Tim Peters8485b562004-08-04 18:46:34 +00002404######################################################################
2405## Main
2406######################################################################
2407
2408def test_main():
2409 # Check the doctest cases in doctest itself:
Benjamin Petersonee8712c2008-05-20 21:35:26 +00002410 support.run_doctest(doctest, verbosity=True)
Tim Peters8485b562004-08-04 18:46:34 +00002411 # Check the doctest cases defined here:
2412 from test import test_doctest
Benjamin Petersonee8712c2008-05-20 21:35:26 +00002413 support.run_doctest(test_doctest, verbosity=True)
Tim Peters8485b562004-08-04 18:46:34 +00002414
Victor Stinner45df8202010-04-28 22:31:17 +00002415import sys, re, io
2416
Tim Peters8485b562004-08-04 18:46:34 +00002417def test_coverage(coverdir):
Victor Stinner45df8202010-04-28 22:31:17 +00002418 trace = support.import_module('trace')
Tim Peters8485b562004-08-04 18:46:34 +00002419 tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,],
2420 trace=0, count=1)
Guido van Rossume7ba4952007-06-06 23:52:48 +00002421 tracer.run('test_main()')
Tim Peters8485b562004-08-04 18:46:34 +00002422 r = tracer.results()
Guido van Rossumbe19ed72007-02-09 05:37:30 +00002423 print('Writing coverage results...')
Tim Peters8485b562004-08-04 18:46:34 +00002424 r.write_results(show_missing=True, summary=True,
2425 coverdir=coverdir)
2426
2427if __name__ == '__main__':
2428 if '-c' in sys.argv:
2429 test_coverage('/tmp/doctest.cover')
2430 else:
2431 test_main()