Add invokation on network checker

To catch regression in network checker,
add it invocation into fuelweb deployment gate test

Change-Id: I089f175a7930e9b499016531ea52894e4ff81e16
Closes-Bug: #1570248
This commit is contained in:
Tatyana Leontovich 2016-04-14 12:43:29 +03:00
parent 8819e74253
commit a1e3309e4e
1 changed files with 9 additions and 3 deletions

View File

@ -44,8 +44,10 @@ class GateFuelWeb(TestBasic):
7. Add 1 controller nodes
8. Add 1 compute node
9. Add 1 cinder node
10. Deploy environment
11. Run OSTF
10. Run network verify
11. Deploy environment
12. Run network verify
13. Run OSTF
"""
if not UPDATE_FUEL:
raise exceptions.FuelQAVariableNotSet('UPDATE_FUEL', 'True')
@ -80,8 +82,12 @@ class GateFuelWeb(TestBasic):
}
)
self.show_step(10)
self.fuel_web.deploy_cluster_wait(cluster_id)
self.fuel_web.verify_network(cluster_id)
self.show_step(11)
self.fuel_web.deploy_cluster_wait(cluster_id)
self.show_step(12)
self.fuel_web.verify_network(cluster_id)
self.show_step(13)
# run only smoke according to sanity and ha ran in deploy_wait()
self.fuel_web.run_ostf(cluster_id=cluster_id,
test_sets=['smoke'])