Merge "Chassis resource for bare-metal service"

This commit is contained in:
Jenkins 2016-12-16 01:51:43 +00:00 committed by Gerrit Code Review
commit d8b2295aeb
2 changed files with 157 additions and 0 deletions

View File

@ -0,0 +1,63 @@
# 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 openstack.bare_metal import bare_metal_service
from openstack import resource2 as resource
class Chassis(resource.Resource):
resources_key = 'chassis'
base_path = '/chassis'
service = bare_metal_service.BareMetalService()
# capabilities
allow_create = True
allow_get = True
allow_update = True
allow_delete = True
allow_list = True
patch_update = True
_query_mapping = resource.QueryParameters(
'fields'
)
#: Timestamp at which the chassis was created.
created_at = resource.Body('created_at')
#: A descriptive text about the service
description = resource.Body('description')
#: A set of one or more arbitrary metadata key and value pairs.
extra = resource.Body('extra')
#: The UUID for the chassis
id = resource.Body('uuid', alternate_id=True)
#: A list of relative links, including the self and bookmark links.
links = resource.Body('links', type=list)
#: Links to the collection of nodes contained in the chassis
nodes = resource.Body('nodes', type=list)
#: Timestamp at which the chassis was last updated.
updated_at = resource.Body('updated_at')
class ChassisDetail(Chassis):
base_path = '/chassis/detail'
# capabilities
allow_create = False
allow_get = False
allow_update = False
allow_delete = False
allow_list = True
#: The UUID for the chassis
id = resource.Body('uuid', alternate_id=True)

View File

@ -0,0 +1,94 @@
# 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 testtools
from openstack.bare_metal.v1 import chassis
FAKE = {
"created_at": "2016-08-18T22:28:48.165105+00:00",
"description": "Sample chassis",
"extra": {},
"links": [
{
"href": "http://127.0.0.1:6385/v1/chassis/ID",
"rel": "self"
},
{
"href": "http://127.0.0.1:6385/chassis/ID",
"rel": "bookmark"
}
],
"nodes": [
{
"href": "http://127.0.0.1:6385/v1/chassis/ID/nodes",
"rel": "self"
},
{
"href": "http://127.0.0.1:6385/chassis/ID/nodes",
"rel": "bookmark"
}
],
"updated_at": None,
"uuid": "dff29d23-1ded-43b4-8ae1-5eebb3e30de1"
}
class TestChassis(testtools.TestCase):
def test_basic(self):
sot = chassis.Chassis()
self.assertIsNone(sot.resource_key)
self.assertEqual('chassis', sot.resources_key)
self.assertEqual('/chassis', sot.base_path)
self.assertEqual('baremetal', sot.service.service_type)
self.assertTrue(sot.allow_create)
self.assertTrue(sot.allow_get)
self.assertTrue(sot.allow_update)
self.assertTrue(sot.allow_delete)
self.assertTrue(sot.allow_list)
self.assertTrue(sot.patch_update)
def test_instantiate(self):
sot = chassis.Chassis(**FAKE)
self.assertEqual(FAKE['uuid'], sot.id)
self.assertEqual(FAKE['created_at'], sot.created_at)
self.assertEqual(FAKE['description'], sot.description)
self.assertEqual(FAKE['extra'], sot.extra)
self.assertEqual(FAKE['links'], sot.links)
self.assertEqual(FAKE['nodes'], sot.nodes)
self.assertEqual(FAKE['updated_at'], sot.updated_at)
class TestChassisDetail(testtools.TestCase):
def test_basic(self):
sot = chassis.ChassisDetail()
self.assertIsNone(sot.resource_key)
self.assertEqual('chassis', sot.resources_key)
self.assertEqual('/chassis/detail', sot.base_path)
self.assertEqual('baremetal', sot.service.service_type)
self.assertFalse(sot.allow_create)
self.assertFalse(sot.allow_get)
self.assertFalse(sot.allow_update)
self.assertFalse(sot.allow_delete)
self.assertTrue(sot.allow_list)
def test_instantiate(self):
sot = chassis.ChassisDetail(**FAKE)
self.assertEqual(FAKE['uuid'], sot.id)
self.assertEqual(FAKE['created_at'], sot.created_at)
self.assertEqual(FAKE['description'], sot.description)
self.assertEqual(FAKE['extra'], sot.extra)
self.assertEqual(FAKE['links'], sot.links)
self.assertEqual(FAKE['nodes'], sot.nodes)
self.assertEqual(FAKE['updated_at'], sot.updated_at)