Commit bcd56f1e authored by Romain Courteaud's avatar Romain Courteaud

slapos_cloud: test: allow to disable alarm when validation a allocation supply

parent e2bcd8c7
...@@ -822,7 +822,8 @@ class SlapOSTestCaseMixin(testSlapOSMixin): ...@@ -822,7 +822,8 @@ class SlapOSTestCaseMixin(testSlapOSMixin):
def addAllocationSupply(self, title, node, software_product, def addAllocationSupply(self, title, node, software_product,
software_release, software_type, software_release, software_type,
destination_value=None, destination_value=None,
is_slave_on_same_instance_tree_allocable=False): is_slave_on_same_instance_tree_allocable=False,
disable_alarm=False):
allocation_supply = self.portal.allocation_supply_module.newContent( allocation_supply = self.portal.allocation_supply_module.newContent(
portal_type="Allocation Supply", portal_type="Allocation Supply",
title=title, title=title,
...@@ -861,7 +862,12 @@ class SlapOSTestCaseMixin(testSlapOSMixin): ...@@ -861,7 +862,12 @@ class SlapOSTestCaseMixin(testSlapOSMixin):
predicate_category_list=cell_key, predicate_category_list=cell_key,
variation_category_list=cell_key variation_category_list=cell_key
) )
allocation_supply.validate() if disable_alarm:
# disable generation of Upgrade Decision
with TemporaryAlarmScript(self.portal, 'Base_reindexAndSenseAlarm', "'disabled'"):
allocation_supply.validate()
else:
allocation_supply.validate()
return allocation_supply return allocation_supply
def generateNewSoftwareReleaseUrl(self): def generateNewSoftwareReleaseUrl(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment