ironic/ironic/tests/drivers/test_fake.py

96 lines
3.8 KiB
Python

# coding=utf-8
# Copyright 2013 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.
"""Test class for Fake driver."""
import mock
from ironic.common import boot_devices
from ironic.common import driver_factory
from ironic.common import exception
from ironic.common import states
from ironic.conductor import task_manager
from ironic.drivers import base as driver_base
from ironic.openstack.common import context
from ironic.tests import base
from ironic.tests.conductor import utils as mgr_utils
from ironic.tests.objects import utils as obj_utils
class FakeDriverTestCase(base.TestCase):
def setUp(self):
super(FakeDriverTestCase, self).setUp()
self.context = context.get_admin_context()
mgr_utils.mock_the_extension_manager()
self.driver = driver_factory.get_driver("fake")
self.node = obj_utils.get_test_node(self.context)
self.task = mock.Mock(spec=task_manager.TaskManager)
self.task.shared = False
self.task.node = self.node
self.task.driver = self.driver
def test_driver_interfaces(self):
# fake driver implements only 3 out of 5 interfaces
self.assertIsInstance(self.driver.power, driver_base.PowerInterface)
self.assertIsInstance(self.driver.deploy, driver_base.DeployInterface)
self.assertIsInstance(self.driver.vendor, driver_base.VendorInterface)
self.assertIsInstance(self.driver.console,
driver_base.ConsoleInterface)
self.assertIsNone(self.driver.rescue)
def test_power_interface(self):
self.driver.power.validate(self.task, self.node)
self.driver.power.get_power_state(self.task, self.node)
self.assertRaises(exception.InvalidParameterValue,
self.driver.power.set_power_state,
self.task, self.node, states.NOSTATE)
self.driver.power.set_power_state(self.task, self.node,
states.POWER_ON)
self.driver.power.reboot(self.task, self.node)
def test_deploy_interface(self):
self.driver.deploy.validate(None, self.node)
self.driver.deploy.prepare(None, None)
self.driver.deploy.deploy(None, None)
self.driver.deploy.take_over(None, None)
self.driver.deploy.clean_up(None, None)
self.driver.deploy.tear_down(None, None)
def test_management_interface_validate(self):
self.driver.management.validate(self.task, self.node)
def test_management_interface_set_boot_device_good(self):
self.driver.management.set_boot_device(self.task, boot_devices.PXE)
def test_management_interface_set_boot_device_fail(self):
self.assertRaises(exception.InvalidParameterValue,
self.driver.management.set_boot_device, self.task,
'not-supported')
def test_management_interface_get_supported_boot_devices(self):
expected = [boot_devices.PXE]
self.assertEqual(expected,
self.driver.management.get_supported_boot_devices())
def test_management_interface_get_boot_device(self):
self.assertEqual(boot_devices.PXE,
self.driver.management.get_boot_device(self.task))