senlin/senlin/tests/unit/drivers/test_driver.py

47 lines
1.6 KiB
Python

# 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 mock
from oslo_config import cfg
from senlin.drivers import base as driver_base
from senlin.engine import environment
from senlin.tests.unit.common import base
class TestSenlinDriver(base.SenlinTestCase):
def test_init_using_default_cloud_backend(self):
plugin1 = mock.Mock()
plugin1.compute = 'Compute1'
plugin1.orchestration = 'Orchestration1'
env = environment.global_env()
env.register_driver('openstack_test', plugin1)
cfg.CONF.set_override('cloud_backend', 'openstack_test')
sd = driver_base.SenlinDriver()
self.assertEqual('Compute1', sd.compute)
self.assertEqual('Orchestration1', sd.orchestration)
def test_init_using_specified_cloud_backend(self):
plugin2 = mock.Mock()
plugin2.compute = 'Compute2'
plugin2.orchestration = 'Orchestration2'
env = environment.global_env()
env.register_driver('openstack_test', plugin2)
sd = driver_base.SenlinDriver('openstack_test')
self.assertEqual('Compute2', sd.compute)
self.assertEqual('Orchestration2', sd.orchestration)