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
Carlos Ramos Carreño
erp5
Commits
d294ead3
Commit
d294ead3
authored
Aug 09, 2013
by
Benjamin Blanc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scalability: runScalabilityTestSuite: add logs
parent
ac48516b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
erp5/util/scalability/runScalabilityTestSuite.py
erp5/util/scalability/runScalabilityTestSuite.py
+7
-1
No files found.
erp5/util/scalability/runScalabilityTestSuite.py
View file @
d294ead3
...
@@ -86,6 +86,7 @@ def getCreatedDocumentNumberFromERP5(erp5_url, log):
...
@@ -86,6 +86,7 @@ def getCreatedDocumentNumberFromERP5(erp5_url, log):
"""
"""
Get the number of created documents
Get the number of created documents
"""
"""
log
(
"count docs number from ERP5 instance"
)
count_retry
=
0
count_retry
=
0
zope_connection
=
getConnection
(
erp5_url
,
log
)
zope_connection
=
getConnection
(
erp5_url
,
log
)
while
count_retry
<
100
:
while
count_retry
<
100
:
...
@@ -98,6 +99,7 @@ def getCreatedDocumentNumberFromERP5(erp5_url, log):
...
@@ -98,6 +99,7 @@ def getCreatedDocumentNumberFromERP5(erp5_url, log):
result
=
zope_connection
.
getresponse
()
result
=
zope_connection
.
getresponse
()
return
int
(
result
.
read
())
return
int
(
result
.
read
())
except
:
except
:
log
(
"retry.."
)
count_retry
+=
1
count_retry
+=
1
time
.
sleep
(
15
)
time
.
sleep
(
15
)
raise
ValueError
(
"Impossible to get number of docs from ERP5"
)
raise
ValueError
(
"Impossible to get number of docs from ERP5"
)
...
@@ -333,7 +335,7 @@ class ScalabilityLauncher(object):
...
@@ -333,7 +335,7 @@ class ScalabilityLauncher(object):
# Waiting for 0-pending activities
# Waiting for 0-pending activities
waitFor0PendingActivities
(
self
.
__argumentNamespace
.
erp5_url
,
self
.
log
)
waitFor0PendingActivities
(
self
.
__argumentNamespace
.
erp5_url
,
self
.
log
)
previous_document_number
=
getCreatedDocumentNumberFromERP5
(
self
.
__argumentNamespace
.
erp5_url
,
self
.
log
)
previous_document_number
=
getCreatedDocumentNumberFromERP5
(
self
.
__argumentNamespace
.
erp5_url
,
self
.
log
)
self
.
log
(
"previous_document_number: %d"
previous_document_number
)
# Here call a runScalabilityTest ( placed on product/ERP5Type/tests ) ?
# Here call a runScalabilityTest ( placed on product/ERP5Type/tests ) ?
self
.
log
(
"Test Case %s is running..."
%
(
current_test
.
title
))
self
.
log
(
"Test Case %s is running..."
%
(
current_test
.
title
))
try
:
try
:
...
@@ -380,6 +382,10 @@ class ScalabilityLauncher(object):
...
@@ -380,6 +382,10 @@ class ScalabilityLauncher(object):
current_document_number
=
getCreatedDocumentNumberFromERP5
(
self
.
__argumentNamespace
.
erp5_url
,
self
.
log
)
current_document_number
=
getCreatedDocumentNumberFromERP5
(
self
.
__argumentNamespace
.
erp5_url
,
self
.
log
)
created_document_number
=
current_document_number
-
previous_document_number
created_document_number
=
current_document_number
-
previous_document_number
self
.
log
(
"previous_document_number: %d"
previous_document_number
)
self
.
log
(
"current_document_number: %d"
current_document_number
)
self
.
log
(
"created_document_number: %d"
created_document_number
)
failed_document_number
=
0
failed_document_number
=
0
created_document_per_hour_number
=
(
(
float
(
created_document_number
)
*
60
*
60
)
/
float
(
test_duration
)
)
created_document_per_hour_number
=
(
(
float
(
created_document_number
)
*
60
*
60
)
/
float
(
test_duration
)
)
...
...
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