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

76 lines
2.8 KiB
Python
Raw Normal View History

2006-04-26 10:48:09 +00:00
# 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.,
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
""" Copyright (c) 2000-2003 LOGILAB S.A. (Paris, FRANCE).
http://www.logilab.fr/ -- mailto:contact@logilab.fr
"""
__revision__ = "$Id: smoketest.py,v 1.6 2005-04-15 10:40:24 syt Exp $"
import sys
from cStringIO import StringIO
2006-08-10 13:40:14 +00:00
from logilab.common.testlib import TestCase, unittest_main
2006-04-26 10:48:09 +00:00
from pylint.lint import Run
from pylint.reporters.text import TextReporter, TextReporter2, ColorizedTextReporter
from pylint.reporters.html import HTMLReporter
2006-08-10 13:40:14 +00:00
class LintSmokeTest(TestCase):
2006-04-26 10:48:09 +00:00
def test1(self):
"""make pylint checking itself"""
Run(['--include-ids=y', 'pylint'], reporter=TextReporter(StringIO()), quiet=1)
def test2(self):
"""make pylint checking itself"""
Run(['pylint.lint'], reporter=TextReporter2(StringIO()), quiet=1)
def test3(self):
"""make pylint checking itself"""
Run(['pylint.checkers'], reporter=HTMLReporter(StringIO()), quiet=1)
def test4(self):
"""make pylint checking itself"""
Run(['pylint.checkers'], reporter=ColorizedTextReporter(StringIO()), quiet=1)
def test_generate_config_option(self):
"""make pylint checking itself"""
sys.stdout = StringIO()
try:
self.assertRaises(SystemExit, Run,
['--generate-rcfile'],
reporter=HTMLReporter(StringIO()),
quiet=1)
finally:
sys.stdout = sys.__stdout__
def test_help_message_option(self):
"""make pylint checking itself"""
sys.stdout = StringIO()
try:
self.assertRaises(SystemExit, Run,
['--help-msg', 'W0101'],
reporter=HTMLReporter(StringIO()),
quiet=1)
self.assertRaises(SystemExit, Run,
['--help-msg', 'WX101'],
reporter=HTMLReporter(StringIO()),
quiet=1)
finally:
sys.stdout = sys.__stdout__
if __name__ == '__main__':
2006-08-10 13:40:14 +00:00
unittest_main()