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
|
#!/usr/bin/env python2
"""Tarantool regression test suite front-end."""
__author__ = "Konstantin Osipov <kostja.osipov@gmail.com>"
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
import os
import sys
import time
import string
import shutil
import os.path
import argparse
from itertools import product
from lib.colorer import Colorer
from lib.parallel import Supervisor
from lib.test_suite import TestSuite
from lib.tarantool_server import TarantoolServer
from lib.unittest_server import UnittestServer
color_stdout = Colorer()
#
# Run a collection of tests.
#
class Options:
"""Handle options of test-runner"""
def __init__(self):
"""Add all program options, with their defaults."""
parser = argparse.ArgumentParser(
description = "Tarantool regression test suite front-end.")
parser.epilog = "For a complete description, use 'pydoc ./" +\
os.path.basename(sys.argv[0]) + "'"
parser.add_argument(
"tests",
metavar="test",
nargs="*",
default = [""],
help="""Can be empty. List of test names, to look for in suites. Each
name is used as a substring to look for in the path to test file,
e.g. "show" will run all tests that have "show" in their name in all
suites, "box/show" will only enable tests starting with "show" in
"box" suite. Default: run all tests in all specified suites.""")
parser.add_argument(
"--suite",
dest = 'suites',
metavar = "suite",
nargs="*",
default = [],
help = """List of test suites to look for tests in. Default: "" -
means find all available.""")
parser.add_argument(
"--force",
dest = "is_force",
action = "store_true",
default = False,
help = """Go on with other tests in case of an individual test failure.
Default: false.""")
parser.add_argument(
"--gdb",
dest = "gdb",
action = "store_true",
default = False,
help = """Start the server under 'gdb' debugger in detached
Screen. This option is mutually exclusive with --valgrind and
--lldb.
Default: false.""")
parser.add_argument(
"--lldb",
dest = "lldb",
action = "store_true",
default = False,
help = """Start the server under 'lldb' debugger in detached
Screen. This option is mutually exclusive with --valgrind
and --gdb.
Default: false.""")
parser.add_argument(
"--valgrind",
dest = "valgrind",
action = "store_true",
default = False,
help = "Run the server under 'valgrind'. Default: false.")
parser.add_argument(
"--builddir",
dest = "builddir",
default = "..",
help = """Path to project build directory. Default: " + "../.""")
parser.add_argument(
"--stress",
dest = "stress",
default = None,
help = """Name of stress TestSuite to run""")
parser.add_argument(
"--tarantool-port",
dest = "tarantool_port",
default = None,
help = """Listen port number to run tests against. Admin port number must be listen+1""")
parser.add_argument(
"--vardir",
dest = "vardir",
default = "var",
help = """Path to data directory. Default: var.""")
parser.add_argument(
"--long",
dest="long",
default=False,
action='store_true',
help="""Enable long run tests""")
parser.add_argument(
"--conf",
dest="conf",
default=None,
help="""Force set test configuration mode"""
)
self.args = parser.parse_args()
self.check()
def check(self):
"""Check the arguments for correctness."""
check_error = False
conflict_options = ('valgrind', 'gdb', 'lldb')
for op1, op2 in product(conflict_options, repeat=2):
if op1 != op2 and getattr(self, op1, '') and \
getattr(self, op2, ''):
format_str = "Error: option --{} is not compatible \
with option --{}"
color_stdout(format_str.format(op1, op2), schema='error')
check_error = True
if check_error:
exit(-1)
def setenv():
"""Find where is tarantool dir by check_file"""
check_file = 'src/fiber.h'
path = os.path.abspath('../')
while path != '/':
if os.path.isfile('%s/%s' % (path, check_file)):
os.putenv('TARANTOOL_SRC_DIR', path)
break
path = os.path.abspath(os.path.join(path, '../'))
#######################################################################
# Program body
#######################################################################
def main():
options = Options()
oldcwd = os.getcwd()
# Change the current working directory to where all test
# collections are supposed to reside
# If script executed with (python test-run.py) dirname is ''
# so we need to make it .
path = os.path.dirname(sys.argv[0])
if not path:
path = '.'
os.chdir(path)
setenv()
options.args.builddir = os.path.abspath(os.path.expanduser(options.args.builddir))
os.environ["SOURCEDIR"] = os.path.dirname(os.path.abspath(path))
os.environ["BUILDDIR"] = os.path.abspath(options.args.builddir)
failed_tests = []
try:
TarantoolServer.find_exe(options.args.builddir)
UnittestServer.find_exe(options.args.builddir)
color_stdout("Started {0}\n".format(" ".join(sys.argv)), schema='tr_text')
suite_names = options.args.suites
if suite_names == []:
for root, dirs, names in os.walk(os.getcwd(), followlinks=True):
if "suite.ini" in names:
suite_names.append(os.path.basename(root))
if options.args.stress is None:
suites = [TestSuite(suite_name, options.args) for suite_name in sorted(suite_names)]
for suite in suites:
failed_tests.extend(suite.run_all())
else:
suite_names = [suite_name for suite_name in suite_names if suite_name.find(options.args.stress) != -1]
suites = [Supervisor(suite_name, options.args) for suite_name in sorted(suite_names)]
for suite in suites:
suite.run_all()
except RuntimeError as e:
color_stdout("\nFatal error: %s. Execution aborted.\n" % e, schema='error')
if options.args.gdb:
time.sleep(100)
return (-1)
finally:
os.chdir(oldcwd)
if failed_tests and options.args.is_force:
color_stdout("\n===== %d tests failed:\n" % len(failed_tests), schema='error')
for test in failed_tests:
color_stdout("----- %s\n" % test, schema='info')
return (-1 if failed_tests else 0)
if __name__ == "__main__":
exit(main())
|