Use sushy base.ListField instead of rsd-lib base.FieldList

Because the base class "ListField" for List resource has been merged
into sushy, so use it instead of rsd-lib base.FieldList class.

Change-Id: Ic0bd7647253d983cda9920df425899c5c029328d
This commit is contained in:
Lin Yang 2018-11-19 13:58:10 -08:00
parent af2a2fa9e8
commit 6eb9f60cce
4 changed files with 5 additions and 154 deletions

View File

@ -1,48 +0,0 @@
# Copyright 2017 Intel, 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.
import copy
from sushy.resources import base
class FieldList(base.CompositeField):
"""Base class for fields consisting of a list of several sub-fields."""
def _load(self, body, resource, nested_in=None):
"""Load the field list.
:param body: parent JSON body.
:param resource: parent resource.
:param nested_in: parent resource name (for error reporting only).
:returns: a new list object containing subfields.
"""
nested_in = (nested_in or []) + self._path
values = base.Field._load(self, body, resource)
if values is None:
return None
# Initialize the list that will contain each field instance
instances = []
for value in values:
instance = copy.copy(self)
for attr, field in self._subfields.items():
# Hide the Field object behind the real value
setattr(instance, attr, field._load(value,
resource,
nested_in))
instances.append(instance)
return instances

View File

@ -17,13 +17,12 @@ import logging
from sushy.resources import base
from rsd_lib.resources import base as rsd_base
from rsd_lib import utils
LOG = logging.getLogger(__name__)
class IdentifiersField(rsd_base.FieldList):
class IdentifiersField(base.ListField):
name_format = base.Field('DurableNameFormat')
name = base.Field('DurableName')
@ -33,7 +32,7 @@ class EntityLinkField(base.CompositeField):
identity = base.Field('@odata.id')
class ConnectedEntitiesField(rsd_base.FieldList):
class ConnectedEntitiesField(base.ListField):
entity_type = base.Field('EntityType')
entity_role = base.Field('EntityRole')
entity_link = base.Field('EntityLink',

View File

@ -17,12 +17,10 @@ import logging
from sushy.resources import base
from rsd_lib.resources import base as rsd_base
LOG = logging.getLogger(__name__)
class TargetLunField(rsd_base.FieldList):
class TargetLunField(base.ListField):
lun = base.Field('LUN')
@ -33,7 +31,7 @@ class ISCSIAddressField(base.CompositeField):
target_portal_port = base.Field('TargetPortalPort')
class AddressesField(rsd_base.FieldList):
class AddressesField(base.ListField):
iscsi = ISCSIAddressField('iSCSI')
@ -41,7 +39,7 @@ class ISCSIInitiatorField(base.CompositeField):
iqn = base.Field('InitiatorIQN')
class InitiatorsField(rsd_base.FieldList):
class InitiatorsField(base.ListField):
iscsi = ISCSIInitiatorField('iSCSI')

View File

@ -1,98 +0,0 @@
# Copyright 2017 Intel, 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.
import copy
import mock
from sushy.resources import base as resource_base
from sushy.tests.unit import base
from rsd_lib.resources import base as rsd_resource_base
TEST_JSON = {
'String': 'a string',
'Integer': '42',
'List': ['a string', 42],
'Nested': {
'String': 'another string',
'Integer': 0,
'Object': {
'Field': 'field value'
},
'Mapped': 'raw'
},
'FieldList': [
{
'String': 'a third string',
'Integer': 1
},
{
'String': 'a fourth string',
'Integer': 2
}
]
}
MAPPING = {
'raw': 'real'
}
class NestedTestField(resource_base.CompositeField):
string = resource_base.Field('String', required=True)
integer = resource_base.Field('Integer', adapter=int)
nested_field = resource_base.Field(['Object', 'Field'], required=True)
mapped = resource_base.MappedField('Mapped', MAPPING)
non_existing = resource_base.Field('NonExisting', default=3.14)
class TestFieldList(rsd_resource_base.FieldList):
string = resource_base.Field('String')
integer = resource_base.Field('Integer')
class ComplexResource(resource_base.ResourceBase):
string = resource_base.Field('String', required=True)
integer = resource_base.Field('Integer', adapter=int)
nested = NestedTestField('Nested')
field_list = TestFieldList('FieldList')
non_existing_nested = NestedTestField('NonExistingNested')
non_existing_mapped = resource_base.MappedField('NonExistingMapped',
MAPPING)
class FieldTestCase(base.TestCase):
def setUp(self):
super(FieldTestCase, self).setUp()
self.conn = mock.Mock()
self.json = copy.deepcopy(TEST_JSON)
self.conn.get.return_value.json.return_value = self.json
self.test_resource = ComplexResource(self.conn,
redfish_version='1.0.x')
def test_ok(self):
self.assertEqual('a string', self.test_resource.string)
self.assertEqual(42, self.test_resource.integer)
self.assertEqual('another string', self.test_resource.nested.string)
self.assertEqual(0, self.test_resource.nested.integer)
self.assertEqual('field value', self.test_resource.nested.nested_field)
self.assertEqual('real', self.test_resource.nested.mapped)
self.assertEqual(3.14, self.test_resource.nested.non_existing)
self.assertEqual('a third string',
self.test_resource.field_list[0].string)
self.assertEqual(2, self.test_resource.field_list[1].integer)
self.assertIsNone(self.test_resource.non_existing_nested)
self.assertIsNone(self.test_resource.non_existing_mapped)