Neutron QoS added to installations info report

Change-Id: If3c61a4bb1c8bb81ca4a03d20a536acf083375cc
Closes-Bug: #1604746
This commit is contained in:
Alexander Kislitsky 2016-07-22 19:15:40 +03:00
parent 8e16219249
commit dd70b95d56
2 changed files with 2 additions and 0 deletions

View File

@ -49,6 +49,7 @@ INSTALLATION_INFO_SKELETON = {
'neutron_dvr': None,
'neutron_l2_pop': None,
'neutron_l3_ha': None,
'neutron_qos': None,
'nova_quota': None,
'nsx': None,
'nsx_replication': None,

View File

@ -58,6 +58,7 @@ class StatsToCsvExportTest(InstStructureTest, DbTest):
self.assertIn(['attributes', 'neutron_dvr'], csv_keys_paths)
self.assertIn(['attributes', 'neutron_l2_pop'], csv_keys_paths)
self.assertIn(['attributes', 'neutron_l3_ha'], csv_keys_paths)
self.assertIn(['attributes', 'neutron_qos'], csv_keys_paths)
self.assertIn(['attributes', 'public_ssl_cert_source'], csv_keys_paths)
self.assertIn(['attributes', 'public_ssl_horizon'], csv_keys_paths)
self.assertIn(['attributes', 'public_ssl_services'], csv_keys_paths)