Check cloud health after reboot in bonding tests

Add execution of network verification and OSTF in
order to check that all cloud services are started
and work properly after cluster reboot

Change-Id: I7e1868efc7d2a34e1cb1486f6fd678e20c8850b4
Related-bug: #1546947
This commit is contained in:
Artem Panchenko 2016-02-19 00:43:30 +02:00
parent 2c57305276
commit f75c8e3174
1 changed files with 18 additions and 0 deletions

View File

@ -238,6 +238,8 @@ class BondingHA(BondingTest):
9. Save network configuration from slave nodes
10. Reboot all environment nodes
11. Verify that network configuration is the same after reboot
12. Run network verification
13. Run OSTF
Duration 70m
Snapshot deploy_bonding_neutron_vlan
@ -300,6 +302,13 @@ class BondingHA(BondingTest):
self.show_step(10)
self.show_step(11)
self.check_interfaces_config_after_reboot(cluster_id)
self.fuel_web.assert_ha_services_ready(cluster_id)
self.show_step(12)
self.fuel_web.verify_network(cluster_id)
self.show_step(13)
self.fuel_web.run_ostf(cluster_id=cluster_id)
self.env.make_snapshot("deploy_bonding_neutron_vlan")
@ -322,6 +331,8 @@ class BondingHA(BondingTest):
9. Save network configuration from slave nodes
10. Reboot all environment nodes
11. Verify that network configuration is the same after reboot
12. Run network verification
13. Run OST
Duration 70m
Snapshot deploy_bonding_neutron_tun
@ -384,6 +395,13 @@ class BondingHA(BondingTest):
self.show_step(10)
self.show_step(11)
self.check_interfaces_config_after_reboot(cluster_id)
self.fuel_web.assert_ha_services_ready(cluster_id)
self.show_step(12)
self.fuel_web.verify_network(cluster_id)
self.show_step(13)
self.fuel_web.run_ostf(cluster_id=cluster_id)
self.env.make_snapshot("deploy_bonding_neutron_tun")