Commit 5c4a41f8 authored by gsamain's avatar gsamain

Run the cython test suite

parent 440fbb07
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
[instance] [instance]
filename = instance.cfg.in filename = instance.cfg.in
md5sum = 21e0f69f6d89f60d5a00acf8e059dffa md5sum = a061d2e923270afe0f12e3d07d72f8d3
[template-runTestSuite] [template-runTestSuite]
filename = runTestSuite.in filename = runTestSuite.in
md5sum = ce3f257965a8e52b585eca5bb974064b md5sum = 2be3f178f167b41f919d87db48535d2d
[buildout] [buildout]
parts = parts =
runTestSuite-instance runTestSuite-instance
launchTestSuite-instance
eggs-directory = ${buildout:eggs-directory} eggs-directory = ${buildout:eggs-directory}
develop-eggs-directory = ${buildout:develop-eggs-directory} develop-eggs-directory = ${buildout:develop-eggs-directory}
offline = false offline = false
...@@ -18,3 +19,9 @@ url = ${template-runTestSuite:output} ...@@ -18,3 +19,9 @@ url = ${template-runTestSuite:output}
output = $${directory:bin}/runTestSuite output = $${directory:bin}/runTestSuite
buildout-directory = $${buildout:directory} buildout-directory = $${buildout:directory}
mode = 0700 mode = 0700
[launchTestSuite-instance]
recipe = plone.recipe.command
stop-on-error = true
update-command = true
command = (${cython_nogil:python3-binary} $${directory:bin}/runTestSuite)
...@@ -4,109 +4,46 @@ ...@@ -4,109 +4,46 @@
""" """
Script to run Cython test suite using Nexedi's test node framework. Script to run Cython test suite using Nexedi's test node framework.
""" """
import argparse, os, re, shutil, subprocess, sys, traceback import os, subprocess, sys, traceback
from erp5.util import taskdistribution
from time import gmtime, strftime from time import gmtime, strftime
from subprocess import check_output
import importlib
import datetime import datetime
def main(): def main():
parser = argparse.ArgumentParser(description='Run a test suite.')
parser.add_argument('--test_suite', help='The test suite name')
parser.add_argument('--test_suite_title', help='The test suite title')
parser.add_argument('--test_node_title', help='The test node title')
parser.add_argument('--project_title', help='The project title')
parser.add_argument('--revision', help='The revision to test',
default='dummy_revision')
parser.add_argument('--node_quantity', help='ignored', type=int)
parser.add_argument('--master_url',
help='The Url of Master controling many suites')
parser.add_argument('--frontend_url',
help='The url of frontend of the test suite')
args = parser.parse_args()
is_browser_running = False is_browser_running = False
try:
test_suite_title = args.test_suite_title or args.test_suite
test_suite = args.test_suite
revision = args.revision
test_line_dict = {} try:
date = strftime("%Y/%m/%d %H:%M:%S", gmtime()) date = strftime("%Y/%m/%d %H:%M:%S", gmtime())
###########################
# Run Cython's test suite #
###########################
########################## # We need to screw up the working directory because Cython's runtests script relies on it
# Run all tests os.chdir("${cython_nogil:location}")
##########################
path_var = os.pathsep.join([os.environ.get('PATH', os.defpath), '${python3.5:location}/bin/python3/bin/']) path_var = os.pathsep.join([os.environ.get('PATH', os.defpath), '${python3.5:location}/bin/python3/bin/'])
env = dict(os.environ, PATH=path_var) env = dict(os.environ, PATH=path_var)
python_path = '${python3.5:location}/bin/python3'
test_list = ['basic_test', 'lwan_coro_test']
print("Setup is:")
failed = 0 print("python_path=", python_path)
result_string = None print("test location: ${cython_nogil:location}/runtests.py")
duration = 0 start_time = datetime.datetime.now()
test_line_dict = {} print("Starting at", start_time)
for test_name in test_list: result = subprocess.run([python_path + " runtests.py"],
failed = 0 env=env,
result_string = None shell=True,
duration = 0 )
end_time = datetime.datetime.now()
try: duration = (end_time - start_time).total_seconds()
sys.path.append('${cython_nogil:location}/nogil_test/') print("Ending at", end_time, " (duration: %s seconds)" % duration)
test_module = importlib.import_module(test_name) return result.returncode
except ImportError as e:
failed = 1
stdout = str(e)
else:
start_time = datetime.datetime.now()
result_string = test_module.run(env, '${python3.5:location}/bin/python3')
end_time = datetime.datetime.now()
duration = (end_time - start_time).total_seconds()
failed = result_string['failed']
stdout = result_string['stdout']
test_line_dict['%s: %s' % ('Cython test', test_name)] = {
'test_count': 1,
'error_count': 0,
'failure_count': failed,
'skip_count': 0,
'duration': duration,
'command': '',
'stdout': stdout,
'stderr': '',
'html_test_result': '',
}
# Send results
tool = taskdistribution.TaskDistributor(portal_url=args.master_url)
test_result = tool.createTestResult(revision = revision,
test_name_list = test_line_dict.keys(),
node_title = args.test_node_title,
test_title = test_suite_title,
project_title = args.project_title)
if test_result is None or not hasattr(args, 'master_url'):
return
# report test results
while 1:
test_result_line = test_result.start()
if not test_result_line:
print 'No test result anymore.'
break
print 'Submitting: "%s"' % test_result_line.name
print test_line_dict
# report status back to Nexedi ERP5
test_result_line.stop(**test_line_dict[test_result_line.name])
except: except:
# Catch any exception here, to warn user instead of being silent, # Catch any exception here, to warn user instead of being silent,
# by generating fake error result # by generating fake error result
print traceback.format_exc() print(traceback.format_exc())
result = dict(status_code=-1, result = dict(status_code=-1,
command='python3 -c "import test"', # url command='python3 -c "import test"', # url
stderr=traceback.format_exc(), stderr=traceback.format_exc(),
...@@ -115,4 +52,4 @@ def main(): ...@@ -115,4 +52,4 @@ def main():
raise EnvironmentError(result) raise EnvironmentError(result)
if __name__ == "__main__": if __name__ == "__main__":
main() main()
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment