fc0dfb369e
The call to configure logging sets up logging to syslog. Some environments, such as the Ubuntu package builder environment, do not permit this operation. Logging is made to syslog as the plugin runs in dom0 on XenServer, not with the rest of Nova, so the oslo logging capabilities can't be used. Mock out the call to configure logging to prevent attempts to use syslog Change-Id: Ie32691d980aff052498c6c5822828ba9703d412b Closes-Bug: 1597433
109 lines
4.6 KiB
Python
109 lines
4.6 KiB
Python
# Copyright (c) 2016 OpenStack Foundation
|
|
# 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 mock
|
|
|
|
from nova import test
|
|
from nova.tests.unit.virt.xenapi.plugins import plugin_test
|
|
|
|
|
|
class PartitionUtils(plugin_test.PluginTestBase):
|
|
def setUp(self):
|
|
super(PartitionUtils, self).setUp()
|
|
self.pluginlib = self.load_plugin("pluginlib_nova.py")
|
|
|
|
# Prevent any logging to syslog
|
|
self.mock_patch_object(self.pluginlib,
|
|
'configure_logging')
|
|
|
|
self.partition_utils = self.load_plugin("partition_utils.py")
|
|
|
|
def test_wait_for_dev_ok(self):
|
|
mock_sleep = self.mock_patch_object(self.partition_utils.time,
|
|
'sleep')
|
|
mock_exists = self.mock_patch_object(self.partition_utils.os.path,
|
|
'exists')
|
|
mock_exists.side_effect = [False, True]
|
|
ret = self.partition_utils.wait_for_dev('session', '/fake', 2)
|
|
|
|
self.assertEqual(1, mock_sleep.call_count)
|
|
self.assertEqual(ret, "/fake")
|
|
|
|
def test_wait_for_dev_timeout(self):
|
|
mock_sleep = self.mock_patch_object(self.partition_utils.time,
|
|
'sleep')
|
|
mock_exists = self.mock_patch_object(self.partition_utils.os.path,
|
|
'exists')
|
|
mock_exists.side_effect = [False, False, True]
|
|
ret = self.partition_utils.wait_for_dev('session', '/fake', 2)
|
|
|
|
self.assertEqual(2, mock_sleep.call_count)
|
|
self.assertEqual(ret, "")
|
|
|
|
def test_mkfs_removes_partitions_ok(self):
|
|
mock_run = self.mock_patch_object(self.partition_utils.utils,
|
|
'run_command')
|
|
mock__mkfs = self.mock_patch_object(self.partition_utils, '_mkfs')
|
|
|
|
self.partition_utils.mkfs('session', 'fakedev', '1', 'ext3', 'label')
|
|
mock__mkfs.assert_called_with('ext3', '/dev/mapper/fakedevp1',
|
|
'label')
|
|
expected_calls = [mock.call(['kpartx', '-avspp', '/dev/fakedev'])]
|
|
expected_calls.append(mock.call(['kpartx', '-dvspp', '/dev/fakedev']))
|
|
mock_run.assert_has_calls(expected_calls)
|
|
|
|
def test_mkfs_removes_partitions_exc(self):
|
|
mock_run = self.mock_patch_object(self.partition_utils.utils,
|
|
'run_command')
|
|
mock__mkfs = self.mock_patch_object(self.partition_utils, '_mkfs')
|
|
mock__mkfs.side_effect = test.TestingException()
|
|
|
|
self.assertRaises(test.TestingException, self.partition_utils.mkfs,
|
|
'session', 'fakedev', '1', 'ext3', 'label')
|
|
expected_calls = [mock.call(['kpartx', '-avspp', '/dev/fakedev'])]
|
|
expected_calls.append(mock.call(['kpartx', '-dvspp', '/dev/fakedev']))
|
|
mock_run.assert_has_calls(expected_calls)
|
|
|
|
def test_mkfs_ext3_no_label(self):
|
|
mock_run = self.mock_patch_object(self.partition_utils.utils,
|
|
'run_command')
|
|
|
|
self.partition_utils._mkfs('ext3', '/dev/sda1', None)
|
|
mock_run.assert_called_with(['mkfs', '-t', 'ext3', '-F', '/dev/sda1'])
|
|
|
|
def test_mkfs_ext3(self):
|
|
mock_run = self.mock_patch_object(self.partition_utils.utils,
|
|
'run_command')
|
|
|
|
self.partition_utils._mkfs('ext3', '/dev/sda1', 'label')
|
|
mock_run.assert_called_with(['mkfs', '-t', 'ext3', '-F', '-L',
|
|
'label', '/dev/sda1'])
|
|
|
|
def test_mkfs_swap(self):
|
|
mock_run = self.mock_patch_object(self.partition_utils.utils,
|
|
'run_command')
|
|
|
|
self.partition_utils._mkfs('swap', '/dev/sda1', 'ignored')
|
|
mock_run.assert_called_with(['mkswap', '/dev/sda1'])
|
|
|
|
def test_make_partition(self):
|
|
mock_run = self.mock_patch_object(self.partition_utils.utils,
|
|
'run_command')
|
|
|
|
self.partition_utils.make_partition('session', 'dev', 'start', '-')
|
|
|
|
mock_run.assert_called_with(['sfdisk', '-uS', '/dev/dev'],
|
|
'start,;\n')
|