2013-12-31 10:45:07 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
#
|
|
|
|
# Copyright (c) 2013,Thibault Saunier <thibault.saunier@collabora.com>
|
|
|
|
#
|
|
|
|
# This program 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 2.1 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program 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 this program; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
# Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
""" Class representing tests and test managers. """
|
|
|
|
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import time
|
|
|
|
import subprocess
|
|
|
|
import reporters
|
2014-01-09 08:39:05 +00:00
|
|
|
from loggable import Loggable
|
2013-12-31 10:45:07 +00:00
|
|
|
from optparse import OptionGroup
|
2013-12-31 10:45:07 +00:00
|
|
|
|
2014-01-09 08:39:05 +00:00
|
|
|
from utils import mkdir, Result, Colors, printc, DEFAULT_TIMEOUT
|
2013-12-31 10:45:07 +00:00
|
|
|
|
|
|
|
|
2014-01-08 17:51:14 +00:00
|
|
|
class Test(Loggable):
|
2013-12-31 10:45:07 +00:00
|
|
|
|
|
|
|
""" A class representing a particular test. """
|
|
|
|
|
2014-01-09 08:14:27 +00:00
|
|
|
def __init__(self, application_name, classname, options,
|
|
|
|
reporter, timeout=DEFAULT_TIMEOUT):
|
2014-01-08 17:51:14 +00:00
|
|
|
Loggable.__init__(self)
|
2013-12-31 10:45:07 +00:00
|
|
|
self.timeout = timeout
|
2013-12-31 10:45:07 +00:00
|
|
|
self.classname = classname
|
|
|
|
self.options = options
|
|
|
|
self.application = application_name
|
|
|
|
self.command = ""
|
|
|
|
self.reporter = reporter
|
|
|
|
self.process = None
|
|
|
|
|
2013-12-31 10:45:07 +00:00
|
|
|
self.message = ""
|
|
|
|
self.error = ""
|
|
|
|
self.time_taken = 0.0
|
2013-12-31 10:45:07 +00:00
|
|
|
self._starting_time = None
|
|
|
|
self.result = Result.NOT_RUN
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
string = self.classname
|
2013-12-31 10:45:07 +00:00
|
|
|
if self.result != Result.NOT_RUN:
|
2013-12-31 10:45:07 +00:00
|
|
|
string += ": " + self.result
|
2014-01-09 08:27:50 +00:00
|
|
|
if self.result in [Result.FAILED, Result.TIMEOUT]:
|
|
|
|
string += " '%s'\n You can reproduce with: %s" \
|
|
|
|
% (self.message, self.command)
|
2013-12-31 10:45:07 +00:00
|
|
|
|
|
|
|
return string
|
|
|
|
|
|
|
|
def add_arguments(self, *args):
|
|
|
|
for arg in args:
|
|
|
|
self.command += " " + arg
|
|
|
|
|
|
|
|
def build_arguments(self):
|
2014-01-09 08:14:27 +00:00
|
|
|
pass
|
2013-12-31 10:45:07 +00:00
|
|
|
|
2013-12-31 10:45:07 +00:00
|
|
|
def set_result(self, result, message="", error=""):
|
2013-12-31 10:45:07 +00:00
|
|
|
self.result = result
|
|
|
|
self.message = message
|
|
|
|
self.error = error
|
|
|
|
|
|
|
|
def check_results(self):
|
2014-01-09 08:14:27 +00:00
|
|
|
if self.result is Result.FAILED:
|
|
|
|
return
|
|
|
|
|
|
|
|
self.debug("%s returncode: %s", self, self.process.returncode)
|
2013-12-31 10:45:07 +00:00
|
|
|
if self.result == Result.TIMEOUT:
|
|
|
|
self.set_result(Result.TIMEOUT, "Application timed out", "timeout")
|
|
|
|
elif self.process.returncode == 0:
|
2013-12-31 10:45:07 +00:00
|
|
|
self.result = Result.PASSED
|
2013-12-31 10:45:07 +00:00
|
|
|
else:
|
2014-01-09 08:28:02 +00:00
|
|
|
self.set_result(Result.FAILED,
|
|
|
|
"Application returned %d" % (
|
|
|
|
self.process.returncode))
|
2014-01-09 08:14:27 +00:00
|
|
|
|
|
|
|
def get_current_value(self):
|
|
|
|
"""
|
|
|
|
Lets subclasses implement a nicer timeout measurement method
|
|
|
|
They should return some value with which we will compare
|
|
|
|
the previous and timeout if they are egual during self.timeout
|
|
|
|
seconds
|
|
|
|
"""
|
|
|
|
return Result.NOT_RUN
|
2013-12-31 10:45:07 +00:00
|
|
|
|
|
|
|
def wait_process(self):
|
2014-01-09 08:14:27 +00:00
|
|
|
last_val = 0
|
2013-12-31 10:45:07 +00:00
|
|
|
last_change_ts = time.time()
|
|
|
|
while True:
|
|
|
|
self.process.poll()
|
|
|
|
if self.process.returncode is not None:
|
|
|
|
break
|
|
|
|
|
|
|
|
# Dirty way to avoid eating to much CPU...
|
|
|
|
# good enough for us anyway.
|
|
|
|
time.sleep(1)
|
|
|
|
|
2014-01-09 08:14:27 +00:00
|
|
|
val = self.get_current_value()
|
2013-12-31 10:45:07 +00:00
|
|
|
|
2014-01-09 08:14:27 +00:00
|
|
|
if val is Result.NOT_RUN:
|
|
|
|
# The get_current_value logic is not implemented... dumb timeout
|
|
|
|
if time.time() - last_change_ts > self.timeout:
|
|
|
|
self.result = Result.TIMEOUT
|
|
|
|
break
|
|
|
|
continue
|
|
|
|
elif val is Result.FAILED:
|
|
|
|
self.result = Result.FAILED
|
|
|
|
break
|
2013-12-31 10:45:07 +00:00
|
|
|
|
2014-01-09 08:14:27 +00:00
|
|
|
self.log("New val %s" % val)
|
|
|
|
|
|
|
|
if val == last_val:
|
|
|
|
delta = time.time() - last_change_ts
|
|
|
|
self.debug("Same value for %d seconds" % delta)
|
|
|
|
if delta > self.timeout:
|
|
|
|
self.result = Result.TIMEOUT
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
last_change_ts = time.time()
|
|
|
|
last_val = val
|
|
|
|
|
|
|
|
self.check_results()
|
2013-12-31 10:45:07 +00:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.command = "%s " % (self.application)
|
|
|
|
self._starting_time = time.time()
|
|
|
|
self.build_arguments()
|
2014-01-09 08:14:27 +00:00
|
|
|
printc("Launching:%s '%s' -- logs are in %s" % (Colors.ENDC, self.command,
|
2013-12-31 10:45:07 +00:00
|
|
|
self.reporter.out.name), Colors.OKBLUE)
|
2013-12-31 10:45:07 +00:00
|
|
|
try:
|
|
|
|
self.process = subprocess.Popen(self.command,
|
|
|
|
stderr=self.reporter.out,
|
|
|
|
stdout=self.reporter.out,
|
|
|
|
shell=True)
|
|
|
|
self.wait_process()
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
self.process.kill()
|
|
|
|
raise
|
|
|
|
|
|
|
|
try:
|
|
|
|
self.process.terminate()
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
self.time_taken = time.time() - self._starting_time
|
|
|
|
|
|
|
|
|
2014-01-09 08:14:27 +00:00
|
|
|
class GstValidateTest(Test):
|
|
|
|
|
|
|
|
""" A class representing a particular test. """
|
|
|
|
|
|
|
|
def __init__(self, application_name, classname,
|
|
|
|
options, reporter, timeout=DEFAULT_TIMEOUT,
|
|
|
|
scenario=None):
|
|
|
|
|
|
|
|
super(GstValidateTest, self).__init__(application_name, classname, options,
|
|
|
|
reporter, timeout=DEFAULT_TIMEOUT)
|
|
|
|
|
|
|
|
if scenario is None or scenario.lower() == "none":
|
|
|
|
self.scenario = None
|
|
|
|
else:
|
|
|
|
self.scenario = scenario
|
|
|
|
|
|
|
|
def build_arguments(self):
|
|
|
|
if self.scenario is not None:
|
|
|
|
self.add_arguments("--set-scenario", self.scenario)
|
|
|
|
|
|
|
|
def get_validate_criticals_errors(self):
|
|
|
|
self.reporter.out.seek(0)
|
|
|
|
ret = "["
|
|
|
|
errors = []
|
|
|
|
for l in self.reporter.out.readlines():
|
|
|
|
if "critical : " in l:
|
|
|
|
if ret != "[":
|
|
|
|
ret += ", "
|
|
|
|
error = l.split("critical : ")[1].replace("\n", '')
|
|
|
|
print "%s -- %s" %(error, errors)
|
|
|
|
if error not in errors:
|
|
|
|
ret += error
|
|
|
|
errors.append(error)
|
|
|
|
|
|
|
|
if ret == "[":
|
|
|
|
return "No critical"
|
|
|
|
else:
|
|
|
|
return ret + "]"
|
|
|
|
|
|
|
|
|
2014-01-09 08:28:02 +00:00
|
|
|
def check_results(self):
|
|
|
|
if self.result is Result.FAILED:
|
|
|
|
return
|
|
|
|
|
|
|
|
self.debug("%s returncode: %s", self, self.process.returncode)
|
|
|
|
if self.result == Result.TIMEOUT:
|
|
|
|
self.set_result(Result.TIMEOUT, "Application timed out", "timeout")
|
|
|
|
elif self.process.returncode == 0:
|
|
|
|
self.result = Result.PASSED
|
|
|
|
else:
|
|
|
|
if self.process.returncode == 139:
|
|
|
|
self.get_backtrace("SEGFAULT")
|
|
|
|
self.set_result(Result.FAILED,
|
|
|
|
"Application segfaulted",
|
|
|
|
"segfault")
|
|
|
|
else:
|
|
|
|
self.set_result(Result.FAILED,
|
|
|
|
"Application returned %d (issues: %s)" % (
|
|
|
|
self.process.returncode,
|
|
|
|
self.get_validate_criticals_errors()
|
|
|
|
))
|
|
|
|
|
2014-01-09 08:14:27 +00:00
|
|
|
|
2013-12-31 10:45:07 +00:00
|
|
|
class TestsManager(object):
|
|
|
|
|
|
|
|
""" A class responsible for managing tests. """
|
|
|
|
|
2013-12-31 10:45:07 +00:00
|
|
|
name = ""
|
|
|
|
|
2013-12-31 10:45:07 +00:00
|
|
|
def __init__(self):
|
|
|
|
self.tests = []
|
|
|
|
self.options = None
|
|
|
|
self.args = None
|
|
|
|
self.reporter = None
|
|
|
|
self.wanted_tests_patterns = []
|
|
|
|
|
|
|
|
def list_tests(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_tests(self):
|
|
|
|
return self.tests
|
|
|
|
|
|
|
|
def add_options(self, parser):
|
|
|
|
""" Add more arguments. """
|
|
|
|
pass
|
|
|
|
|
|
|
|
def set_settings(self, options, args, reporter):
|
|
|
|
""" Set properties after options parsing. """
|
|
|
|
self.options = options
|
|
|
|
self.args = args
|
|
|
|
self.reporter = reporter
|
|
|
|
|
|
|
|
if options.wanted_tests:
|
|
|
|
for pattern in options.wanted_tests.split(','):
|
|
|
|
self.wanted_tests_patterns.append(re.compile(pattern))
|
|
|
|
|
|
|
|
|
|
|
|
def _is_test_wanted(self, test):
|
2013-12-31 10:45:07 +00:00
|
|
|
if not self.wanted_tests_patterns:
|
|
|
|
return True
|
|
|
|
|
2013-12-31 10:45:07 +00:00
|
|
|
for pattern in self.wanted_tests_patterns:
|
|
|
|
if pattern.findall(test.classname):
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
def run_tests(self):
|
|
|
|
for test in self.tests:
|
|
|
|
if self._is_test_wanted(test):
|
|
|
|
self.reporter.before_test(test)
|
|
|
|
test.run()
|
|
|
|
self.reporter.after_test()
|
|
|
|
|
|
|
|
|
|
|
|
class _TestsLauncher(object):
|
|
|
|
def __init__(self):
|
|
|
|
self.testers = []
|
|
|
|
self.tests = []
|
|
|
|
self.reporter = None
|
|
|
|
self._list_testers()
|
|
|
|
self.wanted_tests_patterns = []
|
|
|
|
|
|
|
|
def _list_testers(self):
|
|
|
|
def get_subclasses(c, env):
|
|
|
|
subclasses = []
|
|
|
|
for symb in env.iteritems():
|
|
|
|
try:
|
2013-12-31 10:45:07 +00:00
|
|
|
if issubclass(symb[1], c) and not symb[1] is c:
|
2013-12-31 10:45:07 +00:00
|
|
|
subclasses.append(symb[1])
|
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return subclasses
|
|
|
|
|
|
|
|
env = globals().copy()
|
|
|
|
d = os.path.dirname(__file__)
|
|
|
|
for f in os.listdir(os.path.join(d, "apps")):
|
2014-01-09 08:39:05 +00:00
|
|
|
if f.endswith(".py"):
|
|
|
|
execfile(os.path.join(d, "apps", f), env)
|
2013-12-31 10:45:07 +00:00
|
|
|
|
2013-12-31 10:45:07 +00:00
|
|
|
self.testers = [i() for i in get_subclasses(TestsManager, env)]
|
2013-12-31 10:45:07 +00:00
|
|
|
|
2013-12-31 10:45:07 +00:00
|
|
|
|
|
|
|
def add_options(self, parser):
|
|
|
|
for tester in self.testers:
|
2013-12-31 10:45:07 +00:00
|
|
|
group = OptionGroup(parser, "%s Options" % tester.name,
|
|
|
|
"Options specific to the %s test manager"
|
|
|
|
% tester.name)
|
|
|
|
tester.add_options(group)
|
|
|
|
parser.add_option_group(group)
|
2013-12-31 10:45:07 +00:00
|
|
|
|
|
|
|
def set_settings(self, options, args):
|
|
|
|
self.reporter = reporters.XunitReporter(options)
|
|
|
|
mkdir(options.logsdir)
|
2013-12-31 10:45:07 +00:00
|
|
|
|
|
|
|
wanted_testers = None
|
|
|
|
for tester in self.testers:
|
|
|
|
if tester.name in args:
|
|
|
|
wanted_testers = tester.name
|
|
|
|
if wanted_testers:
|
|
|
|
testers = self.testers
|
|
|
|
self.testers = []
|
|
|
|
for tester in testers:
|
|
|
|
if tester.name in args:
|
|
|
|
self.testers.append(tester)
|
|
|
|
args.remove(tester.name)
|
|
|
|
|
2013-12-31 10:45:07 +00:00
|
|
|
for tester in self.testers:
|
|
|
|
tester.set_settings(options, args, self.reporter)
|
|
|
|
|
|
|
|
def list_tests(self):
|
|
|
|
for tester in self.testers:
|
|
|
|
tester.list_tests()
|
|
|
|
self.tests.extend(tester.tests)
|
|
|
|
|
|
|
|
def run_tests(self):
|
|
|
|
for tester in self.testers:
|
|
|
|
tester.run_tests()
|
|
|
|
|
|
|
|
def final_report(self):
|
|
|
|
self.reporter.final_report()
|