569f0a4e71
Test for the following actions were added: * getting driver's properties * getting driver's RAID logical disk properties Change-Id: I395bc4f512a731ab4bfe8ac6a2d850816696400f
55 lines
2.1 KiB
Python
55 lines
2.1 KiB
Python
# Copyright 2014 NEC Corporation. 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.
|
|
|
|
from tempest import config
|
|
from tempest.lib import decorators
|
|
|
|
from ironic_tempest_plugin.tests.api.admin import api_microversion_fixture
|
|
from ironic_tempest_plugin.tests.api.admin import base
|
|
|
|
CONF = config.CONF
|
|
|
|
|
|
class TestDrivers(base.BaseBaremetalTest):
|
|
"""Tests for drivers."""
|
|
|
|
@classmethod
|
|
def resource_setup(cls):
|
|
super(TestDrivers, cls).resource_setup()
|
|
cls.driver_name = CONF.baremetal.driver
|
|
|
|
@decorators.idempotent_id('5aed2790-7592-4655-9b16-99abcc2e6ec5')
|
|
def test_list_drivers(self):
|
|
_, drivers = self.client.list_drivers()
|
|
self.assertIn(self.driver_name,
|
|
[d['name'] for d in drivers['drivers']])
|
|
|
|
@decorators.idempotent_id('fb3287a3-c4d7-44bf-ae9d-1eef906d78ce')
|
|
def test_show_driver(self):
|
|
_, driver = self.client.show_driver(self.driver_name)
|
|
self.assertEqual(self.driver_name, driver['name'])
|
|
|
|
@decorators.idempotent_id('6efa976f-78a2-4859-b3aa-97d960d6e5e5')
|
|
def test_driver_properties(self):
|
|
_, properties = self.client.get_driver_properties(self.driver_name)
|
|
self.assertNotEmpty(properties)
|
|
|
|
@decorators.idempotent_id('fdf61f5a-f59d-4235-ad6c-cc718740e3e3')
|
|
def test_driver_logical_disk_properties(self):
|
|
self.useFixture(
|
|
api_microversion_fixture.APIMicroversionFixture('1.12'))
|
|
_, properties = self.client.get_driver_logical_disk_properties(
|
|
self.driver_name)
|
|
self.assertNotEmpty(properties)
|