Remove tests/fake_auth_provider

This commit removes tests/fake_auth_provider and make some test clients
use tests/lib/fake_auth_provider instead. To do so, this commit also
adds get_token() to the FakeAuthProvider class for test_object_client.

Change-Id: I5c968051970b8c3c8633296cc47593cab3a3dfd4
This commit is contained in:
Masayuki Igawa 2016-09-12 14:19:58 +09:00
parent 479bfaccf5
commit 7cf41185b6
4 changed files with 5 additions and 25 deletions

View File

@ -1,23 +0,0 @@
# Copyright 2014 Hewlett-Packard Development Company, L.P.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
class FakeAuthProvider(object):
def get_token(self):
return "faketoken"
def base_url(self, filters, auth_data=None):
return "https://example.com"

View File

@ -27,6 +27,9 @@ class FakeAuthProvider(object):
def base_url(self, filters, auth_data=None):
return self.fake_base_url or "https://example.com"
def get_token(self):
return "faketoken"
class FakeCredentials(object):

View File

@ -20,7 +20,7 @@ import six
from tempest.lib import exceptions
from tempest.services.object_storage import object_client
from tempest.tests import base
from tempest.tests import fake_auth_provider
from tempest.tests.lib import fake_auth_provider
class TestObjectClient(base.TestCase):

View File

@ -21,8 +21,8 @@ from oslotest import mockpatch
from tempest.common import negative_rest_client
from tempest import config
from tempest.tests import base
from tempest.tests import fake_auth_provider
from tempest.tests import fake_config
from tempest.tests.lib import fake_auth_provider
class TestNegativeRestClient(base.TestCase):