forked from t4ngo/dragonfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_test.py
116 lines (91 loc) · 3.38 KB
/
build_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#
# This file is part of Dragonfly.
# (c) Copyright 2007, 2008 by Christo Butcher
# Licensed under the LGPL.
#
# Dragonfly is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Dragonfly 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with Dragonfly. If not, see
# <http://www.gnu.org/licenses/>.
#
"""
Main test runner script
============================================================================
This file is Dragonfly's main test scripts. Running it will execute all
tests within the Dragonfly library.
Dependencies
----------------------------------------------------------------------------
This script uses several external libraries to collect, run, and analyze
the Dragonfly tests. It requires the following external dependencies:
* `Nose <http://somethingaboutorange.com/mrl/projects/nose/>`_ --
an extension on unittest.
* `Coverage <http://nedbatchelder.com/code/coverage/>`_ --
a code coverage measuring tool.
"""
import sys
import os.path
import subprocess
#===========================================================================
# Test control functions for the various types of tests: nose, pep8, pylint.
def run_nose():
""" Use Nose to collect and execute test cases within Dragonfly. """
import nose.core
import coverage.control
from pkg_resources import resource_filename
# Determine directory in which to save coverage report.
setup_path = os.path.abspath(resource_filename(__name__, "setup.py"))
directory = os.path.dirname(setup_path)
cover_dir = os.path.join(directory, "coverage")
# Virtual commandline arguments to be given to nose.
argv = [
sys.argv[0],
"--failure-detail",
"--with-doctest",
"--doctest-extension=doctest",
]
# Clear coverage history and start new coverage measurement.
coverage = coverage.control.coverage()
coverage.erase()
coverage.start()
# Let nose run tests.
nose.core.TestProgram(argv=argv, exit=False)
# Save coverage data and generate HTML report.
coverage.stop()
coverage.save()
coverage.html_report(directory=cover_dir)
def run_pylint():
""" Use the pylint package to analyze the Dragonfly source code. """
from pylint import lint
args = [
"dragonfly",
]
lint.Run(args)
def run_pep8():
""" Use the pep8 package to analyze the Dragonfly source code. """
import pep8
argv = [
sys.argv[0],
"--filename=*.py",
]
from pkg_resources import resource_filename
setup_path = os.path.abspath(resource_filename(__name__, "setup.py"))
directory = os.path.dirname(setup_path)
pep8.process_options(argv)
pep8.input_dir(directory)
#===========================================================================
# This script's main control logic.
def main():
# run_pep8()
# run_pylint()
run_nose()
if __name__ == "__main__":
main()