Merge "Move cred_provider abstract class to tempest lib"

This commit is contained in:
Jenkins 2016-10-18 06:16:50 +00:00 committed by Gerrit Code Review
commit c8526432ee
5 changed files with 9 additions and 3 deletions

View File

@ -0,0 +1,6 @@
---
features:
- The cred_provider abstract class which serves as the basis for both
of tempest's cred providers, pre-provisioned credentials and dynamic
credentials, is now a library interface. This provides the common signature
required for building a credential provider.

View File

@ -18,9 +18,9 @@ import six
from tempest import clients
from tempest.common import cred_client
from tempest.common import cred_provider
from tempest.common.utils import data_utils
from tempest import exceptions
from tempest.lib.common import cred_provider
from tempest.lib import exceptions as lib_exc
LOG = logging.getLogger(__name__)

View File

@ -21,10 +21,10 @@ import six
import yaml
from tempest import clients
from tempest.common import cred_provider
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 import exceptions as lib_exc
LOG = logging.getLogger(__name__)

View File

@ -23,10 +23,10 @@ from oslotest import mockpatch
import shutil
import six
from tempest.common import cred_provider
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 import exceptions as lib_exc
from tempest.tests import base
from tempest.tests import fake_config