1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
|
import sys
import logging
from unittest.mock import (
patch, Mock
)
from pytest import (
raises, fixture
)
import pytest
from .test_helper import argv_kiwi_tests
import kiwi
from kiwi.defaults import Defaults
from kiwi.xml_state import XMLState
from kiwi.xml_description import XMLDescription
from kiwi.runtime_checker import RuntimeChecker
from kiwi.exceptions import KiwiRuntimeError
class TestRuntimeChecker:
@fixture(autouse=True)
def inject_fixtures(self, caplog):
self._caplog = caplog
def setup(self):
Defaults.set_runtime_checker_metadata(
'../data/runtime_checker_metadata.yml'
)
self.description = XMLDescription(
'../data/example_runtime_checker_config.xml'
)
self.xml_state = XMLState(
self.description.load()
)
self.runtime_config = Mock()
self.runtime_config.get_oci_archive_tool.return_value = 'umoci'
kiwi.runtime_checker.RuntimeConfig = Mock(
return_value=self.runtime_config
)
self.runtime_checker = RuntimeChecker(self.xml_state)
def setup_method(self, cls):
self.setup()
@patch('kiwi.runtime_checker.Uri')
def test_check_image_include_repos_publicly_resolvable(self, mock_Uri):
uri = Mock()
uri.is_public.return_value = False
mock_Uri.return_value = uri
with raises(KiwiRuntimeError):
self.runtime_checker.check_image_include_repos_publicly_resolvable()
@patch('kiwi.runtime_checker.Command.run')
def test_check_target_dir_on_unsupported_filesystem(self, mock_Command_run):
stat = Mock()
stat.output = 'bogus'
mock_Command_run.return_value = stat
with raises(KiwiRuntimeError):
self.runtime_checker.check_target_dir_on_unsupported_filesystem(
'/some/root_dir'
)
def test_invalid_target_dir_pointing_to_shared_cache_1(self):
with raises(KiwiRuntimeError):
self.runtime_checker.check_target_directory_not_in_shared_cache(
'/var/cache//kiwi/foo'
)
def test_invalid_target_dir_pointing_to_shared_cache_2(self):
with raises(KiwiRuntimeError):
self.runtime_checker.check_target_directory_not_in_shared_cache(
'/var/cache/kiwi'
)
@patch('os.getcwd')
def test_invalid_target_dir_pointing_to_shared_cache_3(self, mock_getcwd):
mock_getcwd.return_value = '/'
with raises(KiwiRuntimeError):
self.runtime_checker.check_target_directory_not_in_shared_cache(
'var/cache/kiwi'
)
def test_invalid_target_dir_pointing_to_shared_cache_4(self):
with raises(KiwiRuntimeError):
self.runtime_checker.check_target_directory_not_in_shared_cache(
'//var/cache//kiwi/foo'
)
@patch('os.path.isdir')
def test_check_dracut_module_versions_compatible_to_kiwi_no_dracut(
self, mock_os_path_isdir
):
mock_os_path_isdir.return_value = False
self.runtime_checker.\
check_dracut_module_versions_compatible_to_kiwi('root_dir')
# does not raise if no dracut is installed
@patch('os.listdir')
@patch('os.path.isdir')
@patch('kiwi.runtime_checker.Command.run')
def test_check_dracut_module_versions_compatible_to_kiwi(
self, mock_Command_run, mock_os_path_isdir, mock_os_listdir
):
mock_os_path_isdir.return_value = True
command = Mock()
command.output = '1.2.3-1.2'
mock_Command_run.return_value = command
mock_os_listdir.return_value = ['55kiwi-dump']
package_manager = Mock()
package_manager.return_value = 'zypper'
self.xml_state.get_package_manager = package_manager
with raises(KiwiRuntimeError) as exception_data:
self.runtime_checker.\
check_dracut_module_versions_compatible_to_kiwi('root_dir')
assert "'dracut-kiwi-oem-dump': 'got:1.2.3, need:>=9.20.1'" in str(
exception_data.value
)
mock_Command_run.assert_called_once_with(
[
'chroot', 'root_dir', 'rpm', '-q',
'--qf', '%{VERSION}', 'dracut-kiwi-oem-dump'
]
)
package_manager.return_value = 'apt'
mock_Command_run.reset_mock()
with raises(KiwiRuntimeError) as exception_data:
self.runtime_checker.\
check_dracut_module_versions_compatible_to_kiwi('root_dir')
assert "'dracut-kiwi-oem-dump': 'got:1.2.3, need:>=9.20.1'" in str(
exception_data.value
)
mock_Command_run.assert_called_once_with(
[
'chroot', 'root_dir', 'dpkg-query',
'-W', '-f', '${Version}', 'dracut-kiwi-oem-dump'
]
)
mock_Command_run.side_effect = Exception
# If the package manager call failed with an exception
# the expected behavior is the runtime check to just pass
# because there is no data to operate on. Best guess approach
with self._caplog.at_level(logging.DEBUG):
self.runtime_checker.\
check_dracut_module_versions_compatible_to_kiwi('root_dir')
def test_valid_target_dir_1(self):
assert self.runtime_checker.check_target_directory_not_in_shared_cache(
'/var/cache/kiwi-fast-tmpsystemdir'
) is None
def test_valid_target_dir_2(self):
assert self.runtime_checker.check_target_directory_not_in_shared_cache(
'/foo/bar'
) is None
def test_check_repositories_configured(self):
self.xml_state.delete_repository_sections()
with raises(KiwiRuntimeError):
self.runtime_checker.check_repositories_configured()
def test_check_volume_setup_defines_reserved_labels(self):
xml_state = XMLState(
self.description.load(), ['vmxSimpleFlavour'], 'oem'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_volume_setup_defines_reserved_labels()
def test_appx_invalid_name(self):
xml_state = XMLState(
self.description.load(), ['wsl_launcher'], 'appx'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_appx_naming_conventions_valid()
def test_appx_invalid_id(self):
xml_state = XMLState(
self.description.load(), ['wsl_id'], 'appx'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_appx_naming_conventions_valid()
def test_check_volume_setup_defines_multiple_fullsize_volumes(self):
with raises(KiwiRuntimeError):
self.runtime_checker.\
check_volume_setup_defines_multiple_fullsize_volumes()
def test_check_volume_setup_has_no_root_definition(self):
with raises(KiwiRuntimeError):
self.runtime_checker.check_volume_setup_has_no_root_definition()
def test_check_partuuid_persistency_type_used_with_mbr(self):
xml_state = XMLState(
self.description.load(), ['vmxFlavour'], 'iso'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_partuuid_persistency_type_used_with_mbr()
@patch('kiwi.runtime_checker.CommandCapabilities.has_option_in_help')
def test_check_luksformat_options_valid(self, mock_has_option_in_help):
mock_has_option_in_help.return_value = False
with raises(KiwiRuntimeError):
self.runtime_checker.check_luksformat_options_valid()
@patch('kiwi.runtime_checker.Path.which')
def test_check_container_tool_chain_installed(self, mock_which):
mock_which.return_value = False
xml_state = XMLState(
self.description.load(), ['docker'], 'docker'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_container_tool_chain_installed()
@patch('kiwi.runtime_checker.Path.which')
def test_check_container_tool_chain_installed_unknown_tool(
self, mock_which
):
self.runtime_config.get_oci_archive_tool.return_value = 'budah'
mock_which.return_value = False
xml_state = XMLState(
self.description.load(), ['docker'], 'docker'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_container_tool_chain_installed()
@patch('kiwi.runtime_checker.Path.which')
def test_check_container_tool_chain_installed_buildah(
self, mock_which
):
self.runtime_config.get_oci_archive_tool.return_value = 'buildah'
mock_which.return_value = False
xml_state = XMLState(
self.description.load(), ['docker'], 'docker'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_container_tool_chain_installed()
@patch('kiwi.runtime_checker.Path.which')
@patch('kiwi.runtime_checker.CommandCapabilities.check_version')
def test_check_container_tool_chain_installed_with_version(
self, mock_cmdver, mock_which
):
mock_which.return_value = True
mock_cmdver.return_value = False
xml_state = XMLState(
self.description.load(), ['docker'], 'docker'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_container_tool_chain_installed()
@patch('kiwi.runtime_checker.Path.which')
@patch('kiwi.runtime_checker.CommandCapabilities.check_version')
@patch('kiwi.runtime_checker.CommandCapabilities.has_option_in_help')
def test_check_container_tool_chain_installed_with_multitags(
self, mock_cmdoptions, mock_cmdver, mock_which
):
mock_which.return_value = True
mock_cmdver.return_value = True
mock_cmdoptions.return_value = False
xml_state = XMLState(
self.description.load(), ['docker'], 'docker'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_container_tool_chain_installed()
@patch('kiwi.runtime_checker.Defaults.get_boot_image_description_path')
def test_check_consistent_kernel_in_boot_and_system_image(
self, mock_boot_path
):
Defaults.set_platform_name('x86_64')
mock_boot_path.return_value = '../data'
xml_state = XMLState(
self.description.load(), ['vmxFlavour'], 'oem'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_consistent_kernel_in_boot_and_system_image()
def test_check_initrd_selection_required(self):
description = XMLDescription(
'../data/example_runtime_checker_no_initrd_system_reference.xml'
)
xml_state = XMLState(description.load())
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_initrd_selection_required()
def test_check_boot_description_exists_no_boot_ref(self):
description = XMLDescription(
'../data/example_runtime_checker_no_boot_reference.xml'
)
xml_state = XMLState(description.load())
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_boot_description_exists()
def test_check_boot_description_exists_does_not_exist(self):
description = XMLDescription(
'../data/example_runtime_checker_boot_desc_not_found.xml'
)
xml_state = XMLState(description.load())
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_boot_description_exists()
def test_check_xen_uniquely_setup_as_server_or_guest_for_ec2(self):
self.xml_state.build_type.get_firmware = Mock(
return_value='ec2'
)
self.xml_state.is_xen_server = Mock(
return_value=True
)
self.xml_state.is_xen_guest = Mock(
return_value=True
)
with raises(KiwiRuntimeError):
self.runtime_checker.check_xen_uniquely_setup_as_server_or_guest()
def test_check_efi_fat_image_has_correct_size(self):
self.xml_state.build_type.get_efifatimagesize = Mock(
return_value='200'
)
with raises(KiwiRuntimeError):
self.runtime_checker.check_efi_fat_image_has_correct_size()
def test_check_xen_uniquely_setup_as_server_or_guest_for_xen(self):
self.xml_state.build_type.get_firmware = Mock(
return_value=None
)
self.xml_state.is_xen_server = Mock(
return_value=True
)
self.xml_state.is_xen_guest = Mock(
return_value=True
)
with raises(KiwiRuntimeError):
self.runtime_checker.check_xen_uniquely_setup_as_server_or_guest()
def test_check_dracut_module_for_disk_overlay_in_package_list(self):
xml_state = XMLState(
self.description.load(), ['vmxFlavour'], 'iso'
)
xml_state.build_type.get_overlayroot = Mock(
return_value=True
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.\
check_dracut_module_for_disk_overlay_in_package_list()
@pytest.mark.parametrize("tool_name, tool_binary", [("isomd5sum", "implantisomd5"), ("checkmedia", "tagmedia")])
@patch('kiwi.runtime_checker.Path.which')
@patch('kiwi.runtime_checker.RuntimeConfig')
def test_check_mediacheck_installed_implantisomd5_missing(
self, mock_RuntimeConfig, mock_which, tool_name, tool_binary
):
runtime_config = Mock()
runtime_config.get_iso_media_tag_tool.return_value = tool_name
mock_RuntimeConfig.return_value = runtime_config
mock_which.return_value = False
xml_state = XMLState(
self.description.load(), ['vmxFlavour'], 'iso'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError) as rt_err_ctx:
runtime_checker.check_mediacheck_installed()
assert f"Required tool {tool_binary} not found in caller environment" in str(rt_err_ctx.value)
def test_check_dracut_module_for_live_iso_in_package_list(self):
xml_state = XMLState(
self.description.load(), ['vmxFlavour'], 'iso'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_dracut_module_for_live_iso_in_package_list()
def test_check_dracut_module_for_disk_oem_in_package_list(self):
xml_state = XMLState(
self.description.load(), ['vmxFlavour'], 'oem'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_dracut_module_for_disk_oem_in_package_list()
def test_check_dracut_module_for_oem_install_in_package_list(self):
xml_state = XMLState(
self.description.load(), ['vmxFlavour'], 'oem'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.\
check_dracut_module_for_oem_install_in_package_list()
def test_check_volume_label_used_with_lvm(self):
with raises(KiwiRuntimeError):
self.runtime_checker.check_volume_label_used_with_lvm()
def test_check_swap_name_used_with_lvm(self):
xml_state = XMLState(
self.description.load(), ['vmxFlavour'], 'oem'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_swap_name_used_with_lvm()
def test_check_preferences_data_no_version(self):
xml_state = XMLState(
self.description.load(), ['docker'], 'docker'
)
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_image_version_provided()
def test_check_image_type_unique(self):
description = XMLDescription(
'../data/example_runtime_checker_conflicting_types.xml'
)
xml_state = XMLState(description.load())
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_image_type_unique()
def test_check_include_references_unresolvable(self):
description = XMLDescription(
'../data/example_runtime_checker_include_nested_reference.xml'
)
xml_state = XMLState(description.load())
runtime_checker = RuntimeChecker(xml_state)
with raises(KiwiRuntimeError):
runtime_checker.check_include_references_unresolvable()
def test_check_package_in_list(self):
assert RuntimeChecker._package_in_list(['a', 'b'], ['b']) == 'b'
assert RuntimeChecker._package_in_list(['a', 'b'], ['c']) == ''
def teardown(self):
sys.argv = argv_kiwi_tests
def teardown_method(self, cls):
self.teardown()
|