Files
rally/tests/deploy/engines/test_dummy.py
Mikhail Dubov 33dbc6845e Preserve consistency in module namings
We rename several modules in the system (mostly in unit tests) so that their
namings become consistent throughout the code.

"Consistency" means here following certain rules like "name all deploy engine
and server provider modules without _engine.py and _provider.py suffixes" or
"name all unit tests like test_<tested_module>.py".

We also add a couple of new folders in unit tests so that the unit tests
structure strictly resembles that of tested modules.

Blueprint unit-tests-refactoring

Change-Id: Ia7b6afce0d1e20b969b56301e0c9ad0f94cc60e4
2013-12-27 13:18:28 +04:00

69 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 dummy deploy engines."""
import jsonschema
from rally import deploy
from rally.deploy.engines import dummy
from rally import test
class TestDummyDeployEngine(test.TestCase):
def setUp(self):
self.deployment = {
'config': {
'name': 'DummyEngine',
'cloud_config': {
'identity': {
'url': 'http://example.net/',
'uri': 'http://example.net:5000/v2.0/',
'admin_username': 'admin',
'admin_password': 'myadminpass',
'admin_tenant_name': 'demo',
},
},
},
}
super(TestDummyDeployEngine, self).setUp()
def test_dummy_egnine_init(self):
dummy.DummyEngine(self.deployment)
def test_dummy_engine_deploy(self):
engine = dummy.DummyEngine(self.deployment)
endpoint = engine.deploy()
self.assertEqual(endpoint, self.deployment['config']['cloud_config'])
def test_dummy_engine_cleanup(self):
dummy.DummyEngine(self.deployment).cleanup()
def test_dummy_engine_is_in_factory(self):
name = self.deployment['config']['name']
engine = deploy.EngineFactory.get_engine(name,
self.deployment)
self.assertIsInstance(engine, dummy.DummyEngine)
def test_init_invalid_config(self):
self.deployment['config']['cloud_config']['identity'] = 42
self.assertRaises(jsonschema.ValidationError,
dummy.DummyEngine, self.deployment)
def test_deploy(self):
engine = dummy.DummyEngine(self.deployment)
self.assertEqual(self.deployment['config']['cloud_config'],
engine.deploy())