Use tempest.lib code in tempest

Now that tempest_lib code is copied back into tempest, stop using
tempest_lib in tempest, and start using the copied code.

Remove the dependency to tempest_lib from requirements, and drop
the script to use tempest_lib in tempest. Add os-testr to the
test-requirements.

Partially implements bp tempest-lib-reintegration

Change-Id: I21ab5fe6349f72c98ac9f960a29bf62e813f8b1b
This commit is contained in:
Andrea Frittoli (andreaf) 2016-02-23 14:07:24 -05:00
parent e284f8988f
commit db9672e347
168 changed files with 302 additions and 527 deletions

View File

@ -21,7 +21,7 @@ six>=1.9.0 # MIT
iso8601>=0.1.9 # MIT iso8601>=0.1.9 # MIT
fixtures>=1.3.1 # Apache-2.0/BSD fixtures>=1.3.1 # Apache-2.0/BSD
testscenarios>=0.4 # Apache-2.0/BSD testscenarios>=0.4 # Apache-2.0/BSD
tempest-lib>=0.14.0 # Apache-2.0
PyYAML>=3.1.0 # MIT PyYAML>=3.1.0 # MIT
stevedore>=1.5.0 # Apache-2.0 stevedore>=1.5.0 # Apache-2.0
PrettyTable<0.8,>=0.7 # BSD PrettyTable<0.8,>=0.7 # BSD
os-testr>=0.4.1 # Apache-2.0

View File

@ -32,6 +32,8 @@ console_scripts =
tempest-cleanup = tempest.cmd.cleanup:main tempest-cleanup = tempest.cmd.cleanup:main
tempest-account-generator = tempest.cmd.account_generator:main tempest-account-generator = tempest.cmd.account_generator:main
tempest = tempest.cmd.main:main tempest = tempest.cmd.main:main
skip-tracker = tempest.lib.cmd.skip_tracker:main
check-uuid = tempest.lib.cmd.check_uuid:run
tempest.cm = tempest.cm =
account-generator = tempest.cmd.account_generator:TempestAccountGenerator account-generator = tempest.cmd.account_generator:TempestAccountGenerator
init = tempest.cmd.init:TempestInit init = tempest.cmd.init:TempestInit

View File

@ -12,10 +12,9 @@
import functools import functools
from tempest_lib import exceptions as lib_exc
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -12,10 +12,10 @@
# under the License. # under the License.
import six import six
from tempest_lib import exceptions as lib_exc
from tempest.api.baremetal.admin import base from tempest.api.baremetal.admin import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -11,11 +11,11 @@
# under the License. # under the License.
import six import six
from tempest_lib import exceptions as lib_exc
from tempest.api.baremetal.admin import base from tempest.api.baremetal.admin import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.common import waiters from tempest.common import waiters
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -11,10 +11,10 @@
# under the License. # under the License.
import six import six
from tempest_lib import exceptions as lib_exc
from tempest.api.baremetal.admin import base from tempest.api.baremetal.admin import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -10,10 +10,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.baremetal.admin import base from tempest.api.baremetal.admin import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,10 +13,10 @@
# under the License. # under the License.
from oslo_log import log from oslo_log import log
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
LOG = log.getLogger(__name__) LOG = log.getLogger(__name__)

View File

@ -13,11 +13,10 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common import tempest_fixtures as fixtures from tempest.common import tempest_fixtures as fixtures
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,11 +13,10 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common import tempest_fixtures as fixtures from tempest.common import tempest_fixtures as fixtures
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -12,9 +12,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -12,10 +12,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -15,10 +15,9 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -15,10 +15,9 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -14,10 +14,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -12,10 +12,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -15,10 +15,9 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -16,9 +16,9 @@
import datetime import datetime
from six.moves.urllib import parse as urllib from six.moves.urllib import parse as urllib
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -12,12 +12,11 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import decorators
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import decorators
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -12,11 +12,11 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
import testtools import testtools
from tempest.api.compute import base from tempest.api.compute import base
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -12,13 +12,12 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import decorators
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common import compute from tempest.common import compute
from tempest.common import fixed_network from tempest.common import fixed_network
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.common import waiters from tempest.common import waiters
from tempest.lib import decorators
from tempest import test from tempest import test

View File

@ -14,7 +14,6 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
import testtools import testtools
from tempest.api.compute import base from tempest.api.compute import base
@ -22,6 +21,7 @@ from tempest.common import tempest_fixtures as fixtures
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.common import waiters from tempest.common import waiters
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -12,9 +12,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -16,8 +16,8 @@
import datetime import datetime
from tempest.api.compute import base from tempest.api.compute import base
from tempest.lib import exceptions as e
from tempest import test from tempest import test
from tempest_lib import exceptions as e
# Time that waits for until returning valid response # Time that waits for until returning valid response
# TODO(takmatsu): Ideally this value would come from configuration. # TODO(takmatsu): Ideally this value would come from configuration.

View File

@ -14,9 +14,9 @@
# under the License. # under the License.
import datetime import datetime
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -16,7 +16,6 @@
import time import time
from oslo_log import log as logging from oslo_log import log as logging
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import api_microversion_fixture from tempest.api.compute import api_microversion_fixture
from tempest.common import api_version_utils from tempest.common import api_version_utils
@ -25,6 +24,7 @@ from tempest.common.utils import data_utils
from tempest.common import waiters from tempest.common import waiters
from tempest import config from tempest import config
from tempest import exceptions from tempest import exceptions
from tempest.lib import exceptions as lib_exc
import tempest.test import tempest.test
CONF = config.CONF CONF = config.CONF

View File

@ -13,11 +13,10 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute.floating_ips import base from tempest.api.compute.floating_ips import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.common import waiters from tempest.common import waiters
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -15,11 +15,10 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
from tempest.api.compute.floating_ips import base from tempest.api.compute.floating_ips import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -15,11 +15,10 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -12,12 +12,11 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.common import waiters from tempest.common import waiters
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -15,12 +15,12 @@
# under the License. # under the License.
from oslo_log import log as logging from oslo_log import log as logging
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.common import waiters from tempest.common import waiters
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -12,11 +12,10 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -14,10 +14,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute.keypairs import base from tempest.api.compute.keypairs import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common import tempest_fixtures as fixtures from tempest.common import tempest_fixtures as fixtures
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,11 +13,10 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute.security_groups import base from tempest.api.compute.security_groups import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -13,11 +13,10 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute.security_groups import base from tempest.api.compute.security_groups import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.common import waiters from tempest.common import waiters
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,13 +13,13 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import decorators
from tempest_lib import exceptions as lib_exc
import testtools import testtools
from tempest.api.compute.security_groups import base from tempest.api.compute.security_groups import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import decorators
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -15,11 +15,10 @@
import time import time
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest import config from tempest import config
from tempest import exceptions from tempest import exceptions
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,15 +13,14 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import decorators
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.api import utils from tempest.api import utils
from tempest.common import fixed_network from tempest.common import fixed_network
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.common import waiters from tempest.common import waiters
from tempest import config from tempest import config
from tempest.lib import decorators
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -14,10 +14,10 @@
# under the License. # under the License.
from six import moves from six import moves
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common import waiters from tempest.common import waiters
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -16,8 +16,6 @@
import logging import logging
from six.moves.urllib import parse as urlparse from six.moves.urllib import parse as urlparse
from tempest_lib import decorators
from tempest_lib import exceptions as lib_exc
import testtools import testtools
from tempest.api.compute import base from tempest.api.compute import base
@ -25,6 +23,8 @@ from tempest.common.utils import data_utils
from tempest.common.utils.linux import remote_client from tempest.common.utils.linux import remote_client
from tempest.common import waiters from tempest.common import waiters
from tempest import config from tempest import config
from tempest.lib import decorators
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -13,9 +13,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -14,13 +14,13 @@
# under the License. # under the License.
import base64 import base64
from tempest_lib.common.utils import data_utils
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils.linux import remote_client from tempest.common.utils.linux import remote_client
from tempest.common import waiters from tempest.common import waiters
from tempest import config from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -13,13 +13,13 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
import testtools import testtools
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.common import waiters from tempest.common import waiters
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -15,13 +15,13 @@
import sys import sys
from tempest_lib import exceptions as lib_exc
import testtools import testtools
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.common import waiters from tempest.common import waiters
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -14,10 +14,10 @@
# under the License. # under the License.
import netaddr import netaddr
from tempest_lib import decorators
from tempest.api.compute import base from tempest.api.compute import base
from tempest import config from tempest import config
from tempest.lib import decorators
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -15,9 +15,8 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -16,11 +16,11 @@
import six import six
from oslo_log import log as logging from oslo_log import log as logging
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -13,12 +13,11 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.common import waiters from tempest.common import waiters
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -15,11 +15,10 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
from tempest.api.compute import base from tempest.api.compute import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -16,10 +16,10 @@ from collections import OrderedDict
import copy import copy
import six import six
from tempest_lib import exceptions as lib_exc
from tempest import config from tempest import config
from tempest import exceptions from tempest import exceptions
from tempest.lib import exceptions as lib_exc
import tempest.test import tempest.test

View File

@ -13,9 +13,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.database import base from tempest.api.database import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -15,10 +15,9 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -14,10 +14,10 @@
# under the License. # under the License.
from six import moves from six import moves
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -15,10 +15,9 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -15,10 +15,9 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -10,12 +10,11 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import auth
from tempest.api.identity import base from tempest.api.identity import base
from tempest import clients from tempest import clients
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import auth
from tempest import manager from tempest import manager
from tempest import test from tempest import test

View File

@ -14,11 +14,10 @@
# under the License. # under the License.
from tempest.api.identity import base from tempest.api.identity import base
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
from tempest_lib.common.utils import data_utils
from tempest_lib import exceptions as lib_exc
class DomainsNegativeTestJSON(base.BaseIdentityV3AdminTest): class DomainsNegativeTestJSON(base.BaseIdentityV3AdminTest):
_interface = 'json' _interface = 'json'

View File

@ -14,10 +14,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -14,13 +14,13 @@ import datetime
import re import re
from oslo_utils import timeutils from oslo_utils import timeutils
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest import clients from tempest import clients
from tempest.common import credentials_factory as common_creds from tempest.common import credentials_factory as common_creds
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -14,10 +14,10 @@
# under the License. # under the License.
from oslo_log import log as logging from oslo_log import log as logging
from tempest_lib import exceptions as lib_exc
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
import tempest.test import tempest.test
CONF = config.CONF CONF = config.CONF

View File

@ -13,9 +13,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,9 +13,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -16,10 +16,9 @@
import copy import copy
import time import time
from tempest_lib.common.utils import data_utils
from tempest_lib import exceptions
from tempest.api.identity import base from tempest.api.identity import base
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions
from tempest import manager from tempest import manager
from tempest import test from tempest import test

View File

@ -13,9 +13,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.identity import base from tempest.api.identity import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -16,10 +16,9 @@
import copy import copy
import time import time
from tempest_lib.common.utils import data_utils
from tempest_lib import exceptions
from tempest.api.identity import base from tempest.api.identity import base
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions
from tempest import manager from tempest import manager
from tempest import test from tempest import test

View File

@ -14,13 +14,13 @@
# under the License. # under the License.
from six import moves from six import moves
from tempest_lib.common.utils import data_utils
import testtools import testtools
from tempest.api.image import base from tempest.api.image import base
from tempest import config from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
from tempest_lib import exceptions as lib_exc
CONF = config.CONF CONF = config.CONF

View File

@ -13,10 +13,10 @@
# under the License. # under the License.
from six import moves from six import moves
from tempest_lib import exceptions as lib_exc
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
import tempest.test import tempest.test
CONF = config.CONF CONF = config.CONF

View File

@ -12,10 +12,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.image import base from tempest.api.image import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,9 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.image import base from tempest.api.image import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -10,9 +10,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.image import base from tempest.api.image import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -15,8 +15,8 @@
from tempest.api.image import base from tempest.api.image import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
from tempest_lib import exceptions as lib_exc
class MetadataNamespacesTest(base.BaseV2ImageTest): class MetadataNamespacesTest(base.BaseV2ImageTest):

View File

@ -16,9 +16,8 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
from tempest.api.image import base from tempest.api.image import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -14,10 +14,9 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
from tempest.api.image import base from tempest.api.image import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.network import base from tempest.api.network import base
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -14,8 +14,8 @@
# under the License. # under the License.
from tempest.api.network import base from tempest.api.network import base
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
from tempest_lib import exceptions as lib_exc
class QuotasNegativeTest(base.BaseAdminNetworkTest): class QuotasNegativeTest(base.BaseAdminNetworkTest):

View File

@ -17,8 +17,8 @@ import six
from tempest.api.network import base from tempest.api.network import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
from tempest_lib import exceptions as lib_exc
class QuotasTest(base.BaseAdminNetworkTest): class QuotasTest(base.BaseAdminNetworkTest):

View File

@ -14,11 +14,11 @@
# under the License. # under the License.
import netaddr import netaddr
from tempest_lib import exceptions as lib_exc
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest import exceptions from tempest import exceptions
from tempest.lib import exceptions as lib_exc
import tempest.test import tempest.test
CONF = config.CONF CONF = config.CONF

View File

@ -17,11 +17,11 @@ import netaddr
import random import random
import six import six
from tempest_lib import exceptions as lib_exc
from tempest.api.network import base from tempest.api.network import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -14,11 +14,10 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.network import base from tempest.api.network import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -16,12 +16,12 @@ import itertools
import netaddr import netaddr
import six import six
from tempest_lib import exceptions as lib_exc
from tempest.api.network import base from tempest.api.network import base
from tempest.common import custom_matchers from tempest.common import custom_matchers
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -14,10 +14,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.network import base from tempest.api.network import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test

View File

@ -14,11 +14,11 @@
# under the License. # under the License.
import netaddr import netaddr
from tempest_lib import exceptions as lib_exc
from tempest.api.network import base_routers as base from tempest.api.network import base_routers as base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -15,10 +15,9 @@
import uuid import uuid
from tempest_lib import exceptions as lib_exc
from tempest.api.network import base_security_groups as base from tempest.api.network import base_security_groups as base
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -10,9 +10,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import decorators
from tempest.api.network import base from tempest.api.network import base
from tempest.lib import decorators
from tempest import test from tempest import test

View File

@ -15,8 +15,8 @@
from tempest.api.network import base from tempest.api.network import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
from tempest_lib import exceptions as lib_exc
CONF = config.CONF CONF = config.CONF

View File

@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.common import custom_matchers from tempest.common import custom_matchers
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
import tempest.test import tempest.test
CONF = config.CONF CONF = config.CONF

View File

@ -12,12 +12,11 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import decorators
from tempest_lib import exceptions as lib_exc
from tempest.api.object_storage import base from tempest.api.object_storage import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import decorators
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -12,10 +12,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.object_storage import base from tempest.api.object_storage import base
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -12,11 +12,10 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.object_storage import base from tempest.api.object_storage import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

View File

@ -13,11 +13,10 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from tempest_lib import exceptions as lib_exc
from tempest.api.object_storage import base from tempest.api.object_storage import base
from tempest.common.utils import data_utils from tempest.common.utils import data_utils
from tempest import config from tempest import config
from tempest.lib import exceptions as lib_exc
from tempest import test from tempest import test
CONF = config.CONF CONF = config.CONF

Some files were not shown because too many files have changed in this diff Show More