ironic/ironic/tests/objects/test_chassis.py

104 lines
3.7 KiB
Python

# coding=utf-8
#
#
# 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 mock
from ironic.common import utils as ironic_utils
from ironic.db import api as db_api
from ironic.db.sqlalchemy import models
from ironic import objects
from ironic.tests.db import base
from ironic.tests.db import utils
class TestChassisObject(base.DbTestCase):
def setUp(self):
super(TestChassisObject, self).setUp()
self.fake_chassis = utils.get_test_chassis()
self.dbapi = db_api.get_instance()
def test_load(self):
uuid = self.fake_chassis['uuid']
with mock.patch.object(self.dbapi, 'get_chassis',
autospec=True) as mock_get_chassis:
mock_get_chassis.return_value = self.fake_chassis
objects.Chassis.get_by_uuid(self.context, uuid)
mock_get_chassis.assert_called_once_with(uuid)
def test_save(self):
uuid = self.fake_chassis['uuid']
with mock.patch.object(self.dbapi, 'get_chassis',
autospec=True) as mock_get_chassis:
mock_get_chassis.return_value = self.fake_chassis
with mock.patch.object(self.dbapi, 'update_chassis',
autospec=True) as mock_update_chassis:
c = objects.Chassis.get_by_uuid(self.context, uuid)
c.extra = {"test": 123}
c.save()
mock_get_chassis.assert_called_once_with(uuid)
mock_update_chassis.assert_called_once_with(
uuid, {'extra': {"test": 123}})
def test_refresh(self):
uuid = self.fake_chassis['uuid']
new_uuid = ironic_utils.generate_uuid()
returns = [dict(self.fake_chassis, uuid=uuid),
dict(self.fake_chassis, uuid=new_uuid)]
expected = [mock.call(uuid), mock.call(uuid)]
with mock.patch.object(self.dbapi, 'get_chassis', side_effect=returns,
autospec=True) as mock_get_chassis:
c = objects.Chassis.get_by_uuid(self.context, uuid)
self.assertEqual(c.uuid, uuid)
c.refresh()
self.assertEqual(c.uuid, new_uuid)
self.assertEqual(mock_get_chassis.call_args_list, expected)
def test_objectify(self):
def _get_db_chassis():
c = models.Chassis()
c.update(self.fake_chassis)
return c
@objects.objectify(objects.Chassis)
def _convert_db_chassis():
return _get_db_chassis()
self.assertIsInstance(_get_db_chassis(), models.Chassis)
self.assertIsInstance(_convert_db_chassis(), objects.Chassis)
def test_objectify_many(self):
def _get_many_db_chassis():
chassis = []
for i in range(5):
c = models.Chassis()
c.update(self.fake_chassis)
chassis.append(c)
return chassis
@objects.objectify(objects.Chassis)
def _convert_many_db_chassis():
return _get_many_db_chassis()
for c in _get_many_db_chassis():
self.assertIsInstance(c, models.Chassis)
for c in _convert_many_db_chassis():
self.assertIsInstance(c, objects.Chassis)