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()
            self.assertEqual(cmd._warnings, 0)
            msgs = cmd._check_rst_data(rest_with_code)
            self.assertEqual(len(msgs), 0)
    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)
            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.'
                )
Exemple #3
0
 def test_check_document(self):
     pkg_info, dist = self.create_dist()
     cmd = check(dist)
     broken_rest = 'title\n===\n\ntest'
     msgs = cmd._check_rst_data(broken_rest)
     self.assertEqual(len(msgs), 1)
     rest = 'title\n=====\n\ntest'
     msgs = cmd._check_rst_data(rest)
     self.assertEqual(len(msgs), 0)
Exemple #4
0
 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_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)
        self.assertEqual(len(msgs), 1)

        # and non-broken rest
        rest = 'title\n=====\n\ntest'
        msgs = cmd._check_rst_data(rest)
        self.assertEqual(len(msgs), 0)
Exemple #6
0
    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)
        self.assertEqual(len(msgs), 1)

        # and non-broken rest
        rest = 'title\n=====\n\ntest'
        msgs = cmd._check_rst_data(rest)
        self.assertEqual(len(msgs), 0)
Exemple #7
0
 def _run(self, metadata=None, cwd=None, **options):
     if metadata is None:
         metadata = {}
     if cwd is not None:
         old_dir = os.getcwd()
         os.chdir(cwd)
     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()
     if cwd is not None:
         os.chdir(old_dir)
     return cmd
Exemple #8
0
 def test_check_restructuredtext(self):
     broken_rest = 'title\n===\n\ntest'
     pkg_info, dist = self.create_dist(long_description=broken_rest)
     cmd = check(dist)
     cmd.check_restructuredtext()
     self.assertEqual(cmd._warnings, 1)
     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})
     metadata['long_description'] = u'title\n=====\n\ntest \xdf'
     cmd = self._run(metadata, strict=1, restructuredtext=1)
     self.assertEqual(cmd._warnings, 0)
Exemple #9
0
 def test_check_restructuredtext(self):
     broken_rest = 'title\n===\n\ntest'
     pkg_info, dist = self.create_dist(long_description=broken_rest)
     cmd = check(dist)
     cmd.check_restructuredtext()
     self.assertEqual(cmd._warnings, 1)
     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})
     metadata['long_description'] = u'title\n=====\n\ntest \xdf'
     cmd = self._run(metadata, strict=1, restructuredtext=1)
     self.assertEqual(cmd._warnings, 0)
Exemple #10
0
 def test_check_restructuredtext(self):
     broken_rest = "title\n===\n\ntest"
     pkg_info, dist = self.create_dist(long_description=broken_rest)
     cmd = check(dist)
     cmd.check_restructuredtext()
     self.assertEqual(cmd._warnings, 1)
     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})
     metadata["long_description"] = u"title\n=====\n\ntest \xdf"
     cmd = self._run(metadata, strict=1, restructuredtext=1)
     self.assertEqual(cmd._warnings, 0)
    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()
        self.assertEqual(cmd._warnings, 1)

        # let's see if we have an error with strict=1
        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})

        # and non-broken rest, including a non-ASCII character to test #12114
        metadata['long_description'] = 'title\n=====\n\ntest \u00df'
        cmd = self._run(metadata, strict=1, restructuredtext=1)
        self.assertEqual(cmd._warnings, 0)
Exemple #12
0
    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()
        self.assertEqual(cmd._warnings, 1)

        # let's see if we have an error with strict=1
        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})

        # and non-broken rest, including a non-ASCII character to test #12114
        metadata['long_description'] = u'title\n=====\n\ntest \u00df'
        cmd = self._run(metadata, strict=1, restructuredtext=1)
        self.assertEqual(cmd._warnings, 0)
Exemple #13
0
    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()
        self.assertEqual(cmd._warnings, 1)

        # let's see if we have an error with strict=1
        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})

        # and non-broken rest
        metadata['long_description'] = 'title\n=====\n\ntest'
        cmd = self._run(metadata, strict=1, restructuredtext=1)
        self.assertEqual(cmd._warnings, 0)
    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()
        self.assertEquals(cmd._warnings, 1)

        # let's see if we have an error with strict=1
        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})

        # and non-broken rest
        metadata['long_description'] = 'title\n=====\n\ntest'
        cmd = self._run(metadata, strict=1, restructuredtext=1)
        self.assertEquals(cmd._warnings, 0)
 def __check_annotation__(self, check, param, value, check_history):
     for annot in self._annotations:
         check(param, annot, {param: value},
               check_history + 'Check_All_OK check: ' + str(annot) + ' while trying: ' + str(self) + '\n')