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
Matevz Golob
erp5
Commits
32859fc4
Commit
32859fc4
authored
Apr 12, 2019
by
Sebastien Robin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
task distribution: avoid test nodes stuck with test suite having failing runTestSuite
parent
d2dd961f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
12 deletions
+63
-12
bt5/erp5_test_result/TestTemplateItem/portal_components/test.erp5.testTaskDistribution.py
...eItem/portal_components/test.erp5.testTaskDistribution.py
+56
-11
product/ERP5/Tool/TaskDistributionTool.py
product/ERP5/Tool/TaskDistributionTool.py
+7
-1
No files found.
bt5/erp5_test_result/TestTemplateItem/portal_components/test.erp5.testTaskDistribution.py
View file @
32859fc4
...
@@ -493,6 +493,12 @@ class TestTaskDistribution(ERP5TypeTestCase):
...
@@ -493,6 +493,12 @@ class TestTaskDistribution(ERP5TypeTestCase):
[
'testFailing'
,
'testSlow'
,
'testFast'
],
[
'testFailing'
,
'testSlow'
,
'testFast'
],
[
self
.
tool
.
startUnitTest
(
test_result_path
)[
1
]
for
_
in
range
(
3
)])
[
self
.
tool
.
startUnitTest
(
test_result_path
)[
1
]
for
_
in
range
(
3
)])
def
checkTestResultLine
(
self
,
test_result
,
expected
):
line_list
=
test_result
.
objectValues
(
portal_type
=
"Test Result Line"
)
found_list
=
[(
x
.
getTitle
(),
x
.
getSimulationState
())
for
x
in
line_list
]
found_list
.
sort
(
key
=
lambda
x
:
x
[
0
])
self
.
assertEqual
(
expected
,
found_list
)
def
test_06b_restartStuckTest
(
self
):
def
test_06b_restartStuckTest
(
self
):
"""
"""
Check if a test result line is not stuck in 'started', if so, redraft
Check if a test result line is not stuck in 'started', if so, redraft
...
@@ -503,18 +509,13 @@ class TestTaskDistribution(ERP5TypeTestCase):
...
@@ -503,18 +509,13 @@ class TestTaskDistribution(ERP5TypeTestCase):
test_result
=
self
.
portal
.
unrestrictedTraverse
(
test_result_path
)
test_result
=
self
.
portal
.
unrestrictedTraverse
(
test_result_path
)
line_url
,
_
=
self
.
tool
.
startUnitTest
(
test_result_path
)
line_url
,
_
=
self
.
tool
.
startUnitTest
(
test_result_path
)
now
=
DateTime
()
now
=
DateTime
()
def
checkTestResultLine
(
expected
):
self
.
checkTestResultLine
(
test_result
,
[(
'testBar'
,
'started'
),
(
'testFoo'
,
'draft'
)])
line_list
=
test_result
.
objectValues
(
portal_type
=
"Test Result Line"
)
found_list
=
[(
x
.
getTitle
(),
x
.
getSimulationState
())
for
x
in
line_list
]
found_list
.
sort
(
key
=
lambda
x
:
x
[
0
])
self
.
assertEqual
(
expected
,
found_list
)
checkTestResultLine
([(
'testBar'
,
'started'
),
(
'testFoo'
,
'draft'
)])
self
.
_callRestartStuckTestResultAlarm
()
self
.
_callRestartStuckTestResultAlarm
()
checkTestResultLine
(
[(
'testBar'
,
'started'
),
(
'testFoo'
,
'draft'
)])
self
.
checkTestResultLine
(
test_result
,
[(
'testBar'
,
'started'
),
(
'testFoo'
,
'draft'
)])
line_url
,
_
=
self
.
tool
.
startUnitTest
(
test_result_path
)
line_url
,
_
=
self
.
tool
.
startUnitTest
(
test_result_path
)
checkTestResultLine
(
[(
'testBar'
,
'started'
),
(
'testFoo'
,
'started'
)])
self
.
checkTestResultLine
(
test_result
,
[(
'testBar'
,
'started'
),
(
'testFoo'
,
'started'
)])
self
.
_callRestartStuckTestResultAlarm
()
self
.
_callRestartStuckTestResultAlarm
()
checkTestResultLine
(
[(
'testBar'
,
'started'
),
(
'testFoo'
,
'started'
)])
self
.
checkTestResultLine
(
test_result
,
[(
'testBar'
,
'started'
),
(
'testFoo'
,
'started'
)])
# now let change history to do like if a test result line was started
# now let change history to do like if a test result line was started
# a long time ago
# a long time ago
line
=
self
.
portal
.
restrictedTraverse
(
line_url
)
line
=
self
.
portal
.
restrictedTraverse
(
line_url
)
...
@@ -522,9 +523,9 @@ class TestTaskDistribution(ERP5TypeTestCase):
...
@@ -522,9 +523,9 @@ class TestTaskDistribution(ERP5TypeTestCase):
if
history_line
[
'action'
]
==
'start'
:
if
history_line
[
'action'
]
==
'start'
:
history_line
[
'time'
]
=
now
-
1
history_line
[
'time'
]
=
now
-
1
self
.
_callRestartStuckTestResultAlarm
()
self
.
_callRestartStuckTestResultAlarm
()
checkTestResultLine
(
[(
'testBar'
,
'started'
),
(
'testFoo'
,
'draft'
)])
self
.
checkTestResultLine
(
test_result
,
[(
'testBar'
,
'started'
),
(
'testFoo'
,
'draft'
)])
self
.
tool
.
stopUnitTest
(
line_url
,
{})
self
.
tool
.
stopUnitTest
(
line_url
,
{})
checkTestResultLine
(
[(
'testBar'
,
'started'
),
(
'testFoo'
,
'stopped'
)])
self
.
checkTestResultLine
(
test_result
,
[(
'testBar'
,
'started'
),
(
'testFoo'
,
'stopped'
)])
def
test_07_reportTaskFailure
(
self
):
def
test_07_reportTaskFailure
(
self
):
"""
"""
...
@@ -594,6 +595,50 @@ class TestTaskDistribution(ERP5TypeTestCase):
...
@@ -594,6 +595,50 @@ class TestTaskDistribution(ERP5TypeTestCase):
finally
:
finally
:
self
.
unpinDateTime
()
self
.
unpinDateTime
()
def
test_07c_reportTaskFailureWithRedraftedTestResultLine
(
self
):
"""
Similar to above test.
But on the other hand, if a test result line is started many times (due to
automatic redraft), then this might just means we have issue of runTestSuite unable
to finish tests, or we might have just tests that can never be executed within timeout time.
In such case, it's better to mark test result as failed to give a chance to other test
suites to be executed
"""
now
=
DateTime
()
try
:
self
.
pinDateTime
(
now
-
1.0
/
24
*
8
)
test_result_path
,
_
=
self
.
_createTestResult
(
test_list
=
[
'testFoo'
])
test_result
=
self
.
getPortalObject
().
unrestrictedTraverse
(
test_result_path
)
self
.
checkTestResultLine
(
test_result
,
[(
'testFoo'
,
'draft'
)])
self
.
assertEqual
(
"started"
,
test_result
.
getSimulationState
())
node
,
=
test_result
.
objectValues
(
portal_type
=
"Test Result Node"
,
sort_on
=
[(
"title"
,
"ascending"
)])
self
.
assertEqual
(
"started"
,
node
.
getSimulationState
())
self
.
tool
.
startUnitTest
(
test_result_path
)
self
.
checkTestResultLine
(
test_result
,
[(
'testFoo'
,
'started'
)])
# We have a failure but with recent activities on tests
self
.
pinDateTime
(
now
-
1.0
/
24
*
7.5
)
self
.
tool
.
reportTaskFailure
(
test_result_path
,
{},
"Node0"
)
self
.
assertEqual
(
"failed"
,
node
.
getSimulationState
())
self
.
assertEqual
(
"started"
,
test_result
.
getSimulationState
())
self
.
checkTestResultLine
(
test_result
,
[(
'testFoo'
,
'started'
)])
# some hours later, test line is redrafted
self
.
pinDateTime
(
now
-
1.0
/
24
*
3
)
self
.
_callRestartStuckTestResultAlarm
()
self
.
checkTestResultLine
(
test_result
,
[(
'testFoo'
,
'draft'
)])
# Test is then relaunched
self
.
tool
.
startUnitTest
(
test_result_path
)
self
.
checkTestResultLine
(
test_result
,
[(
'testFoo'
,
'started'
)])
# We have another failure but remains only test result line that was already
# redrafted, so we have to mark the test result as failed
self
.
pinDateTime
(
now
-
1.0
/
24
*
2.5
)
self
.
tool
.
reportTaskFailure
(
test_result_path
,
{},
"Node0"
)
self
.
assertEqual
(
"failed"
,
node
.
getSimulationState
())
self
.
assertEqual
(
"failed"
,
test_result
.
getSimulationState
())
finally
:
self
.
unpinDateTime
()
def
test_08_checkWeCanNotCreateTwoTestResultInParallel
(
self
):
def
test_08_checkWeCanNotCreateTwoTestResultInParallel
(
self
):
"""
"""
To avoid duplicates of test result when several testnodes works on the
To avoid duplicates of test result when several testnodes works on the
...
...
product/ERP5/Tool/TaskDistributionTool.py
View file @
32859fc4
...
@@ -285,6 +285,12 @@ class TaskDistributionTool(BaseTool):
...
@@ -285,6 +285,12 @@ class TaskDistributionTool(BaseTool):
for
test_result_line
in
test_result
.
objectValues
(
for
test_result_line
in
test_result
.
objectValues
(
portal_type
=
"Test Result Line"
):
portal_type
=
"Test Result Line"
):
if
test_result_line
.
getModificationDate
()
>
recent_time
:
if
test_result_line
.
getModificationDate
()
>
recent_time
:
# do not take into account redrafted lines, this means we already
# add issues with them
if
len
([
x
for
x
in
portal
.
portal_workflow
.
getInfoFor
(
ob
=
test_result_line
,
name
=
'history'
,
wf_id
=
'test_result_workflow'
)
if
x
[
'action'
]
==
'redraft'
])
==
0
:
break
break
else
:
else
:
if
test_result
.
getSimulationState
()
not
in
(
'failed'
,
'cancelled'
):
if
test_result
.
getSimulationState
()
not
in
(
'failed'
,
'cancelled'
):
...
...
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