Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
slapos
Commits
362eb434
Commit
362eb434
authored
Nov 28, 2018
by
Boxiang Sun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Amend for the test
parent
6aadcd49
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
112 additions
and
8 deletions
+112
-8
component/cython_nogil/buildout.cfg
component/cython_nogil/buildout.cfg
+3
-1
software/cython_test/buildout.hash.cfg
software/cython_test/buildout.hash.cfg
+2
-2
software/cython_test/instance.cfg.in
software/cython_test/instance.cfg.in
+7
-3
software/cython_test/runTestSuite.in
software/cython_test/runTestSuite.in
+91
-1
software/cython_test/software.cfg
software/cython_test/software.cfg
+8
-0
software/jstestnode/runTestSuite.in
software/jstestnode/runTestSuite.in
+1
-1
No files found.
component/cython_nogil/buildout.cfg
View file @
362eb434
[buildout]
extends =
../python3/buildout.cfg
../gcc/buildout.cfg
[buildout]
parts = cython_nogil
parts =
cython_nogil
[cython_nogil]
recipe = plone.recipe.command
...
...
software/cython_test/buildout.hash.cfg
View file @
362eb434
...
...
@@ -15,8 +15,8 @@
[instance]
filename = instance.cfg.in
md5sum =
24a14564067e18f110ea0f630b3e2d0b
md5sum =
a040b6e2323571de98606f5724246831
[template-runTestSuite]
filename = runTestSuite.in
md5sum =
99c9688ea0c3ab4594807be80279747f
md5sum =
dd91f4f08a08f7d3e42857e4a85841f6
software/cython_test/instance.cfg.in
View file @
362eb434
[buildout]
parts =
runTestSuite-instance
eggs-directory = ${buildout:eggs-directory}
develop-eggs-directory = ${buildout:develop-eggs-directory}
offline = false
#################################
# Test runner
...
...
@@ -8,6 +12,6 @@ parts =
[runTestSuite-instance]
recipe = slapos.recipe.template
url = ${template-runTestSuite:output}
output = $
${directory:bin}
/runTestSuite
buildout-directory = $${buildout:directory}
output = $
{buildout:directory}/bin
/runTestSuite
#
buildout-directory = $${buildout:directory}
mode = 0700
software/cython_test/runTestSuite.in
View file @
362eb434
#!${buildout:directory}/bin/${eggs:interpreter}
# BEWARE: This file is operated by slapgrid
# BEWARE: It will be overwritten automatically
"""
Script to run Cython test suite using Nexedi's test node framework.
"""
import argparse, os, re, shutil, subprocess, sys, traceback
from erp5.util import taskdistribution
from time import gmtime, strftime
from subprocess import check_output
def main():
raise ValueError("Running Cython nogil Test")
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
try:
test_suite_title = args.test_suite_title or args.test_suite
test_suite = args.test_suite
revision = args.revision
test_line_dict = {}
date = strftime("%Y/%m/%d %H:%M:%S", gmtime())
##########################
# Run all tests
##########################
# run 'python3 test.py build_ext --inplace'
# run 'python3 -c 'import test''
# passed if we get 'done'
# ${python3.5:location}/bin/python3
result_string = subprocess.check_output(['${python3.5:location}/bin/python3', 'test.py', 'build_ext', '--inplace'],
cwd='${cython_nogil:location}',
env={'CI': 'true'})
result_string = check_output(['${python3.5:location}/bin/python3 -c "import test"'],
shell=True,
cwd='${cython_nogil:location}',
env={'CI': 'true'})
result_dict = json.loads(result_string)
result_failed = 0 if 'done' in result_string else 1
# for result in result_dict['tests']:
test_line_dict['%s: %s' % ('Cython test', 'basic test')] = {
'test_count': 1,
'error_count': 0,
'failure_count': result_failed,
'skip_count': 0,
'duration': '',
'command': '',
'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
# report status back to Nexedi ERP5
test_result_line.stop(**test_line_dict[test_result_line.name])
except:
# Catch any exception here, to warn user instead of being silent,
# by generating fake error result
print traceback.format_exc()
result = dict(status_code=-1,
command='python3 -c "import test"', # url
stderr=traceback.format_exc(),
stdout='')
# XXX: inform test node master of error
raise EnvironmentError(result)
if __name__ == "__main__":
main()
\ No newline at end of file
software/cython_test/software.cfg
View file @
362eb434
...
...
@@ -10,6 +10,14 @@ parts =
slapos-cookbook
git
instance
cython_nogil
template-runTestSuite
[eggs]
recipe = zc.recipe.egg
eggs =
erp5.util
interpreter = pythonwitheggs
[macro-template]
recipe = slapos.recipe.template
...
...
software/jstestnode/runTestSuite.in
View file @
362eb434
...
...
@@ -194,7 +194,7 @@ def main():
# by generating fake error result
print traceback.format_exc()
result = dict(status_code=-1,
command=
url,
command=
'python3 -c "import test"', # url
stderr=traceback.format_exc(),
stdout='')
# XXX: inform test node master of error
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment