openstacksdk/shade/tests/unit/test_update_server.py

59 lines
2.2 KiB
Python

# 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.
"""
test_update_server
----------------------------------
Tests for the `update_server` command.
"""
import mock
from shade import OpenStackCloud
from shade.exc import OpenStackCloudException
from shade.tests import fakes
from shade.tests.unit import base
class TestUpdateServer(base.TestCase):
@mock.patch.object(OpenStackCloud, 'nova_client')
def test_update_server_with_update_exception(self, mock_nova):
"""
Test that an exception in the novaclient update raises an exception in
update_server.
"""
mock_nova.servers.update.side_effect = Exception("exception")
self.assertRaises(
OpenStackCloudException, self.cloud.update_server,
'server-name')
@mock.patch.object(OpenStackCloud, 'nova_client')
def test_update_server_name(self, mock_nova):
"""
Test that update_server updates the name without raising any exception
"""
fake_server = fakes.FakeServer('1234', 'server-name', 'ACTIVE')
fake_update_server = fakes.FakeServer('1234', 'server-name2',
'ACTIVE')
fake_floating_ip = fakes.FakeFloatingIP('1234', 'ippool',
'1.1.1.1', '2.2.2.2',
'5678')
mock_nova.servers.list.return_value = [fake_server]
mock_nova.servers.update.return_value = fake_update_server
mock_nova.floating_ips.list.return_value = [fake_floating_ip]
self.assertEqual(
'server-name2',
self.cloud.update_server(
'server-name', name='server-name2')['name'])