ed571ece7a
bp keystone-v3-support Change-Id: Iffdff6ee2e79b7052f7a58af933e398090879224
68 lines
2.4 KiB
Python
68 lines
2.4 KiB
Python
# Copyright 2013: Mirantis Inc.
|
|
# 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.
|
|
|
|
"""Test ExistingCloud."""
|
|
|
|
import jsonschema
|
|
|
|
from rally import deploy
|
|
from rally.deploy.engines import existing
|
|
from tests import test
|
|
|
|
|
|
class TestExistingCloud(test.TestCase):
|
|
def setUp(self):
|
|
self.deployment = {
|
|
'config': {
|
|
'type': 'ExistingCloud',
|
|
'endpoint': {
|
|
'auth_url': 'http://example.net:5000/v2.0/',
|
|
'username': 'admin',
|
|
'password': 'myadminpass',
|
|
'tenant_name': 'demo',
|
|
'region_name': 'RegionOne',
|
|
'use_public_urls': False,
|
|
'admin_port': 35357,
|
|
'domain_name': None,
|
|
'project_domain_name': 'Default',
|
|
'user_domain_name': 'Default',
|
|
},
|
|
},
|
|
}
|
|
super(TestExistingCloud, self).setUp()
|
|
|
|
def test_init(self):
|
|
existing.ExistingCloud(self.deployment)
|
|
|
|
def test_init_invalid_config(self):
|
|
self.deployment['config']['endpoint'] = 42
|
|
self.assertRaises(jsonschema.ValidationError,
|
|
existing.ExistingCloud, self.deployment)
|
|
|
|
def test_deploy(self):
|
|
engine = existing.ExistingCloud(self.deployment)
|
|
endpoints = engine.deploy()
|
|
admin_endpoint = self.deployment['config']['endpoint'].copy()
|
|
self.assertEqual(admin_endpoint, endpoints[0].to_dict())
|
|
|
|
def test_cleanup(self):
|
|
existing.ExistingCloud(self.deployment).cleanup()
|
|
|
|
def test_is_in_factory(self):
|
|
name = self.deployment['config']['type']
|
|
engine = deploy.EngineFactory.get_engine(name,
|
|
self.deployment)
|
|
self.assertIsInstance(engine, existing.ExistingCloud)
|