- Issue #17041: Fix testing when Python is configured with the
--without-doc-strings option.
This commit is contained in:
parent
6d3a8605a5
commit
72121c6c30
|
@ -3,6 +3,7 @@
|
||||||
from ctypes import *
|
from ctypes import *
|
||||||
from ctypes.test import is_resource_enabled
|
from ctypes.test import is_resource_enabled
|
||||||
import unittest, sys
|
import unittest, sys
|
||||||
|
from test import test_support as support
|
||||||
|
|
||||||
import _ctypes_test
|
import _ctypes_test
|
||||||
|
|
||||||
|
@ -60,7 +61,9 @@ if sys.platform == "win32":
|
||||||
|
|
||||||
def test_COMError(self):
|
def test_COMError(self):
|
||||||
from _ctypes import COMError
|
from _ctypes import COMError
|
||||||
self.assertEqual(COMError.__doc__, "Raised when a COM method call failed.")
|
if support.HAVE_DOCSTRINGS:
|
||||||
|
self.assertEqual(COMError.__doc__,
|
||||||
|
"Raised when a COM method call failed.")
|
||||||
|
|
||||||
ex = COMError(-1, "text", ("details",))
|
ex = COMError(-1, "text", ("details",))
|
||||||
self.assertEqual(ex.hresult, -1)
|
self.assertEqual(ex.hresult, -1)
|
||||||
|
|
|
@ -77,8 +77,9 @@ class BuildExtTestCase(support.TempdirManager,
|
||||||
self.assertEqual(xx.foo(2, 5), 7)
|
self.assertEqual(xx.foo(2, 5), 7)
|
||||||
self.assertEqual(xx.foo(13,15), 28)
|
self.assertEqual(xx.foo(13,15), 28)
|
||||||
self.assertEqual(xx.new().demo(), None)
|
self.assertEqual(xx.new().demo(), None)
|
||||||
doc = 'This is a template module just for instruction.'
|
if test_support.HAVE_DOCSTRINGS:
|
||||||
self.assertEqual(xx.__doc__, doc)
|
doc = 'This is a template module just for instruction.'
|
||||||
|
self.assertEqual(xx.__doc__, doc)
|
||||||
self.assertTrue(isinstance(xx.Null(), xx.Null))
|
self.assertTrue(isinstance(xx.Null(), xx.Null))
|
||||||
self.assertTrue(isinstance(xx.Str(), xx.Str))
|
self.assertTrue(isinstance(xx.Str(), xx.Str))
|
||||||
|
|
||||||
|
|
|
@ -232,6 +232,7 @@ class TestUpdateWrapper(unittest.TestCase):
|
||||||
self.assertEqual(wrapper.attr, 'This is a different test')
|
self.assertEqual(wrapper.attr, 'This is a different test')
|
||||||
self.assertEqual(wrapper.dict_attr, f.dict_attr)
|
self.assertEqual(wrapper.dict_attr, f.dict_attr)
|
||||||
|
|
||||||
|
@test_support.requires_docstrings
|
||||||
def test_builtin_update(self):
|
def test_builtin_update(self):
|
||||||
# Test for bug #1576241
|
# Test for bug #1576241
|
||||||
def wrapper():
|
def wrapper():
|
||||||
|
|
|
@ -16,6 +16,14 @@ from test.test_support import (
|
||||||
|
|
||||||
from test import pydoc_mod
|
from test import pydoc_mod
|
||||||
|
|
||||||
|
if test.test_support.HAVE_DOCSTRINGS:
|
||||||
|
expected_data_docstrings = (
|
||||||
|
'dictionary for instance variables (if defined)',
|
||||||
|
'list of weak references to the object (if defined)',
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
expected_data_docstrings = ('', '')
|
||||||
|
|
||||||
expected_text_pattern = \
|
expected_text_pattern = \
|
||||||
"""
|
"""
|
||||||
NAME
|
NAME
|
||||||
|
@ -40,11 +48,9 @@ CLASSES
|
||||||
class B(__builtin__.object)
|
class B(__builtin__.object)
|
||||||
| Data descriptors defined here:
|
| Data descriptors defined here:
|
||||||
|\x20\x20
|
|\x20\x20
|
||||||
| __dict__
|
| __dict__%s
|
||||||
| dictionary for instance variables (if defined)
|
|
||||||
|\x20\x20
|
|\x20\x20
|
||||||
| __weakref__
|
| __weakref__%s
|
||||||
| list of weak references to the object (if defined)
|
|
||||||
|\x20\x20
|
|\x20\x20
|
||||||
| ----------------------------------------------------------------------
|
| ----------------------------------------------------------------------
|
||||||
| Data and other attributes defined here:
|
| Data and other attributes defined here:
|
||||||
|
@ -75,6 +81,9 @@ CREDITS
|
||||||
Nobody
|
Nobody
|
||||||
""".strip()
|
""".strip()
|
||||||
|
|
||||||
|
expected_text_data_docstrings = tuple('\n | ' + s if s else ''
|
||||||
|
for s in expected_data_docstrings)
|
||||||
|
|
||||||
expected_html_pattern = \
|
expected_html_pattern = \
|
||||||
"""
|
"""
|
||||||
<table width="100%%" cellspacing=0 cellpadding=2 border=0 summary="heading">
|
<table width="100%%" cellspacing=0 cellpadding=2 border=0 summary="heading">
|
||||||
|
@ -121,10 +130,10 @@ expected_html_pattern = \
|
||||||
<tr><td bgcolor="#ffc8d8"><tt> </tt></td><td> </td>
|
<tr><td bgcolor="#ffc8d8"><tt> </tt></td><td> </td>
|
||||||
<td width="100%%">Data descriptors defined here:<br>
|
<td width="100%%">Data descriptors defined here:<br>
|
||||||
<dl><dt><strong>__dict__</strong></dt>
|
<dl><dt><strong>__dict__</strong></dt>
|
||||||
<dd><tt>dictionary for instance variables (if defined)</tt></dd>
|
<dd><tt>%s</tt></dd>
|
||||||
</dl>
|
</dl>
|
||||||
<dl><dt><strong>__weakref__</strong></dt>
|
<dl><dt><strong>__weakref__</strong></dt>
|
||||||
<dd><tt>list of weak references to the object (if defined)</tt></dd>
|
<dd><tt>%s</tt></dd>
|
||||||
</dl>
|
</dl>
|
||||||
<hr>
|
<hr>
|
||||||
Data and other attributes defined here:<br>
|
Data and other attributes defined here:<br>
|
||||||
|
@ -168,6 +177,8 @@ war</tt></dd></dl>
|
||||||
<td width="100%%">Nobody</td></tr></table>
|
<td width="100%%">Nobody</td></tr></table>
|
||||||
""".strip()
|
""".strip()
|
||||||
|
|
||||||
|
expected_html_data_docstrings = tuple(s.replace(' ', ' ')
|
||||||
|
for s in expected_data_docstrings)
|
||||||
|
|
||||||
# output pattern for missing module
|
# output pattern for missing module
|
||||||
missing_pattern = "no Python documentation found for '%s'"
|
missing_pattern = "no Python documentation found for '%s'"
|
||||||
|
@ -229,7 +240,9 @@ class PyDocDocTest(unittest.TestCase):
|
||||||
mod_url = nturl2path.pathname2url(mod_file)
|
mod_url = nturl2path.pathname2url(mod_file)
|
||||||
else:
|
else:
|
||||||
mod_url = mod_file
|
mod_url = mod_file
|
||||||
expected_html = expected_html_pattern % (mod_url, mod_file, doc_loc)
|
expected_html = expected_html_pattern % (
|
||||||
|
(mod_url, mod_file, doc_loc) +
|
||||||
|
expected_html_data_docstrings)
|
||||||
if result != expected_html:
|
if result != expected_html:
|
||||||
print_diffs(expected_html, result)
|
print_diffs(expected_html, result)
|
||||||
self.fail("outputs are not equal, see diff above")
|
self.fail("outputs are not equal, see diff above")
|
||||||
|
@ -238,8 +251,9 @@ class PyDocDocTest(unittest.TestCase):
|
||||||
"Docstrings are omitted with -O2 and above")
|
"Docstrings are omitted with -O2 and above")
|
||||||
def test_text_doc(self):
|
def test_text_doc(self):
|
||||||
result, doc_loc = get_pydoc_text(pydoc_mod)
|
result, doc_loc = get_pydoc_text(pydoc_mod)
|
||||||
expected_text = expected_text_pattern % \
|
expected_text = expected_text_pattern % (
|
||||||
(inspect.getabsfile(pydoc_mod), doc_loc)
|
(inspect.getabsfile(pydoc_mod), doc_loc) +
|
||||||
|
expected_text_data_docstrings)
|
||||||
if result != expected_text:
|
if result != expected_text:
|
||||||
print_diffs(expected_text, result)
|
print_diffs(expected_text, result)
|
||||||
self.fail("outputs are not equal, see diff above")
|
self.fail("outputs are not equal, see diff above")
|
||||||
|
|
|
@ -1112,10 +1112,6 @@ def requires_resource(resource):
|
||||||
else:
|
else:
|
||||||
return unittest.skip("resource {0!r} is not enabled".format(resource))
|
return unittest.skip("resource {0!r} is not enabled".format(resource))
|
||||||
|
|
||||||
requires_docstrings = unittest.skipUnless(
|
|
||||||
sysconfig.get_config_var('WITH_DOC_STRINGS'),
|
|
||||||
"test requires docstrings")
|
|
||||||
|
|
||||||
def cpython_only(test):
|
def cpython_only(test):
|
||||||
"""
|
"""
|
||||||
Decorator for tests only applicable on CPython.
|
Decorator for tests only applicable on CPython.
|
||||||
|
@ -1193,6 +1189,16 @@ def run_unittest(*classes):
|
||||||
suite.addTest(unittest.makeSuite(cls))
|
suite.addTest(unittest.makeSuite(cls))
|
||||||
_run_suite(suite)
|
_run_suite(suite)
|
||||||
|
|
||||||
|
#=======================================================================
|
||||||
|
# Check for the presence of docstrings.
|
||||||
|
|
||||||
|
HAVE_DOCSTRINGS = (check_impl_detail(cpython=False) or
|
||||||
|
sys.platform == 'win32' or
|
||||||
|
sysconfig.get_config_var('WITH_DOC_STRINGS'))
|
||||||
|
|
||||||
|
requires_docstrings = unittest.skipUnless(HAVE_DOCSTRINGS,
|
||||||
|
"test requires docstrings")
|
||||||
|
|
||||||
|
|
||||||
#=======================================================================
|
#=======================================================================
|
||||||
# doctest driver.
|
# doctest driver.
|
||||||
|
|
|
@ -674,6 +674,9 @@ Extension Modules
|
||||||
Tests
|
Tests
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #17041: Fix testing when Python is configured with the
|
||||||
|
--without-doc-strings option.
|
||||||
|
|
||||||
- Issue #15539: Added regression tests for Tools/scripts/pindent.py.
|
- Issue #15539: Added regression tests for Tools/scripts/pindent.py.
|
||||||
|
|
||||||
- Issue #15324: Fix regrtest parsing of --fromfile and --randomize options.
|
- Issue #15324: Fix regrtest parsing of --fromfile and --randomize options.
|
||||||
|
|
Loading…
Reference in New Issue