2016-08-04 00:35:53 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from __future__ import print_function
|
|
|
|
|
2016-08-29 00:52:31 +02:00
|
|
|
import argparse
|
2016-08-04 00:35:53 +02:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2016-08-29 00:52:31 +02:00
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument('--coverage', dest='coverage',
|
2016-08-04 00:35:53 +02:00
|
|
|
action="store_true",
|
2016-08-29 00:52:31 +02:00
|
|
|
default=False, help='compute test coverage')
|
|
|
|
args = parser.parse_args()
|
2016-08-04 00:35:53 +02:00
|
|
|
|
|
|
|
def dir_join(dir1, dir2):
|
|
|
|
# type: (str, str) -> str
|
|
|
|
return os.path.abspath(os.path.join(dir1, dir2))
|
|
|
|
|
|
|
|
tools_dir = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
root_dir = dir_join(tools_dir, '..')
|
|
|
|
tools_test_dir = dir_join(tools_dir, 'tests')
|
|
|
|
|
|
|
|
sys.path.insert(0, root_dir)
|
|
|
|
|
|
|
|
loader = unittest.TestLoader() # type: ignore # https://github.com/python/typeshed/issues/372
|
|
|
|
|
2016-08-29 00:52:31 +02:00
|
|
|
if args.coverage:
|
2016-08-04 00:35:53 +02:00
|
|
|
import coverage
|
2016-09-11 05:43:39 +02:00
|
|
|
cov = coverage.Coverage(branch=True, omit=[ "*/zulip-venv-cache/*", dir_join(tools_test_dir, "*") ])
|
2016-08-04 00:35:53 +02:00
|
|
|
cov.start()
|
|
|
|
|
|
|
|
suite = loader.discover(start_dir=tools_test_dir, top_level_dir=root_dir)
|
|
|
|
runner = unittest.TextTestRunner(verbosity=2)
|
|
|
|
result = runner.run(suite) # type: ignore # https://github.com/python/typeshed/issues/372
|
|
|
|
if result.errors or result.failures:
|
|
|
|
raise Exception('Test failed!')
|
|
|
|
|
2016-08-29 00:52:31 +02:00
|
|
|
if args.coverage:
|
2016-08-04 00:35:53 +02:00
|
|
|
cov.stop()
|
|
|
|
cov.save()
|
|
|
|
cov.html_report(directory='var/tools_coverage')
|
|
|
|
print("HTML report saved to var/tools_coverage")
|
|
|
|
|
|
|
|
print('SUCCESS')
|