Reuse already existing groups from upstream tempest config

Tempest plugin tests uses the same config file/object from the
upstream tempest, therefore instead of registering the same group
again in plugin tests we should reuse already existing groups and
register only plugin specific option here.

Change-Id: I948fdcf20732b98d5ba5d34fe0352ea9cff59f91
Closes-Bug: #1659596
This commit is contained in:
Nishant Kumar 2017-01-27 01:05:10 -05:00
parent b64b3a668b
commit bdb0adee2e
2 changed files with 5 additions and 18 deletions

View File

@ -15,16 +15,7 @@
from oslo_config import cfg
identity_group = cfg.OptGroup(name='identity',
title="Keystone Configuration Options")
IdentityGroup = []
identity_feature_group = cfg.OptGroup(name='identity-feature-enabled',
title='Enabled Identity Features')
IdentityFeatureGroup = [
identity_feature_option = [
cfg.BoolOpt('federation',
default=False,
help='Does the environment support the Federated Identity '

View File

@ -31,17 +31,13 @@ class KeystoneTempestPlugin(plugins.TempestPlugin):
return full_test_dir, base_path
def register_opts(self, conf):
config.register_opt_group(conf, project_config.identity_group,
project_config.IdentityGroup)
config.register_opt_group(conf, project_config.identity_feature_group,
project_config.IdentityFeatureGroup)
config.register_opt_group(conf, config.identity_feature_group,
project_config.identity_feature_option)
config.register_opt_group(conf, project_config.fed_scenario_group,
project_config.FedScenarioGroup)
def get_opt_lists(self):
return [(project_config.identity_group.name,
project_config.IdentityGroup),
(project_config.identity_feature_group.name,
project_config.IdentityFeatureGroup),
return [(config.identity_feature_group.name,
project_config.identity_feature_option),
(project_config.fed_scenario_group.name,
project_config.FedScenarioGroup)]