This is the suggested location for tests and is adopted by most projects. As part of this change relative imports to package imports. Fix all the test running and coverage code to point to the new location. Change-Id: I01264aed14f396ab9a7242e3e72b71e1bc332675
		
			
				
	
	
		
			91 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# vim: tabstop=4 shiftwidth=4 softtabstop=4
 | 
						|
 | 
						|
# 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.
 | 
						|
 | 
						|
import httpretty
 | 
						|
 | 
						|
from keystoneclient.tests import utils
 | 
						|
from keystoneclient.v2_0 import client
 | 
						|
 | 
						|
TestResponse = utils.TestResponse
 | 
						|
 | 
						|
 | 
						|
class UnauthenticatedTestCase(utils.TestCase):
 | 
						|
    """Class used as base for unauthenticated calls."""
 | 
						|
 | 
						|
    TEST_ROOT_URL = 'http://127.0.0.1:5000/'
 | 
						|
    TEST_URL = '%s%s' % (TEST_ROOT_URL, 'v2.0')
 | 
						|
    TEST_ROOT_ADMIN_URL = 'http://127.0.0.1:35357/'
 | 
						|
    TEST_ADMIN_URL = '%s%s' % (TEST_ROOT_ADMIN_URL, 'v2.0')
 | 
						|
 | 
						|
 | 
						|
class TestCase(UnauthenticatedTestCase):
 | 
						|
 | 
						|
    TEST_SERVICE_CATALOG = [{
 | 
						|
        "endpoints": [{
 | 
						|
            "adminURL": "http://cdn.admin-nets.local:8774/v1.0",
 | 
						|
            "region": "RegionOne",
 | 
						|
            "internalURL": "http://127.0.0.1:8774/v1.0",
 | 
						|
            "publicURL": "http://cdn.admin-nets.local:8774/v1.0/"
 | 
						|
        }],
 | 
						|
        "type": "nova_compat",
 | 
						|
        "name": "nova_compat"
 | 
						|
    }, {
 | 
						|
        "endpoints": [{
 | 
						|
            "adminURL": "http://nova/novapi/admin",
 | 
						|
            "region": "RegionOne",
 | 
						|
            "internalURL": "http://nova/novapi/internal",
 | 
						|
            "publicURL": "http://nova/novapi/public"
 | 
						|
        }],
 | 
						|
        "type": "compute",
 | 
						|
        "name": "nova"
 | 
						|
    }, {
 | 
						|
        "endpoints": [{
 | 
						|
            "adminURL": "http://glance/glanceapi/admin",
 | 
						|
            "region": "RegionOne",
 | 
						|
            "internalURL": "http://glance/glanceapi/internal",
 | 
						|
            "publicURL": "http://glance/glanceapi/public"
 | 
						|
        }],
 | 
						|
        "type": "image",
 | 
						|
        "name": "glance"
 | 
						|
    }, {
 | 
						|
        "endpoints": [{
 | 
						|
            "adminURL": "http://127.0.0.1:35357/v2.0",
 | 
						|
            "region": "RegionOne",
 | 
						|
            "internalURL": "http://127.0.0.1:5000/v2.0",
 | 
						|
            "publicURL": "http://127.0.0.1:5000/v2.0"
 | 
						|
        }],
 | 
						|
        "type": "identity",
 | 
						|
        "name": "keystone"
 | 
						|
    }, {
 | 
						|
        "endpoints": [{
 | 
						|
            "adminURL": "http://swift/swiftapi/admin",
 | 
						|
            "region": "RegionOne",
 | 
						|
            "internalURL": "http://swift/swiftapi/internal",
 | 
						|
            "publicURL": "http://swift/swiftapi/public"
 | 
						|
        }],
 | 
						|
        "type": "object-store",
 | 
						|
        "name": "swift"
 | 
						|
    }]
 | 
						|
 | 
						|
    def setUp(self):
 | 
						|
        super(TestCase, self).setUp()
 | 
						|
        self.client = client.Client(username=self.TEST_USER,
 | 
						|
                                    token=self.TEST_TOKEN,
 | 
						|
                                    tenant_name=self.TEST_TENANT_NAME,
 | 
						|
                                    auth_url=self.TEST_URL,
 | 
						|
                                    endpoint=self.TEST_URL)
 | 
						|
 | 
						|
    def stub_auth(self, **kwargs):
 | 
						|
        self.stub_url(httpretty.POST, ['tokens'], **kwargs)
 |