test_check.py 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. # -*- encoding: utf8 -*-
  2. """Tests for distutils.command.check."""
  3. import textwrap
  4. import unittest
  5. from test.test_support import run_unittest
  6. from distutils.command.check import check, HAS_DOCUTILS
  7. from distutils.tests import support
  8. from distutils.errors import DistutilsSetupError
  9. class CheckTestCase(support.LoggingSilencer,
  10. support.TempdirManager,
  11. unittest.TestCase):
  12. def _run(self, metadata=None, **options):
  13. if metadata is None:
  14. metadata = {}
  15. pkg_info, dist = self.create_dist(**metadata)
  16. cmd = check(dist)
  17. cmd.initialize_options()
  18. for name, value in options.items():
  19. setattr(cmd, name, value)
  20. cmd.ensure_finalized()
  21. cmd.run()
  22. return cmd
  23. def test_check_metadata(self):
  24. # let's run the command with no metadata at all
  25. # by default, check is checking the metadata
  26. # should have some warnings
  27. cmd = self._run()
  28. self.assertEqual(cmd._warnings, 2)
  29. # now let's add the required fields
  30. # and run it again, to make sure we don't get
  31. # any warning anymore
  32. metadata = {'url': 'xxx', 'author': 'xxx',
  33. 'author_email': 'xxx',
  34. 'name': 'xxx', 'version': 'xxx'}
  35. cmd = self._run(metadata)
  36. self.assertEqual(cmd._warnings, 0)
  37. # now with the strict mode, we should
  38. # get an error if there are missing metadata
  39. self.assertRaises(DistutilsSetupError, self._run, {}, **{'strict': 1})
  40. # and of course, no error when all metadata are present
  41. cmd = self._run(metadata, strict=1)
  42. self.assertEqual(cmd._warnings, 0)
  43. # now a test with Unicode entries
  44. metadata = {'url': u'xxx', 'author': u'\u00c9ric',
  45. 'author_email': u'xxx', u'name': 'xxx',
  46. 'version': u'xxx',
  47. 'description': u'Something about esszet \u00df',
  48. 'long_description': u'More things about esszet \u00df'}
  49. cmd = self._run(metadata)
  50. self.assertEqual(cmd._warnings, 0)
  51. @unittest.skipUnless(HAS_DOCUTILS, "won't test without docutils")
  52. def test_check_document(self):
  53. pkg_info, dist = self.create_dist()
  54. cmd = check(dist)
  55. # let's see if it detects broken rest
  56. broken_rest = 'title\n===\n\ntest'
  57. msgs = cmd._check_rst_data(broken_rest)
  58. self.assertEqual(len(msgs), 1)
  59. # and non-broken rest
  60. rest = 'title\n=====\n\ntest'
  61. msgs = cmd._check_rst_data(rest)
  62. self.assertEqual(len(msgs), 0)
  63. @unittest.skipUnless(HAS_DOCUTILS, "won't test without docutils")
  64. def test_check_restructuredtext(self):
  65. # let's see if it detects broken rest in long_description
  66. broken_rest = 'title\n===\n\ntest'
  67. pkg_info, dist = self.create_dist(long_description=broken_rest)
  68. cmd = check(dist)
  69. cmd.check_restructuredtext()
  70. self.assertEqual(cmd._warnings, 1)
  71. # let's see if we have an error with strict=1
  72. metadata = {'url': 'xxx', 'author': 'xxx',
  73. 'author_email': 'xxx',
  74. 'name': 'xxx', 'version': 'xxx',
  75. 'long_description': broken_rest}
  76. self.assertRaises(DistutilsSetupError, self._run, metadata,
  77. **{'strict': 1, 'restructuredtext': 1})
  78. # and non-broken rest, including a non-ASCII character to test #12114
  79. metadata['long_description'] = u'title\n=====\n\ntest \u00df'
  80. cmd = self._run(metadata, strict=1, restructuredtext=1)
  81. self.assertEqual(cmd._warnings, 0)
  82. @unittest.skipUnless(HAS_DOCUTILS, "won't test without docutils")
  83. def test_check_restructuredtext_with_syntax_highlight(self):
  84. # Don't fail if there is a `code` or `code-block` directive
  85. example_rst_docs = []
  86. example_rst_docs.append(textwrap.dedent("""\
  87. Here's some code:
  88. .. code:: python
  89. def foo():
  90. pass
  91. """))
  92. example_rst_docs.append(textwrap.dedent("""\
  93. Here's some code:
  94. .. code-block:: python
  95. def foo():
  96. pass
  97. """))
  98. for rest_with_code in example_rst_docs:
  99. pkg_info, dist = self.create_dist(long_description=rest_with_code)
  100. cmd = check(dist)
  101. cmd.check_restructuredtext()
  102. self.assertEqual(cmd._warnings, 0)
  103. msgs = cmd._check_rst_data(rest_with_code)
  104. self.assertEqual(len(msgs), 0)
  105. def test_check_all(self):
  106. metadata = {'url': 'xxx', 'author': 'xxx'}
  107. self.assertRaises(DistutilsSetupError, self._run,
  108. {}, **{'strict': 1,
  109. 'restructuredtext': 1})
  110. def test_suite():
  111. return unittest.makeSuite(CheckTestCase)
  112. if __name__ == "__main__":
  113. run_unittest(test_suite())