2009-04-11 11:55:07 -03:00
|
|
|
"""Tests for distutils.command.check."""
|
|
|
|
import unittest
|
Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
To comply with the 2.x doc style, the methods in trace.rst use brackets around
optional arguments. The rest is a mostly straight merge, modulo support changed
to test_support and use of the old super call style in test_tuple.
........
r86236 | eric.araujo | 2010-11-06 03:44:43 +0100 (sam., 06 nov. 2010) | 2 lines
Make sure each test can be run standalone (./python Lib/distutils/tests/x.py)
........
r86240 | eric.araujo | 2010-11-06 05:11:59 +0100 (sam., 06 nov. 2010) | 2 lines
Prevent ResourceWarnings in test_gettext
........
r86332 | eric.araujo | 2010-11-08 19:15:17 +0100 (lun., 08 nov. 2010) | 4 lines
Add missing NEWS entry for a fix committed by Senthil.
All recent modifications to distutils should now be covered in NEWS.
........
r86340 | eric.araujo | 2010-11-08 22:48:23 +0100 (lun., 08 nov. 2010) | 2 lines
This was actually fixed for the previous alpha.
........
r87271 | eric.araujo | 2010-12-15 20:09:58 +0100 (mer., 15 déc. 2010) | 2 lines
Improve trace documentation (#9264). Patch by Eli Bendersky.
........
r87273 | eric.araujo | 2010-12-15 20:30:15 +0100 (mer., 15 déc. 2010) | 2 lines
Use nested method directives, rewrap long lines, fix whitespace.
........
r87447 | eric.araujo | 2010-12-23 20:13:05 +0100 (jeu., 23 déc. 2010) | 2 lines
Fix typo in superclass method name
........
2011-02-02 20:12:18 -04:00
|
|
|
from test.test_support import run_unittest
|
2009-04-11 11:55:07 -03:00
|
|
|
|
|
|
|
from distutils.command.check import check, HAS_DOCUTILS
|
|
|
|
from distutils.tests import support
|
|
|
|
from distutils.errors import DistutilsSetupError
|
|
|
|
|
|
|
|
class CheckTestCase(support.LoggingSilencer,
|
|
|
|
support.TempdirManager,
|
|
|
|
unittest.TestCase):
|
|
|
|
|
|
|
|
def _run(self, metadata=None, **options):
|
|
|
|
if metadata is None:
|
|
|
|
metadata = {}
|
|
|
|
pkg_info, dist = self.create_dist(**metadata)
|
|
|
|
cmd = check(dist)
|
|
|
|
cmd.initialize_options()
|
|
|
|
for name, value in options.items():
|
|
|
|
setattr(cmd, name, value)
|
|
|
|
cmd.ensure_finalized()
|
|
|
|
cmd.run()
|
|
|
|
return cmd
|
|
|
|
|
|
|
|
def test_check_metadata(self):
|
|
|
|
# let's run the command with no metadata at all
|
|
|
|
# by default, check is checking the metadata
|
|
|
|
# should have some warnings
|
|
|
|
cmd = self._run()
|
2010-11-21 09:34:58 -04:00
|
|
|
self.assertEqual(cmd._warnings, 2)
|
2009-04-11 11:55:07 -03:00
|
|
|
|
|
|
|
# now let's add the required fields
|
|
|
|
# and run it again, to make sure we don't get
|
|
|
|
# any warning anymore
|
|
|
|
metadata = {'url': 'xxx', 'author': 'xxx',
|
|
|
|
'author_email': 'xxx',
|
|
|
|
'name': 'xxx', 'version': 'xxx'}
|
|
|
|
cmd = self._run(metadata)
|
2010-11-21 09:34:58 -04:00
|
|
|
self.assertEqual(cmd._warnings, 0)
|
2009-04-11 11:55:07 -03:00
|
|
|
|
|
|
|
# now with the strict mode, we should
|
|
|
|
# get an error if there are missing metadata
|
|
|
|
self.assertRaises(DistutilsSetupError, self._run, {}, **{'strict': 1})
|
|
|
|
|
|
|
|
# and of course, no error when all metadata are present
|
|
|
|
cmd = self._run(metadata, strict=1)
|
2010-11-21 09:34:58 -04:00
|
|
|
self.assertEqual(cmd._warnings, 0)
|
2009-04-11 11:55:07 -03:00
|
|
|
|
|
|
|
def test_check_document(self):
|
|
|
|
if not HAS_DOCUTILS: # won't test without docutils
|
|
|
|
return
|
|
|
|
pkg_info, dist = self.create_dist()
|
|
|
|
cmd = check(dist)
|
|
|
|
|
|
|
|
# let's see if it detects broken rest
|
|
|
|
broken_rest = 'title\n===\n\ntest'
|
|
|
|
msgs = cmd._check_rst_data(broken_rest)
|
2010-11-21 09:34:58 -04:00
|
|
|
self.assertEqual(len(msgs), 1)
|
2009-04-11 11:55:07 -03:00
|
|
|
|
|
|
|
# and non-broken rest
|
|
|
|
rest = 'title\n=====\n\ntest'
|
|
|
|
msgs = cmd._check_rst_data(rest)
|
2010-11-21 09:34:58 -04:00
|
|
|
self.assertEqual(len(msgs), 0)
|
2009-04-11 11:55:07 -03:00
|
|
|
|
|
|
|
def test_check_restructuredtext(self):
|
|
|
|
if not HAS_DOCUTILS: # won't test without docutils
|
|
|
|
return
|
|
|
|
# let's see if it detects broken rest in long_description
|
|
|
|
broken_rest = 'title\n===\n\ntest'
|
|
|
|
pkg_info, dist = self.create_dist(long_description=broken_rest)
|
|
|
|
cmd = check(dist)
|
|
|
|
cmd.check_restructuredtext()
|
2010-11-21 09:34:58 -04:00
|
|
|
self.assertEqual(cmd._warnings, 1)
|
2009-04-11 11:55:07 -03:00
|
|
|
|
|
|
|
# let's see if we have an error with strict=1
|
2009-04-17 11:29:56 -03:00
|
|
|
metadata = {'url': 'xxx', 'author': 'xxx',
|
|
|
|
'author_email': 'xxx',
|
|
|
|
'name': 'xxx', 'version': 'xxx',
|
|
|
|
'long_description': broken_rest}
|
|
|
|
self.assertRaises(DistutilsSetupError, self._run, metadata,
|
|
|
|
**{'strict': 1, 'restructuredtext': 1})
|
2009-04-11 11:55:07 -03:00
|
|
|
|
|
|
|
# and non-broken rest
|
2009-04-17 11:29:56 -03:00
|
|
|
metadata['long_description'] = 'title\n=====\n\ntest'
|
|
|
|
cmd = self._run(metadata, strict=1, restructuredtext=1)
|
2010-11-21 09:34:58 -04:00
|
|
|
self.assertEqual(cmd._warnings, 0)
|
2009-04-11 11:55:07 -03:00
|
|
|
|
2009-04-11 12:14:17 -03:00
|
|
|
def test_check_all(self):
|
|
|
|
|
|
|
|
metadata = {'url': 'xxx', 'author': 'xxx'}
|
|
|
|
self.assertRaises(DistutilsSetupError, self._run,
|
|
|
|
{}, **{'strict': 1,
|
|
|
|
'restructuredtext': 1})
|
|
|
|
|
2009-04-11 11:55:07 -03:00
|
|
|
def test_suite():
|
|
|
|
return unittest.makeSuite(CheckTestCase)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
To comply with the 2.x doc style, the methods in trace.rst use brackets around
optional arguments. The rest is a mostly straight merge, modulo support changed
to test_support and use of the old super call style in test_tuple.
........
r86236 | eric.araujo | 2010-11-06 03:44:43 +0100 (sam., 06 nov. 2010) | 2 lines
Make sure each test can be run standalone (./python Lib/distutils/tests/x.py)
........
r86240 | eric.araujo | 2010-11-06 05:11:59 +0100 (sam., 06 nov. 2010) | 2 lines
Prevent ResourceWarnings in test_gettext
........
r86332 | eric.araujo | 2010-11-08 19:15:17 +0100 (lun., 08 nov. 2010) | 4 lines
Add missing NEWS entry for a fix committed by Senthil.
All recent modifications to distutils should now be covered in NEWS.
........
r86340 | eric.araujo | 2010-11-08 22:48:23 +0100 (lun., 08 nov. 2010) | 2 lines
This was actually fixed for the previous alpha.
........
r87271 | eric.araujo | 2010-12-15 20:09:58 +0100 (mer., 15 déc. 2010) | 2 lines
Improve trace documentation (#9264). Patch by Eli Bendersky.
........
r87273 | eric.araujo | 2010-12-15 20:30:15 +0100 (mer., 15 déc. 2010) | 2 lines
Use nested method directives, rewrap long lines, fix whitespace.
........
r87447 | eric.araujo | 2010-12-23 20:13:05 +0100 (jeu., 23 déc. 2010) | 2 lines
Fix typo in superclass method name
........
2011-02-02 20:12:18 -04:00
|
|
|
run_unittest(test_suite())
|