Merge "Improve driver_info/redfish_system_id value validation"

This commit is contained in:
Jenkins 2017-06-02 11:20:45 +00:00 committed by Gerrit Code Review
commit edd0b16ac7
2 changed files with 18 additions and 1 deletions

View File

@ -21,6 +21,7 @@ from oslo_utils import importutils
import retrying
import rfc3986
import six
from six.moves import urllib
from ironic.common import exception
from ironic.common.i18n import _
@ -102,7 +103,16 @@ def parse_driver_info(node):
'driver_info/redfish_address on node %(node)s') %
{'address': address, 'node': node.uuid})
system_id = driver_info['redfish_system_id']
try:
system_id = urllib.parse.quote(driver_info['redfish_system_id'])
except (TypeError, AttributeError):
raise exception.InvalidParameterValue(
_('Invalid value "%(value)s" set in '
'driver_info/redfish_system_id on node %(node)s. '
'The value should be a path (string) to the resource '
'that the driver will interact with. For example: '
'/redfish/v1/Systems/1') %
{'value': driver_info['redfish_system_id'], 'node': node.uuid})
# Check if verify_ca is a Boolean or a file/directory in the file-system
verify_ca = driver_info.get('redfish_verify_ca', True)

View File

@ -115,6 +115,13 @@ class RedfishUtilsTestCase(db_base.DbTestCase):
'Invalid value type',
redfish_utils.parse_driver_info, self.node)
def test_parse_driver_info_invalid_system_id(self):
# Integers are not supported
self.node.driver_info['redfish_system_id'] = 123
self.assertRaisesRegex(exception.InvalidParameterValue,
'The value should be a path',
redfish_utils.parse_driver_info, self.node)
@mock.patch('ironic.drivers.modules.redfish.utils.sushy')
def test_get_system(self, mock_sushy):
fake_conn = mock_sushy.Sushy.return_value