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
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
85784103
Commit
85784103
authored
Oct 07, 2022
by
Kazuhiko Shiozaki
Committed by
Jérome Perrin
May 28, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_test_result: Make code compatible with both python2 and python3.
parent
dfdeb57d
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
17 additions
and
11 deletions
+17
-11
bt5/erp5_test_result/DocumentTemplateItem/portal_components/document.erp5.ERP5ProjectUnitTestDistributor.py
...omponents/document.erp5.ERP5ProjectUnitTestDistributor.py
+3
-2
bt5/erp5_test_result/DocumentTemplateItem/portal_components/document.erp5.ERP5ScalabilityDistributor.py
...al_components/document.erp5.ERP5ScalabilityDistributor.py
+2
-1
bt5/erp5_test_result/DocumentTemplateItem/portal_components/document.erp5.GitlabRESTConnector.py
...em/portal_components/document.erp5.GitlabRESTConnector.py
+2
-2
bt5/erp5_test_result/ExtensionTemplateItem/portal_components/extension.erp5.ScalabilityTestSuiteUtils.py
...al_components/extension.erp5.ScalabilityTestSuiteUtils.py
+3
-2
bt5/erp5_test_result/SkinTemplateItem/portal_skins/erp5_test_result/TestResult_getDiff.py
...eItem/portal_skins/erp5_test_result/TestResult_getDiff.py
+2
-1
bt5/erp5_test_result/SkinTemplateItem/portal_skins/erp5_test_result/TestResult_getJsonScalabilityStats.py
...ns/erp5_test_result/TestResult_getJsonScalabilityStats.py
+1
-1
bt5/erp5_test_result/ToolComponentTemplateItem/portal_components/tool.erp5.TaskDistributionTool.py
...eItem/portal_components/tool.erp5.TaskDistributionTool.py
+3
-2
bt5/erp5_test_result/WorkflowTemplateItem/portal_workflow/test_suite_workflow/script_TestSuite_afterValidate.py
...low/test_suite_workflow/script_TestSuite_afterValidate.py
+1
-0
No files found.
bt5/erp5_test_result/DocumentTemplateItem/portal_components/document.erp5.ERP5ProjectUnitTestDistributor.py
View file @
85784103
...
...
@@ -32,6 +32,7 @@ from zLOG import LOG,DEBUG,ERROR
from
AccessControl
import
ClassSecurityInfo
from
Products.ERP5Type
import
Permissions
from
Products.ZSQLCatalog.SQLCatalog
import
SimpleQuery
from
six.moves
import
range
TEST_SUITE_MAX
=
4
# Depending on the test suite priority, we will affect
# more or less cores
...
...
@@ -215,12 +216,12 @@ class ERP5ProjectUnitTestDistributor(XMLObject):
# we divide per 3 because we have 3 cores per node
node_quantity_min
=
PRIORITY_MAPPING
[
int_index
][
0
]
/
3
node_quantity_max
=
PRIORITY_MAPPING
[
int_index
][
1
]
/
3
for
x
in
x
range
(
0
,
node_quantity_min
):
for
x
in
range
(
0
,
node_quantity_min
):
score
=
float
(
x
)
/
(
x
+
1
)
all_test_suite_list
.
append
((
score
,
test_suite_url
,
title
))
test_suite_score
.
setdefault
(
test_suite_url
,
[]).
append
(
score
)
# additional suites, lower score
for
x
in
x
range
(
0
,
node_quantity_max
-
for
x
in
range
(
0
,
node_quantity_max
-
node_quantity_min
):
score
=
float
(
1
)
+
x
/
(
x
+
1
)
all_test_suite_list
.
append
((
1
+
x
/
(
x
+
1
),
test_suite_url
,
title
))
...
...
bt5/erp5_test_result/DocumentTemplateItem/portal_components/document.erp5.ERP5ScalabilityDistributor.py
View file @
85784103
...
...
@@ -33,6 +33,7 @@ from AccessControl import ClassSecurityInfo
from
Products.ERP5Type
import
Permissions
import
json
import
jinja2
from
six.moves
import
range
class
ERP5ScalabilityDistributor
(
ERP5ProjectUnitTestDistributor
,
object
):
security
=
ClassSecurityInfo
()
...
...
@@ -342,7 +343,7 @@ class ERP5ScalabilityDistributor(ERP5ProjectUnitTestDistributor, object):
try
:
template
=
jinja2
.
Template
(
cluster_configuration
)
for
index
in
x
range
(
0
,
len
(
number_configuration_list
)):
for
index
in
range
(
0
,
len
(
number_configuration_list
)):
template_vars
=
{
"count"
:
number_configuration_list
[
index
],
"comp"
:
remaining_nodes
}
configuration_list_json
.
append
(
json
.
loads
(
...
...
bt5/erp5_test_result/DocumentTemplateItem/portal_components/document.erp5.GitlabRESTConnector.py
View file @
85784103
...
...
@@ -28,8 +28,8 @@
from
urllib
import
quote_plus
from
url
parse
import
urlparse
from
url
parse
import
urljoin
from
six.moves.urllib.
parse
import
urlparse
from
six.moves.urllib.
parse
import
urljoin
import
logging
from
AccessControl
import
ClassSecurityInfo
...
...
bt5/erp5_test_result/ExtensionTemplateItem/portal_components/extension.erp5.ScalabilityTestSuiteUtils.py
View file @
85784103
...
...
@@ -27,6 +27,7 @@
import
jinja2
import
json
from
six.moves
import
range
def
getGeneratedConfigurationList
(
self
,
*
args
,
**
kw
):
document_list
=
[]
...
...
@@ -36,7 +37,7 @@ def getGeneratedConfigurationList(self, *args, **kw):
#max = self.getNumberConfiguration()
comp_list_view
=
[
"COMP-%i"
%
(
x
)
for
x
in
range
(
0
,
max_comp
)
]
for
count
in
x
range
(
1
,
max_
+
1
):
for
count
in
range
(
1
,
max_
+
1
):
template_vars
=
{
"count"
:
count
,
"comp"
:
comp_list_view
}
output_text
=
template
.
render
(
template_vars
)
description
=
json
.
dumps
(
json
.
loads
(
output_text
),
sort_keys
=
True
,
indent
=
4
,
separators
=
(
','
,
': '
))
...
...
@@ -126,7 +127,7 @@ def generateConfigurationList(self, test_suite_title):
# bad json configuration
try
:
template
=
jinja2
.
Template
(
cluster_configuration
)
for
count
in
x
range
(
1
,
number_configuration
+
1
):
for
count
in
range
(
1
,
number_configuration
+
1
):
template_vars
=
{
"count"
:
count
,
"comp"
:
remaining_nodes_computer_guid
}
configuration_list_json
.
append
(
json
.
loads
(
template
.
render
(
template_vars
)
)
)
return_dict
[
'launchable'
]
=
True
...
...
bt5/erp5_test_result/SkinTemplateItem/portal_skins/erp5_test_result/TestResult_getDiff.py
View file @
85784103
...
...
@@ -9,6 +9,7 @@ if len(value_list) != 2:
a
,
b
=
value_list
from
Products.ERP5Type.Document
import
newTempBase
import
six
# make sure that a is the oldest result
if
a
.
getIntIndex
()
>
b
.
getIntIndex
():
...
...
@@ -50,7 +51,7 @@ for a_line in a.searchFolder(portal_type='Test Result Line'):
before_url
=
a_line
.
absolute_url
(),
**
d
))
for
title
,
not_in_a
in
b_title_dict
.
iteritems
(
):
for
title
,
not_in_a
in
six
.
iteritems
(
b_title_dict
):
b_line
=
b
[
not_in_a
]
d
=
dict
((
prop
,
b_line
.
getProperty
(
prop
))
for
prop
in
compared_prop_list
)
object_list
.
append
(
newTempBase
(
context
,
title
,
...
...
bt5/erp5_test_result/SkinTemplateItem/portal_skins/erp5_test_result/TestResult_getJsonScalabilityStats.py
View file @
85784103
...
...
@@ -22,7 +22,7 @@ for tl in test_result_lines:
test_name
=
test
.
split
(
':'
)[
0
]
test_documents_created
=
test
.
split
(
':'
)[
1
].
replace
(
'doc/hour'
,
''
).
strip
()
# initial init
if
test_name
not
in
results
.
keys
(
):
if
test_name
not
in
list
(
results
.
keys
()
):
results
[
test_name
]
=
[]
results
[
test_name
].
append
({
'created_docs'
:
test_documents_created
,
'duration'
:
3600
})
...
...
bt5/erp5_test_result/ToolComponentTemplateItem/portal_components/tool.erp5.TaskDistributionTool.py
View file @
85784103
...
...
@@ -32,7 +32,8 @@ from Products.ERP5Type import Permissions
from
Products.ERP5Type.Tool.BaseTool
import
BaseTool
from
Products.ZSQLCatalog.SQLCatalog
import
SimpleQuery
,
NegatedQuery
from
zLOG
import
LOG
,
DEBUG
from
xmlrpclib
import
Binary
from
six.moves.xmlrpc_client
import
Binary
import
six
class
TaskDistributionTool
(
BaseTool
):
"""
...
...
@@ -266,7 +267,7 @@ class TaskDistributionTool(BaseTool):
extract all xmlrpclib.Binary instance
"""
return
{
x
:
y
.
data
if
isinstance
(
y
,
Binary
)
else
y
for
x
,
y
in
xmlrpc_dict
.
iteritems
(
)}
for
x
,
y
in
six
.
iteritems
(
xmlrpc_dict
)}
security
.
declarePublic
(
'reportTaskFailure'
)
def
reportTaskFailure
(
self
,
test_result_path
,
status_dict
,
node_title
):
...
...
bt5/erp5_test_result/WorkflowTemplateItem/portal_workflow/test_suite_workflow/script_TestSuite_afterValidate.py
View file @
85784103
import
string
from
random
import
choice
from
six.moves
import
range
test_suite
=
state_change
[
'object'
]
portal
=
test_suite
.
getPortalObject
()
...
...
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