Merge "Migrate the preprov creds module to tempest lib"
This commit is contained in:
commit
e70e0feb63
@ -14,3 +14,10 @@ The dynamic credentials module
|
||||
|
||||
.. automodule:: tempest.lib.common.dynamic_creds
|
||||
:members:
|
||||
|
||||
--------------------------------------
|
||||
The pre-provisioned credentials module
|
||||
--------------------------------------
|
||||
|
||||
.. automodule:: tempest.lib.common.preprov_creds
|
||||
:members:
|
||||
|
@ -0,0 +1,11 @@
|
||||
---
|
||||
features:
|
||||
- The tempest module tempest.common.preprov_creds which is used to provide
|
||||
credentials from a list of preprovisioned resources has been migrated into
|
||||
tempest lib at tempest.lib.common.preprov_creds.
|
||||
- The InvalidTestResource exception class from tempest.exceptions has been
|
||||
migrated into tempest.lib.exceptions
|
||||
- The tempest module tempest.common.fixed_network which provided utilities for
|
||||
finding fixed networks by and helpers for picking the network to use when
|
||||
multiple tenant networks are available has been migrated into tempest lib
|
||||
at tempest.lib.common.fixed_network.
|
@ -14,8 +14,8 @@
|
||||
|
||||
from tempest.api.compute import base
|
||||
from tempest.common import compute
|
||||
from tempest.common import fixed_network
|
||||
from tempest.common import waiters
|
||||
from tempest.lib.common import fixed_network
|
||||
from tempest.lib.common.utils import data_utils
|
||||
from tempest.lib import decorators
|
||||
|
||||
|
@ -15,9 +15,9 @@
|
||||
import testtools
|
||||
|
||||
from tempest.api.compute import base
|
||||
from tempest.common import fixed_network
|
||||
from tempest.common import waiters
|
||||
from tempest import config
|
||||
from tempest.lib.common import fixed_network
|
||||
from tempest.lib.common.utils import data_utils
|
||||
from tempest.lib import decorators
|
||||
|
||||
|
@ -25,9 +25,9 @@ from six.moves.urllib import parse as urlparse
|
||||
from oslo_log import log as logging
|
||||
from oslo_utils import excutils
|
||||
|
||||
from tempest.common import fixed_network
|
||||
from tempest.common import waiters
|
||||
from tempest import config
|
||||
from tempest.lib.common import fixed_network
|
||||
from tempest.lib.common import rest_client
|
||||
from tempest.lib.common.utils import data_utils
|
||||
|
||||
|
@ -14,10 +14,10 @@
|
||||
from oslo_concurrency import lockutils
|
||||
|
||||
from tempest import clients
|
||||
from tempest.common import preprov_creds
|
||||
from tempest import config
|
||||
from tempest.lib import auth
|
||||
from tempest.lib.common import dynamic_creds
|
||||
from tempest.lib.common import preprov_creds
|
||||
from tempest.lib import exceptions
|
||||
|
||||
CONF = config.CONF
|
||||
|
@ -52,12 +52,5 @@ class ServerUnreachable(exceptions.TempestException):
|
||||
"the configured network")
|
||||
|
||||
|
||||
# NOTE(andreaf) This exception is added here to facilitate the migration
|
||||
# of get_network_from_name and preprov_creds to tempest.lib, and it should
|
||||
# be migrated along with them
|
||||
class InvalidTestResource(exceptions.TempestException):
|
||||
message = "%(name)s is not a valid %(type)s, or the name is ambiguous"
|
||||
|
||||
|
||||
class RFCViolation(exceptions.RestClientException):
|
||||
message = "RFC Violation"
|
||||
|
@ -14,8 +14,8 @@ import copy
|
||||
|
||||
from oslo_log import log as logging
|
||||
|
||||
from tempest import exceptions
|
||||
from tempest.lib.common.utils import test_utils
|
||||
from tempest.lib import exceptions
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
@ -20,10 +20,9 @@ from oslo_log import log as logging
|
||||
import six
|
||||
import yaml
|
||||
|
||||
from tempest.common import fixed_network
|
||||
from tempest import exceptions
|
||||
from tempest.lib import auth
|
||||
from tempest.lib.common import cred_provider
|
||||
from tempest.lib.common import fixed_network
|
||||
from tempest.lib import exceptions as lib_exc
|
||||
from tempest.lib.services import clients
|
||||
|
||||
@ -350,7 +349,7 @@ class PreProvisionedCredentialProvider(cred_provider.CredentialProvider):
|
||||
try:
|
||||
network = fixed_network.get_network_from_name(
|
||||
net_name, compute_network_client)
|
||||
except exceptions.InvalidTestResource:
|
||||
except lib_exc.InvalidTestResource:
|
||||
network = {}
|
||||
net_creds.set_resources(network=network)
|
||||
return net_creds
|
@ -269,3 +269,7 @@ class VolumeBackupException(TempestException):
|
||||
class DeleteErrorException(TempestException):
|
||||
message = ("Resource %(resource_id)s failed to delete "
|
||||
"and is in ERROR status")
|
||||
|
||||
|
||||
class InvalidTestResource(TempestException):
|
||||
message = "%(name)s is not a valid %(type)s, or the name is ambiguous"
|
||||
|
@ -26,10 +26,10 @@ import testtools
|
||||
|
||||
from tempest import clients
|
||||
from tempest.common import credentials_factory as credentials
|
||||
from tempest.common import fixed_network
|
||||
import tempest.common.validation_resources as vresources
|
||||
from tempest import config
|
||||
from tempest.lib.common import cred_client
|
||||
from tempest.lib.common import fixed_network
|
||||
from tempest.lib import decorators
|
||||
from tempest.lib import exceptions as lib_exc
|
||||
|
||||
|
@ -53,7 +53,7 @@ class TestAdminAvailable(base.TestCase):
|
||||
'password': 'p',
|
||||
'types': ['admin']})
|
||||
self.useFixture(fixtures.MockPatch(
|
||||
'tempest.common.preprov_creds.read_accounts_yaml',
|
||||
'tempest.lib.common.preprov_creds.read_accounts_yaml',
|
||||
return_value=accounts))
|
||||
cfg.CONF.set_default('test_accounts_file',
|
||||
use_accounts_file, group='auth')
|
||||
|
@ -40,7 +40,7 @@ class TestAltAvailable(base.TestCase):
|
||||
project_name="t%s" % ii,
|
||||
password="p") for ii in creds]
|
||||
self.useFixture(fixtures.MockPatch(
|
||||
'tempest.common.preprov_creds.read_accounts_yaml',
|
||||
'tempest.lib.common.preprov_creds.read_accounts_yaml',
|
||||
return_value=accounts))
|
||||
cfg.CONF.set_default('test_accounts_file',
|
||||
use_accounts_file, group='auth')
|
||||
|
@ -24,10 +24,10 @@ import fixtures
|
||||
from oslo_concurrency.fixture import lockutils as lockutils_fixtures
|
||||
from oslo_config import cfg
|
||||
|
||||
from tempest.common import preprov_creds
|
||||
from tempest import config
|
||||
from tempest.lib import auth
|
||||
from tempest.lib.common import cred_provider
|
||||
from tempest.lib.common import preprov_creds
|
||||
from tempest.lib import exceptions as lib_exc
|
||||
from tempest.tests import base
|
||||
from tempest.tests import fake_config
|
||||
@ -88,7 +88,7 @@ class TestPreProvisionedCredentials(base.TestCase):
|
||||
self.useFixture(lockutils_fixtures.ExternalLockFixture())
|
||||
self.test_accounts = self._fake_accounts(cfg.CONF.identity.admin_role)
|
||||
self.accounts_mock = self.useFixture(fixtures.MockPatch(
|
||||
'tempest.common.preprov_creds.read_accounts_yaml',
|
||||
'tempest.lib.common.preprov_creds.read_accounts_yaml',
|
||||
return_value=self.test_accounts))
|
||||
self.useFixture(fixtures.MockPatch(
|
||||
'os.path.isfile', return_value=True))
|
||||
@ -271,7 +271,7 @@ class TestPreProvisionedCredentials(base.TestCase):
|
||||
def test_is_not_multi_user(self):
|
||||
self.test_accounts = [self.test_accounts[0]]
|
||||
self.useFixture(fixtures.MockPatch(
|
||||
'tempest.common.preprov_creds.read_accounts_yaml',
|
||||
'tempest.lib.common.preprov_creds.read_accounts_yaml',
|
||||
return_value=self.test_accounts))
|
||||
test_accounts_class = preprov_creds.PreProvisionedCredentialProvider(
|
||||
**self.fixed_params)
|
||||
@ -335,7 +335,7 @@ class TestPreProvisionedCredentials(base.TestCase):
|
||||
'password': 'p', 'roles': ['role-7', 'role-11'],
|
||||
'resources': {'network': 'network-2'}}]
|
||||
self.useFixture(fixtures.MockPatch(
|
||||
'tempest.common.preprov_creds.read_accounts_yaml',
|
||||
'tempest.lib.common.preprov_creds.read_accounts_yaml',
|
||||
return_value=test_accounts))
|
||||
test_accounts_class = preprov_creds.PreProvisionedCredentialProvider(
|
||||
**self.fixed_params)
|
||||
@ -363,7 +363,7 @@ class TestPreProvisionedCredentials(base.TestCase):
|
||||
admin_accounts = [x for x in self.test_accounts if 'test_admin'
|
||||
in x['username']]
|
||||
self.useFixture(fixtures.MockPatch(
|
||||
'tempest.common.preprov_creds.read_accounts_yaml',
|
||||
'tempest.lib.common.preprov_creds.read_accounts_yaml',
|
||||
return_value=admin_accounts))
|
||||
test_accounts_class = preprov_creds.PreProvisionedCredentialProvider(
|
||||
**self.fixed_params)
|
||||
@ -381,7 +381,7 @@ class TestPreProvisionedCredentials(base.TestCase):
|
||||
admin_accounts = [x for x in self.test_accounts if 'test_admin'
|
||||
in x['username']]
|
||||
self.useFixture(fixtures.MockPatch(
|
||||
'tempest.common.preprov_creds.read_accounts_yaml',
|
||||
'tempest.lib.common.preprov_creds.read_accounts_yaml',
|
||||
return_value=admin_accounts))
|
||||
test_accounts_class = preprov_creds.PreProvisionedCredentialProvider(
|
||||
**self.fixed_params)
|
||||
@ -402,7 +402,7 @@ class TestPreProvisionedCredentials(base.TestCase):
|
||||
{'username': 'test_admin1', 'tenant_name': 'test_tenant11',
|
||||
'password': 'p', 'types': ['admin']}]
|
||||
self.useFixture(fixtures.MockPatch(
|
||||
'tempest.common.preprov_creds.read_accounts_yaml',
|
||||
'tempest.lib.common.preprov_creds.read_accounts_yaml',
|
||||
return_value=test_accounts))
|
||||
test_accounts_class = preprov_creds.PreProvisionedCredentialProvider(
|
||||
**self.fixed_params)
|
||||
@ -416,7 +416,7 @@ class TestPreProvisionedCredentials(base.TestCase):
|
||||
{'username': 'test_admin1', 'tenant_name': 'test_tenant11',
|
||||
'password': 'p', 'roles': [cfg.CONF.identity.admin_role]}]
|
||||
self.useFixture(fixtures.MockPatch(
|
||||
'tempest.common.preprov_creds.read_accounts_yaml',
|
||||
'tempest.lib.common.preprov_creds.read_accounts_yaml',
|
||||
return_value=test_accounts))
|
||||
test_accounts_class = preprov_creds.PreProvisionedCredentialProvider(
|
||||
**self.fixed_params)
|
||||
@ -427,7 +427,7 @@ class TestPreProvisionedCredentials(base.TestCase):
|
||||
non_admin_accounts = [x for x in self.test_accounts if 'test_admin'
|
||||
not in x['username']]
|
||||
self.useFixture(fixtures.MockPatch(
|
||||
'tempest.common.preprov_creds.read_accounts_yaml',
|
||||
'tempest.lib.common.preprov_creds.read_accounts_yaml',
|
||||
return_value=non_admin_accounts))
|
||||
test_accounts_class = preprov_creds.PreProvisionedCredentialProvider(
|
||||
**self.fixed_params)
|
@ -16,8 +16,8 @@ import mock
|
||||
|
||||
from tempest import clients
|
||||
from tempest.common import credentials_factory as credentials
|
||||
from tempest.common import fixed_network
|
||||
from tempest import config
|
||||
from tempest.lib.common import fixed_network
|
||||
from tempest import test
|
||||
from tempest.tests import base
|
||||
from tempest.tests import fake_config
|
||||
|
Loading…
Reference in New Issue
Block a user