Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
alecs_myu
erp5
Commits
35e9bde4
Commit
35e9bde4
authored
Feb 04, 2013
by
Sebastien Robin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initial import of distributors used for unit testing
parent
1cbebed9
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
394 additions
and
0 deletions
+394
-0
product/ERP5/Document/CloudPerformanceUnitTestDistributor.py
product/ERP5/Document/CloudPerformanceUnitTestDistributor.py
+84
-0
product/ERP5/Document/ERP5ProjectUnitTestDistributor.py
product/ERP5/Document/ERP5ProjectUnitTestDistributor.py
+310
-0
No files found.
product/ERP5/Document/CloudPerformanceUnitTestDistributor.py
0 → 100644
View file @
35e9bde4
##############################################################################
# Copyright (c) 2013 Nexedi SA and Contributors. All Rights Reserved.
# Sebastien Robin <seb@nexedi.com>
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
##############################################################################
from
ERP5ProjectUnitTestDistributor
import
ERP5ProjectUnitTestDistributor
import
json
from
zLOG
import
LOG
,
INFO
,
ERROR
from
AccessControl
import
ClassSecurityInfo
from
Products.ERP5Type
import
Permissions
class
CloudPerformanceUnitTestDistributor
(
ERP5ProjectUnitTestDistributor
):
security
=
ClassSecurityInfo
()
security
.
declareObjectProtected
(
Permissions
.
AccessContentsInformation
)
security
.
declareProtected
(
Permissions
.
ManagePortal
,
"cleanupInvalidatedTestNode"
)
def
cleanupInvalidatedTestNode
(
self
,
test_node
):
"""
When a test node is invalidated, we keep current configuration. Since
all test nodes runs all test suites, this is not a problem to keep
configuration
"""
pass
security
.
declarePublic
(
"optimizeConfiguration"
)
def
optimizeConfiguration
(
self
):
"""
We are going to add test suites to test nodes.
In the case of cloud performance, we associate all test suites to
every test node. Like this, every test suite will be executed by
every test node
"""
portal
=
self
.
getPortalObject
()
test_node_module
=
self
.
_getTestNodeModule
()
test_suite_module
=
self
.
_getTestSuiteModule
()
test_node_list
=
[
x
.
getObject
()
for
x
in
test_node_module
.
searchFolder
(
portal_type
=
"Test Node"
,
validation_state
=
"validated"
,
specialise_uid
=
self
.
getUid
())]
test_suite_list
=
[
x
.
getRelativeUrl
()
for
x
in
test_suite_module
.
searchFolder
(
validation_state
=
"validated"
,
specialise_uid
=
self
.
getUid
())]
for
test_node
in
test_node_list
:
test_node
.
setAggregateList
(
test_suite_list
)
security
.
declarePublic
(
"startTestSuite"
)
def
startTestSuite
(
self
,
title
):
"""
give the list of test suite to start. We will take all test suites
associated to the testnode. Then we add the test node title to the
test_suite_title to make sure that every test node will have it's
own test result without the possibility that another one participate
to the same test.
"""
config_list
=
super
(
CloudPerformanceUnitTestDistributor
,
self
).
startTestSuite
(
title
,
batch_mode
=
1
)
for
config
in
config_list
:
config
[
"test_suite_title"
]
=
config
[
"test_suite_title"
]
+
"-%s"
%
title
return
json
.
dumps
(
config_list
)
\ No newline at end of file
product/ERP5/Document/ERP5ProjectUnitTestDistributor.py
0 → 100644
View file @
35e9bde4
This diff is collapsed.
Click to expand it.
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