2010-12-26 21:57:44 +02:00
|
|
|
# test_pylint.py - Run pylint in errors-only mode.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2010, Stefano Rivera <stefanor@ubuntu.com>
|
2017-04-30 22:29:41 +02:00
|
|
|
# Copyright (C) 2017, Benjamin Drung <bdrung@ubuntu.com>
|
2010-12-26 21:57:44 +02:00
|
|
|
#
|
|
|
|
# Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
|
|
# copyright notice and this permission notice appear in all copies.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
|
|
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
# AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
|
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
|
# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
# PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
2017-04-30 22:29:41 +02:00
|
|
|
import sys
|
2010-12-26 21:57:44 +02:00
|
|
|
|
|
|
|
import setup
|
|
|
|
from ubuntutools.test import unittest
|
2011-05-24 20:22:37 +02:00
|
|
|
from ubuntutools import subprocess
|
2010-12-26 21:57:44 +02:00
|
|
|
|
2010-12-27 13:39:43 +02:00
|
|
|
|
2010-12-26 21:57:44 +02:00
|
|
|
class PylintTestCase(unittest.TestCase):
|
|
|
|
def test_pylint(self):
|
|
|
|
"Test: Run pylint on Python source code"
|
|
|
|
files = ['ubuntutools']
|
|
|
|
for script in setup.scripts:
|
2017-04-30 22:29:41 +02:00
|
|
|
with open(script, 'r') as script_file:
|
|
|
|
shebang = script_file.readline()
|
|
|
|
if ((sys.version_info[0] == 3 and 'python3' in shebang) or
|
|
|
|
('python' in shebang and 'python3' not in shebang)):
|
2010-12-26 21:57:44 +02:00
|
|
|
files.append(script)
|
2017-04-30 22:29:41 +02:00
|
|
|
|
|
|
|
if sys.version_info[0] == 3:
|
|
|
|
pylint_binary = 'pylint3'
|
|
|
|
else:
|
|
|
|
pylint_binary = 'pylint'
|
|
|
|
cmd = [pylint_binary, '--rcfile=ubuntutools/test/pylint.conf', '-E',
|
|
|
|
'--reports=n', '--'] + files
|
|
|
|
sys.stderr.write("Running following command:\n{}\n".format(" ".join(cmd)))
|
2010-12-27 22:33:01 +01:00
|
|
|
process = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.PIPE, close_fds=True)
|
2010-12-26 21:57:44 +02:00
|
|
|
|
2010-12-27 22:33:01 +01:00
|
|
|
out, err = process.communicate()
|
2017-04-30 22:29:41 +02:00
|
|
|
self.assertFalse(err, pylint_binary + ' crashed. Error output:\n' + err.decode())
|
|
|
|
self.assertFalse(out, pylint_binary + " found issues:\n" + out.decode())
|