Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
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
Titouan Soulard
slapos.core
Commits
332fa4db
Commit
332fa4db
authored
Sep 16, 2022
by
Romain Courteaud
🐸
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[test] Add a step to trigger all alarms
parent
13103bd5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
master/product/SlapOS/tests/testSlapOSMixin.py
master/product/SlapOS/tests/testSlapOSMixin.py
+12
-2
No files found.
master/product/SlapOS/tests/testSlapOSMixin.py
View file @
332fa4db
...
...
@@ -60,10 +60,20 @@ class testSlapOSMixin(ERP5TypeTestCase):
finally
:
setSecurityManager
(
sm
)
return
callAlarm
def
makeCallAlarmList
(
step_list
):
def
callAlarmList
(
*
args
,
**
kwargs
):
for
step
in
step_list
:
getattr
(
self
,
step
)()
return
callAlarmList
alarm_step_list
=
[]
for
alarm
in
self
.
portal
.
portal_alarms
.
contentValues
():
if
alarm
.
isEnabled
():
setattr
(
self
,
'stepCall'
+
convertToUpperCase
(
alarm
.
getId
())
\
+
'Alarm'
,
makeCallAlarm
(
alarm
))
step_name
=
'stepCall'
+
convertToUpperCase
(
alarm
.
getId
())
+
'Alarm'
alarm_step_list
.
append
(
step_name
)
setattr
(
self
,
step_name
,
makeCallAlarm
(
alarm
))
setattr
(
self
,
'stepCallAlarmList'
,
makeCallAlarmList
(
alarm_step_list
))
# Compatibility
# Ensure Open Order are created before doing allocation
...
...
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