Delete the CUSTOM_RAID template after test has finished
Previously, the tempest plugin would orphan a CUSTOM_RAID
deploy template in the ironic deployment by not removing it
after the test has been completed. This change adds a cleanup
to trigger the deletion of the template, so the test does not
fail upon a second re-execution against the environment.
Closes-Bug: 2055456
Change-Id: I21ea329feb48e56b7f2984f62cdbc41c1a0bd1d0
diff --git a/ironic_tempest_plugin/tests/scenario/baremetal_standalone_manager.py b/ironic_tempest_plugin/tests/scenario/baremetal_standalone_manager.py
index a66d7d6..4a30aa5 100644
--- a/ironic_tempest_plugin/tests/scenario/baremetal_standalone_manager.py
+++ b/ironic_tempest_plugin/tests/scenario/baremetal_standalone_manager.py
@@ -791,8 +791,12 @@
"args": {"raid_config": config},
}
]
- self.baremetal_client.create_deploy_template(
+ _, template = self.baremetal_client.create_deploy_template(
'CUSTOM_RAID', steps=steps)
+ # Set a cleanup to ensure the deploy template is removed.
+ self.addCleanup(
+ self.baremetal_client.delete_deploy_template,
+ template['uuid'])
self.baremetal_client.add_node_trait(self.node['uuid'],
'CUSTOM_RAID')