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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
|
#!/usr/bin/env python
# This code is part of the Biopython distribution and governed by its
# license. Please see the LICENSE file that should have been included
# as part of this package.
"""Run a set of PyUnit-based regression tests.
This will find all modules whose name is "test_*.py" in the test
directory, and run them. Various command line options provide
additional facilities.
Command line options:
--help -- show usage info
-g;--generate -- write the output file for a test instead of comparing it.
The name of the test to write the output for must be
specified.
-v;--verbose -- run tests with higher verbosity (does not affect our
print-and-compare style unit tests).
<test_name> -- supply the name of one (or more) tests to be run.
The .py file extension is optional.
doctest -- run the docstring tests.
By default, all tests are run.
"""
# This is the list of modules containing docstring tests.
# If you develop docstring tests for other modules, please add
# those modules here.
DOCTEST_MODULES = ["Bio.Application",
"Bio.Seq",
"Bio.SeqFeature",
"Bio.SeqRecord",
"Bio.SeqIO",
"Bio.SeqIO.AceIO",
"Bio.SeqIO.PhdIO",
"Bio.SeqIO.QualityIO",
"Bio.SeqIO.SffIO",
"Bio.SeqUtils",
"Bio.Align",
"Bio.Align.Generic",
"Bio.AlignIO",
"Bio.AlignIO.StockholmIO",
"Bio.Blast.Applications",
"Bio.Clustalw",
"Bio.Emboss.Applications",
"Bio.KEGG.Compound",
"Bio.KEGG.Enzyme",
"Bio.Wise",
"Bio.Wise.psw",
"Bio.Motif",
]
#Silently ignore any doctests for modules requiring numpy!
try:
import numpy
DOCTEST_MODULES.extend(["Bio.Statistics.lowess"])
except ImportError:
pass
# The default verbosity (not verbose)
VERBOSITY = 0
# standard modules
import sys
import cStringIO
import os
import re
import getopt
import time
import traceback
import unittest
import doctest
import distutils.util
def main(argv):
# insert our paths in sys.path:
# ../build/lib.*
# ..
# Q. Why this order?
# A. To find the C modules (which are in ../build/lib.*/Bio)
# Q. Then, why ".."?
# A. Because Martel may not be in ../build/lib.*
test_path = sys.path[0] or "."
source_path = os.path.abspath("%s/.." % test_path)
sys.path.insert(1, source_path)
build_path = os.path.abspath("%s/../build/lib.%s-%s" % (
test_path, distutils.util.get_platform(), sys.version[:3]))
if os.access(build_path, os.F_OK):
sys.path.insert(1, build_path)
# get the command line options
try:
opts, args = getopt.getopt(argv, 'gv', ["generate", "verbose",
"doctest", "help"])
except getopt.error, msg:
print msg
print __doc__
return 2
verbosity = VERBOSITY
# deal with the options
for o, a in opts:
if o == "--help":
print __doc__
return 0
if o == "-g" or o == "--generate":
if len(args) > 1:
print "Only one argument (the test name) needed for generate"
print __doc__
return 2
elif len(args) == 0:
print "No test name specified to generate output for."
print __doc__
return 2
# strip off .py if it was included
if args[0][-3:] == ".py":
args[0] = args[0][:-3]
test = ComparisonTestCase(args[0])
test.generate_output()
return 0
if o == "-v" or o == "--verbose":
verbosity = 2
# deal with the arguments, which should be names of tests to run
for arg_num in range(len(args)):
# strip off the .py if it was included
if args[arg_num][-3:] == ".py":
args[arg_num] = args[arg_num][:-3]
# run the tests
runner = TestRunner(args, verbosity)
runner.run()
class ComparisonTestCase(unittest.TestCase):
"""Run a print-and-compare test and compare its output against expected output.
"""
def __init__(self, name, output=None):
"""Initialize with the test to run.
Arguments:
o name - The name of the test. The expected output should be
stored in the file output/name.
o output - The output that was generated when this test was run.
"""
unittest.TestCase.__init__(self)
self.name = name
self.output = output
def shortDescription(self):
return self.name
def runTest(self):
# check the expected output to be consistent with what
# we generated
outputdir = os.path.join(TestRunner.testdir, "output")
outputfile = os.path.join(outputdir, self.name)
try:
expected = open(outputfile, 'r')
except IOError:
self.fail("Warning: Can't open %s for test %s" % (outputfile, self.name))
self.output.seek(0)
# first check that we are dealing with the right output
# the first line of the output file is the test name
expected_test = expected.readline().strip()
assert expected_test == self.name, "\nOutput: %s\nExpected: %s" % \
(self.name, expected_test)
# now loop through the output and compare it to the expected file
while True:
expected_line = expected.readline()
output_line = self.output.readline()
# stop looping if either of the info handles reach the end
if not(expected_line) or not(output_line):
# make sure both have no information left
assert expected_line == '', "Unread: %s" % expected_line
assert output_line == '', "Extra output: %s" % output_line
break
# normalize the newlines in the two lines
expected_line = expected_line.strip("\r\n")
output_line = output_line.strip("\r\n")
# if the line is a doctest or PyUnit time output like:
# Ran 2 tests in 0.285s
# ignore it, so we don't have problems with different running times
if re.compile("^Ran [0-9]+ tests? in ").match(expected_line):
pass
# otherwise make sure the two lines are the same
else:
assert expected_line == output_line, \
"\nOutput : %s\nExpected: %s" \
% (repr(output_line), repr(expected_line))
def generate_output(self):
"""Generate the golden output for the specified test.
"""
outputdir = os.path.join(TestRunner.testdir, "output")
outputfile = os.path.join(outputdir, self.name)
output_handle = open(outputfile, 'w')
# write the test name as the first line of the output
output_handle.write(self.name + "\n")
# remember standard out so we can reset it after we are done
save_stdout = sys.stdout
try:
# write the output from the test into a string
sys.stdout = output_handle
__import__(self.name)
finally:
output_handle.close()
# return standard out to its normal setting
sys.stdout = save_stdout
class TestRunner(unittest.TextTestRunner):
if __name__ == '__main__':
file = sys.argv[0]
else:
file = __file__
testdir = os.path.dirname(file) or os.curdir
def __init__(self, tests=[], verbosity=0):
# if no tests were specified to run, we run them all
# including the doctests
self.tests = tests
if not self.tests:
# Make a list of all applicable test modules.
names = os.listdir(TestRunner.testdir)
for name in names:
if name[:5] == "test_" and name[-3:] == ".py":
self.tests.append(name[:-3])
self.tests.sort()
self.tests.append("doctest")
if "doctest" in self.tests:
self.tests.remove("doctest")
self.tests.extend(DOCTEST_MODULES)
stream = cStringIO.StringIO()
unittest.TextTestRunner.__init__(self, stream,
verbosity=verbosity)
def runTest(self, name):
from Bio import MissingExternalDependencyError
result = self._makeResult()
output = cStringIO.StringIO()
# Run the actual test inside a try/except to catch import errors.
# Have to do a nested try because try/except/except/finally requires
# python 2.5+
try:
try:
stdout = sys.stdout
sys.stdout = output
if name.startswith("test_"):
sys.stderr.write("%s ... " % name)
#It's either a unittest or a print-and-compare test
suite = unittest.TestLoader().loadTestsFromName(name)
if suite.countTestCases()==0:
# This is a print-and-compare test instead of a
# unittest-type test.
test = ComparisonTestCase(name, output)
suite = unittest.TestSuite([test])
else:
#It's a doc test
sys.stderr.write("%s docstring test ... " % name)
#Can't use fromlist=name.split(".") until python 2.5+
module = __import__(name, None, None, name.split("."))
suite = doctest.DocTestSuite(module)
del module
suite.run(result)
if result.wasSuccessful():
sys.stderr.write("ok\n")
return True
else:
sys.stderr.write("FAIL\n")
result.printErrors()
return False
except MissingExternalDependencyError, msg:
sys.stderr.write("skipping. %s\n" % msg)
return True
except Exception, msg:
# This happened during the import
sys.stderr.write("ERROR\n")
result.stream.write(result.separator1+"\n")
result.stream.write("ERROR: %s\n" % name)
result.stream.write(result.separator2+"\n")
result.stream.write(traceback.format_exc())
return False
except KeyboardInterrupt, err:
# Want to allow this, and abort the test
# (see below for special case)
raise err
except:
# This happens in Jython with java.lang.ClassFormatError:
# Invalid method Code length ...
sys.stderr.write("ERROR\n")
result.stream.write(result.separator1+"\n")
result.stream.write("ERROR: %s\n" % name)
result.stream.write(result.separator2+"\n")
result.stream.write(traceback.format_exc())
return False
finally:
sys.stdout = stdout
def run(self):
failures = 0
startTime = time.time()
for test in self.tests:
ok = self.runTest(test)
if not ok:
failures += 1
total = len(self.tests)
stopTime = time.time()
timeTaken = stopTime - startTime
sys.stderr.write(self.stream.getvalue())
sys.stderr.write('-' * 70 + "\n")
sys.stderr.write("Ran %d test%s in %.3f seconds\n" %
(total, total != 1 and "s" or "", timeTaken))
sys.stderr.write("\n")
if failures:
sys.stderr.write("FAILED (failures = %d)\n" % failures)
if __name__ == "__main__":
#Don't do a sys.exit(...) as it isn't nice if run from IDLE.
main(sys.argv[1:])
|