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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhifan huang
slapos
Commits
e29d67e8
Commit
e29d67e8
authored
Apr 08, 2022
by
zhifan huang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test
parent
fc0cfd30
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
89 additions
and
89 deletions
+89
-89
software/slapos-testing/buildout.hash.cfg
software/slapos-testing/buildout.hash.cfg
+1
-1
software/slapos-testing/instance.cfg
software/slapos-testing/instance.cfg
+88
-88
No files found.
software/slapos-testing/buildout.hash.cfg
View file @
e29d67e8
...
...
@@ -15,4 +15,4 @@
[template]
filename = instance.cfg
md5sum =
ba6c572678687081ce111d3805be3cee
md5sum =
df528e38ae84578f7001e29e41f89222
software/slapos-testing/instance.cfg
View file @
e29d67e8
...
...
@@ -101,94 +101,94 @@ rendered = $${:workdir}/.nxdtest
workdir = $${create-directory:nxdtest-working-dir}
template = inline:
TestCase(
"kedifa",
['python', '-m', 'unittest', 'discover', '-v'],
cwd="""$${kedifa:location}""",
summaryf=UnitTest.summary,
)
TestCase(
"caucase",
['$${caucase-test-runner:rendered}'],
cwd="""$${caucase:location}""",
summaryf=UnitTest.summary,
)
TestCase(
"erp5.util",
['python', '-m', 'unittest', 'discover', '-v', '--start', 'erp5/tests/'],
cwd="""$${erp5.util:location}""",
summaryf=UnitTest.summary,
)
TestCase(
"slapos.cookbook",
# slapos/test contain both tests for recipes and tests for
# json schemas, we only care about recipe tests here, json
# schemas are tested in software/slapos-sr-testing
['python', '-m', 'unittest', 'discover', '-v', '--start', 'slapos/test/recipe'],
cwd="""$${slapos.cookbook:location}""",
summaryf=UnitTest.summary,
)
TestCase(
"slapos.core",
# ['python', '-m', 'unittest', 'discover', '-v'],
# XXX some test fail when running with unittest (slapos*.cfg.example
# files cannot be found with pkg_resources.resource_string), so we keep
# using setup.py test for now.
['python', 'setup.py', 'test'],
cwd="""$${slapos.core:location}""",
summaryf=UnitTest.summary,
)
TestCase(
"slapos.recipe.build",
['python', '-m', 'unittest', 'discover', '-v'],
cwd="""$${slapos.recipe.build:location}""",
summaryf=UnitTest.summary,
)
TestCase(
"slapos.recipe.cmmi",
['python', '-m', 'unittest', 'discover', '-v'],
cwd="""$${slapos.recipe.cmmi:location}""",
summaryf=UnitTest.summary,
)
TestCase(
"slapos.recipe.template",
# ['python', '-m', 'unittest', 'slapos.recipe.template.tests.test_suite'],
# XXX some test fail when running with unittest, so we keep using setup.py test
['python', 'setup.py', 'test'],
cwd="""$${slapos.recipe.template:location}""",
summaryf=UnitTest.summary,
)
TestCase(
"slapos.toolbox",
# ['python', '-m', 'unittest', 'discover', '-v'],
# XXX We can not just run unittest discover here, since slapos/lamp
# imports MySQLDb and we currently don't have installed
# slapos.toolbox[lampconfigure] and on python3 discovery make a
# failing test for this import error.
# Currently slapos/lamp is not tested, but if it it is still used,
# the TODO seem to also install slapos.toolbox[lampconfigure] here.
['python', '-m', 'unittest', 'discover', '-v', '--start', 'slapos/test', '--top-level-directory', '.'],
cwd="""$${slapos.toolbox:location}""",
summaryf=UnitTest.summary,
)
TestCase(
"slapos.libnetworkcache",
['python', '-m', 'unittest', '-v', 'slapos.libnetworkcachetests'],
cwd="""$${slapos.libnetworkcache:location}""",
summaryf=UnitTest.summary,
)
TestCase(
"slapos.rebootstrap",
['python', '-m', 'unittest', '-v', 'slapos.rebootstrap.tests.test_suite'],
cwd="""$${slapos.rebootstrap:location}""",
summaryf=UnitTest.summary,
)
TestCase(
"rubygemsrecipe",
['python', '-m', 'unittest', 'discover', '-v'],
cwd="""$${rubygemsrecipe:location}""",
summaryf=UnitTest.summary,
)
#
TestCase(
#
"kedifa",
#
['python', '-m', 'unittest', 'discover', '-v'],
#
cwd="""$${kedifa:location}""",
#
summaryf=UnitTest.summary,
#
)
#
TestCase(
#
"caucase",
#
['$${caucase-test-runner:rendered}'],
#
cwd="""$${caucase:location}""",
#
summaryf=UnitTest.summary,
#
)
#
TestCase(
#
"erp5.util",
#
['python', '-m', 'unittest', 'discover', '-v', '--start', 'erp5/tests/'],
#
cwd="""$${erp5.util:location}""",
#
summaryf=UnitTest.summary,
#
)
#
TestCase(
#
"slapos.cookbook",
#
# slapos/test contain both tests for recipes and tests for
#
# json schemas, we only care about recipe tests here, json
#
# schemas are tested in software/slapos-sr-testing
#
['python', '-m', 'unittest', 'discover', '-v', '--start', 'slapos/test/recipe'],
#
cwd="""$${slapos.cookbook:location}""",
#
summaryf=UnitTest.summary,
#
)
#
TestCase(
#
"slapos.core",
#
# ['python', '-m', 'unittest', 'discover', '-v'],
#
# XXX some test fail when running with unittest (slapos*.cfg.example
#
# files cannot be found with pkg_resources.resource_string), so we keep
#
# using setup.py test for now.
#
['python', 'setup.py', 'test'],
#
cwd="""$${slapos.core:location}""",
#
summaryf=UnitTest.summary,
#
)
#
TestCase(
#
"slapos.recipe.build",
#
['python', '-m', 'unittest', 'discover', '-v'],
#
cwd="""$${slapos.recipe.build:location}""",
#
summaryf=UnitTest.summary,
#
)
#
TestCase(
#
"slapos.recipe.cmmi",
#
['python', '-m', 'unittest', 'discover', '-v'],
#
cwd="""$${slapos.recipe.cmmi:location}""",
#
summaryf=UnitTest.summary,
#
)
#
TestCase(
#
"slapos.recipe.template",
#
# ['python', '-m', 'unittest', 'slapos.recipe.template.tests.test_suite'],
#
# XXX some test fail when running with unittest, so we keep using setup.py test
#
['python', 'setup.py', 'test'],
#
cwd="""$${slapos.recipe.template:location}""",
#
summaryf=UnitTest.summary,
#
)
#
TestCase(
#
"slapos.toolbox",
#
# ['python', '-m', 'unittest', 'discover', '-v'],
#
# XXX We can not just run unittest discover here, since slapos/lamp
#
# imports MySQLDb and we currently don't have installed
#
# slapos.toolbox[lampconfigure] and on python3 discovery make a
#
# failing test for this import error.
#
# Currently slapos/lamp is not tested, but if it it is still used,
#
# the TODO seem to also install slapos.toolbox[lampconfigure] here.
#
['python', '-m', 'unittest', 'discover', '-v', '--start', 'slapos/test', '--top-level-directory', '.'],
#
cwd="""$${slapos.toolbox:location}""",
#
summaryf=UnitTest.summary,
#
)
#
TestCase(
#
"slapos.libnetworkcache",
#
['python', '-m', 'unittest', '-v', 'slapos.libnetworkcachetests'],
#
cwd="""$${slapos.libnetworkcache:location}""",
#
summaryf=UnitTest.summary,
#
)
#
TestCase(
#
"slapos.rebootstrap",
#
['python', '-m', 'unittest', '-v', 'slapos.rebootstrap.tests.test_suite'],
#
cwd="""$${slapos.rebootstrap:location}""",
#
summaryf=UnitTest.summary,
#
)
#
TestCase(
#
"rubygemsrecipe",
#
['python', '-m', 'unittest', 'discover', '-v'],
#
cwd="""$${rubygemsrecipe:location}""",
#
summaryf=UnitTest.summary,
#
)
[runTestSuite]
env.sh = $${slapos-test-runner-nxdtest-environment.sh:rendered}
...
...
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