| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  | """Tests for distutils.command.check.""" | 
					
						
							| 
									
										
										
										
											2019-03-27 22:34:19 +01:00
										 |  |  | import os | 
					
						
							| 
									
										
										
										
											2015-01-14 23:56:35 -05:00
										 |  |  | import textwrap | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  | import unittest | 
					
						
							| 
									
										
										
										
											2010-11-06 02:44:43 +00:00
										 |  |  | from test.support import run_unittest | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | from distutils.command.check import check, HAS_DOCUTILS | 
					
						
							|  |  |  | from distutils.tests import support | 
					
						
							|  |  |  | from distutils.errors import DistutilsSetupError | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-04 20:54:44 +03:00
										 |  |  | try: | 
					
						
							|  |  |  |     import pygments | 
					
						
							|  |  |  | except ImportError: | 
					
						
							|  |  |  |     pygments = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-27 22:34:19 +01:00
										 |  |  | HERE = os.path.dirname(__file__) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  | class CheckTestCase(support.LoggingSilencer, | 
					
						
							|  |  |  |                     support.TempdirManager, | 
					
						
							|  |  |  |                     unittest.TestCase): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-27 22:34:19 +01:00
										 |  |  |     def _run(self, metadata=None, cwd=None, **options): | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  |         if metadata is None: | 
					
						
							|  |  |  |             metadata = {} | 
					
						
							| 
									
										
										
										
											2019-03-27 22:34:19 +01:00
										 |  |  |         if cwd is not None: | 
					
						
							|  |  |  |             old_dir = os.getcwd() | 
					
						
							|  |  |  |             os.chdir(cwd) | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  |         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() | 
					
						
							| 
									
										
										
										
											2019-03-27 22:34:19 +01:00
										 |  |  |         if cwd is not None: | 
					
						
							|  |  |  |             os.chdir(old_dir) | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  |         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-20 19:04:17 +00:00
										 |  |  |         self.assertEqual(cmd._warnings, 2) | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00: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-20 19:04:17 +00:00
										 |  |  |         self.assertEqual(cmd._warnings, 0) | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00: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-20 19:04:17 +00:00
										 |  |  |         self.assertEqual(cmd._warnings, 0) | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-09 07:25:33 +02:00
										 |  |  |         # now a test with non-ASCII characters | 
					
						
							|  |  |  |         metadata = {'url': 'xxx', 'author': '\u00c9ric', | 
					
						
							|  |  |  |                     'author_email': 'xxx', 'name': 'xxx', | 
					
						
							|  |  |  |                     'version': 'xxx', | 
					
						
							|  |  |  |                     'description': 'Something about esszet \u00df', | 
					
						
							|  |  |  |                     'long_description': 'More things about esszet \u00df'} | 
					
						
							|  |  |  |         cmd = self._run(metadata) | 
					
						
							|  |  |  |         self.assertEqual(cmd._warnings, 0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-18 16:41:01 +02:00
										 |  |  |     @unittest.skipUnless(HAS_DOCUTILS, "won't test without docutils") | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  |     def test_check_document(self): | 
					
						
							|  |  |  |         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-20 19:04:17 +00:00
										 |  |  |         self.assertEqual(len(msgs), 1) | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # and non-broken rest | 
					
						
							|  |  |  |         rest = 'title\n=====\n\ntest' | 
					
						
							|  |  |  |         msgs = cmd._check_rst_data(rest) | 
					
						
							| 
									
										
										
										
											2010-11-20 19:04:17 +00:00
										 |  |  |         self.assertEqual(len(msgs), 0) | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-18 16:41:01 +02:00
										 |  |  |     @unittest.skipUnless(HAS_DOCUTILS, "won't test without docutils") | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  |     def test_check_restructuredtext(self): | 
					
						
							|  |  |  |         # 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-20 19:04:17 +00:00
										 |  |  |         self.assertEqual(cmd._warnings, 1) | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # let's see if we have an error with strict=1 | 
					
						
							| 
									
										
										
										
											2009-04-17 14:34:49 +00: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 15:00:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-09 07:25:33 +02:00
										 |  |  |         # and non-broken rest, including a non-ASCII character to test #12114 | 
					
						
							|  |  |  |         metadata['long_description'] = 'title\n=====\n\ntest \u00df' | 
					
						
							| 
									
										
										
										
											2009-04-17 14:34:49 +00:00
										 |  |  |         cmd = self._run(metadata, strict=1, restructuredtext=1) | 
					
						
							| 
									
										
										
										
											2010-11-20 19:04:17 +00:00
										 |  |  |         self.assertEqual(cmd._warnings, 0) | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-27 22:34:19 +01:00
										 |  |  |         # check that includes work to test #31292 | 
					
						
							|  |  |  |         metadata['long_description'] = 'title\n=====\n\n.. include:: includetest.rst' | 
					
						
							|  |  |  |         cmd = self._run(metadata, cwd=HERE, strict=1, restructuredtext=1) | 
					
						
							|  |  |  |         self.assertEqual(cmd._warnings, 0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-14 23:56:35 -05:00
										 |  |  |     @unittest.skipUnless(HAS_DOCUTILS, "won't test without docutils") | 
					
						
							|  |  |  |     def test_check_restructuredtext_with_syntax_highlight(self): | 
					
						
							|  |  |  |         # Don't fail if there is a `code` or `code-block` directive | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         example_rst_docs = [] | 
					
						
							|  |  |  |         example_rst_docs.append(textwrap.dedent("""\
 | 
					
						
							|  |  |  |             Here's some code: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             .. code:: python | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 def foo(): | 
					
						
							|  |  |  |                     pass | 
					
						
							|  |  |  |             """))
 | 
					
						
							|  |  |  |         example_rst_docs.append(textwrap.dedent("""\
 | 
					
						
							|  |  |  |             Here's some code: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             .. code-block:: python | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 def foo(): | 
					
						
							|  |  |  |                     pass | 
					
						
							|  |  |  |             """))
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for rest_with_code in example_rst_docs: | 
					
						
							|  |  |  |             pkg_info, dist = self.create_dist(long_description=rest_with_code) | 
					
						
							|  |  |  |             cmd = check(dist) | 
					
						
							|  |  |  |             cmd.check_restructuredtext() | 
					
						
							|  |  |  |             msgs = cmd._check_rst_data(rest_with_code) | 
					
						
							| 
									
										
										
										
											2016-10-04 20:54:44 +03:00
										 |  |  |             if pygments is not None: | 
					
						
							|  |  |  |                 self.assertEqual(len(msgs), 0) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 self.assertEqual(len(msgs), 1) | 
					
						
							|  |  |  |                 self.assertEqual( | 
					
						
							|  |  |  |                     str(msgs[0][1]), | 
					
						
							|  |  |  |                     'Cannot analyze code. Pygments package not found.' | 
					
						
							|  |  |  |                 ) | 
					
						
							| 
									
										
										
										
											2015-01-14 23:56:35 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-11 15:17:04 +00:00
										 |  |  |     def test_check_all(self): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         metadata = {'url': 'xxx', 'author': 'xxx'} | 
					
						
							|  |  |  |         self.assertRaises(DistutilsSetupError, self._run, | 
					
						
							|  |  |  |                           {}, **{'strict': 1, | 
					
						
							|  |  |  |                                  'restructuredtext': 1}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-11 15:00:43 +00:00
										 |  |  | def test_suite(): | 
					
						
							|  |  |  |     return unittest.makeSuite(CheckTestCase) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							| 
									
										
										
										
											2010-11-06 02:44:43 +00:00
										 |  |  |     run_unittest(test_suite()) |