third_party.pylibs.pylint.src/test/unittest_checker_spelling.py

84 lines
3.0 KiB
Python
Raw Normal View History

# Copyright 2014 Michal Nowikowski.
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""Unittest for the spelling checker."""
import unittest
import tokenize
import io
from astroid import test_utils
from pylint.checkers import spelling
from pylint.testutils import CheckerTestCase, Message, set_config
# try to create enchant dictionary
try:
import enchant
except ImportError:
enchant = None
spell_dict = None
if enchant is not None:
try:
enchant.Dict("en_US")
spell_dict = "en_US"
except enchant.DictNotFoundError:
pass
def tokenize_str(code):
return list(tokenize.generate_tokens(io.StringIO(code).readline))
class SpellingCheckerTest(CheckerTestCase):
CHECKER_CLASS = spelling.SpellingChecker
@unittest.skipIf(spell_dict is None,
2014-09-16 20:40:41 +00:00
"missing python-enchant package or missing "
"spelling dictionaries")
@set_config(spelling_dict=spell_dict)
def test_check_bad_coment(self):
with self.assertAddsMessages(
Message('wrong-spelling-in-comment', line=1,
args=('coment', '# bad coment',
2014-09-16 20:40:41 +00:00
' ^^^^^^',
"comet' or 'comment' or 'moment' or 'foment"))):
self.checker.process_tokens(tokenize_str("# bad coment"))
@unittest.skipIf(spell_dict is None,
2014-09-16 20:40:41 +00:00
"missing python-enchant package or missing "
"spelling dictionaries")
@set_config(spelling_dict=spell_dict)
def test_check_bad_docstring(self):
2014-09-16 20:40:41 +00:00
stmt = test_utils.extract_node(
'def fff():\n """bad coment"""\n pass')
with self.assertAddsMessages(
Message('wrong-spelling-in-docstring', line=2,
2014-09-16 20:40:41 +00:00
args=('coment', 'bad coment',
' ^^^^^^',
"comet' or 'comment' or 'moment' or 'foment"))):
self.checker.visit_function(stmt)
2014-09-16 20:40:41 +00:00
stmt = test_utils.extract_node(
'class Abc(object):\n """bad coment"""\n pass')
with self.assertAddsMessages(
Message('wrong-spelling-in-docstring', line=2,
args=('coment', 'bad coment',
2014-09-16 20:40:41 +00:00
' ^^^^^^',
"comet' or 'comment' or 'moment' or 'foment"))):
self.checker.visit_class(stmt)
if __name__ == '__main__':
unittest.main()