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 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002
|
# This file is part of cloud-init. See LICENSE file for license information.
import io
import logging
import os
import re
import shutil
import stat
import tempfile
import pytest
import yaml
from unittest import mock
from cloudinit import subp
from cloudinit import importer, util
from cloudinit.tests import helpers
class FakeSelinux(object):
def __init__(self, match_what):
self.match_what = match_what
self.restored = []
def matchpathcon(self, path, mode):
if path == self.match_what:
return
else:
raise OSError("No match!")
def is_selinux_enabled(self):
return True
def restorecon(self, path, recursive):
self.restored.append(path)
class TestGetCfgOptionListOrStr(helpers.TestCase):
def test_not_found_no_default(self):
"""None is returned if key is not found and no default given."""
config = {}
result = util.get_cfg_option_list(config, "key")
self.assertIsNone(result)
def test_not_found_with_default(self):
"""Default is returned if key is not found."""
config = {}
result = util.get_cfg_option_list(config, "key", default=["DEFAULT"])
self.assertEqual(["DEFAULT"], result)
def test_found_with_default(self):
"""Default is not returned if key is found."""
config = {"key": ["value1"]}
result = util.get_cfg_option_list(config, "key", default=["DEFAULT"])
self.assertEqual(["value1"], result)
def test_found_convert_to_list(self):
"""Single string is converted to one element list."""
config = {"key": "value1"}
result = util.get_cfg_option_list(config, "key")
self.assertEqual(["value1"], result)
def test_value_is_none(self):
"""If value is None empty list is returned."""
config = {"key": None}
result = util.get_cfg_option_list(config, "key")
self.assertEqual([], result)
class TestWriteFile(helpers.TestCase):
def setUp(self):
super(TestWriteFile, self).setUp()
self.tmp = tempfile.mkdtemp()
self.addCleanup(shutil.rmtree, self.tmp)
def test_basic_usage(self):
"""Verify basic usage with default args."""
path = os.path.join(self.tmp, "NewFile.txt")
contents = "Hey there"
util.write_file(path, contents)
self.assertTrue(os.path.exists(path))
self.assertTrue(os.path.isfile(path))
with open(path) as f:
create_contents = f.read()
self.assertEqual(contents, create_contents)
file_stat = os.stat(path)
self.assertEqual(0o644, stat.S_IMODE(file_stat.st_mode))
def test_dir_is_created_if_required(self):
"""Verifiy that directories are created is required."""
dirname = os.path.join(self.tmp, "subdir")
path = os.path.join(dirname, "NewFile.txt")
contents = "Hey there"
util.write_file(path, contents)
self.assertTrue(os.path.isdir(dirname))
self.assertTrue(os.path.isfile(path))
def test_dir_is_not_created_if_ensure_dir_false(self):
"""Verify directories are not created if ensure_dir_exists is False."""
dirname = os.path.join(self.tmp, "subdir")
path = os.path.join(dirname, "NewFile.txt")
contents = "Hey there"
with self.assertRaises(FileNotFoundError):
util.write_file(path, contents, ensure_dir_exists=False)
self.assertFalse(os.path.isdir(dirname))
def test_explicit_mode(self):
"""Verify explicit file mode works properly."""
path = os.path.join(self.tmp, "NewFile.txt")
contents = "Hey there"
util.write_file(path, contents, mode=0o666)
self.assertTrue(os.path.exists(path))
self.assertTrue(os.path.isfile(path))
file_stat = os.stat(path)
self.assertEqual(0o666, stat.S_IMODE(file_stat.st_mode))
def test_preserve_mode_no_existing(self):
"""Verify that file is created with mode 0o644 if preserve_mode
is true and there is no prior existing file."""
path = os.path.join(self.tmp, "NewFile.txt")
contents = "Hey there"
util.write_file(path, contents, preserve_mode=True)
self.assertTrue(os.path.exists(path))
self.assertTrue(os.path.isfile(path))
file_stat = os.stat(path)
self.assertEqual(0o644, stat.S_IMODE(file_stat.st_mode))
def test_preserve_mode_with_existing(self):
"""Verify that file is created using mode of existing file
if preserve_mode is true."""
path = os.path.join(self.tmp, "NewFile.txt")
contents = "Hey there"
open(path, 'w').close()
os.chmod(path, 0o666)
util.write_file(path, contents, preserve_mode=True)
self.assertTrue(os.path.exists(path))
self.assertTrue(os.path.isfile(path))
file_stat = os.stat(path)
self.assertEqual(0o666, stat.S_IMODE(file_stat.st_mode))
def test_custom_omode(self):
"""Verify custom omode works properly."""
path = os.path.join(self.tmp, "NewFile.txt")
contents = "Hey there"
# Create file first with basic content
with open(path, "wb") as f:
f.write(b"LINE1\n")
util.write_file(path, contents, omode="a")
self.assertTrue(os.path.exists(path))
self.assertTrue(os.path.isfile(path))
with open(path) as f:
create_contents = f.read()
self.assertEqual("LINE1\nHey there", create_contents)
def test_restorecon_if_possible_is_called(self):
"""Make sure the selinux guard is called correctly."""
my_file = os.path.join(self.tmp, "my_file")
with open(my_file, "w") as fp:
fp.write("My Content")
fake_se = FakeSelinux(my_file)
with mock.patch.object(importer, 'import_module',
return_value=fake_se) as mockobj:
with util.SeLinuxGuard(my_file) as is_on:
self.assertTrue(is_on)
self.assertEqual(1, len(fake_se.restored))
self.assertEqual(my_file, fake_se.restored[0])
mockobj.assert_called_once_with('selinux')
class TestDeleteDirContents(helpers.TestCase):
def setUp(self):
super(TestDeleteDirContents, self).setUp()
self.tmp = tempfile.mkdtemp()
self.addCleanup(shutil.rmtree, self.tmp)
def assertDirEmpty(self, dirname):
self.assertEqual([], os.listdir(dirname))
def test_does_not_delete_dir(self):
"""Ensure directory itself is not deleted."""
util.delete_dir_contents(self.tmp)
self.assertTrue(os.path.isdir(self.tmp))
self.assertDirEmpty(self.tmp)
def test_deletes_files(self):
"""Single file should be deleted."""
with open(os.path.join(self.tmp, "new_file.txt"), "wb") as f:
f.write(b"DELETE ME")
util.delete_dir_contents(self.tmp)
self.assertDirEmpty(self.tmp)
def test_deletes_empty_dirs(self):
"""Empty directories should be deleted."""
os.mkdir(os.path.join(self.tmp, "new_dir"))
util.delete_dir_contents(self.tmp)
self.assertDirEmpty(self.tmp)
def test_deletes_nested_dirs(self):
"""Nested directories should be deleted."""
os.mkdir(os.path.join(self.tmp, "new_dir"))
os.mkdir(os.path.join(self.tmp, "new_dir", "new_subdir"))
util.delete_dir_contents(self.tmp)
self.assertDirEmpty(self.tmp)
def test_deletes_non_empty_dirs(self):
"""Non-empty directories should be deleted."""
os.mkdir(os.path.join(self.tmp, "new_dir"))
f_name = os.path.join(self.tmp, "new_dir", "new_file.txt")
with open(f_name, "wb") as f:
f.write(b"DELETE ME")
util.delete_dir_contents(self.tmp)
self.assertDirEmpty(self.tmp)
def test_deletes_symlinks(self):
"""Symlinks should be deleted."""
file_name = os.path.join(self.tmp, "new_file.txt")
link_name = os.path.join(self.tmp, "new_file_link.txt")
with open(file_name, "wb") as f:
f.write(b"DELETE ME")
os.symlink(file_name, link_name)
util.delete_dir_contents(self.tmp)
self.assertDirEmpty(self.tmp)
class TestKeyValStrings(helpers.TestCase):
def test_keyval_str_to_dict(self):
expected = {'1': 'one', '2': 'one+one', 'ro': True}
cmdline = "1=one ro 2=one+one"
self.assertEqual(expected, util.keyval_str_to_dict(cmdline))
class TestGetCmdline(helpers.TestCase):
def test_cmdline_reads_debug_env(self):
with mock.patch.dict("os.environ",
values={'DEBUG_PROC_CMDLINE': 'abcd 123'}):
ret = util.get_cmdline()
self.assertEqual("abcd 123", ret)
class TestLoadYaml(helpers.CiTestCase):
mydefault = "7b03a8ebace993d806255121073fed52"
with_logs = True
def test_simple(self):
mydata = {'1': "one", '2': "two"}
self.assertEqual(util.load_yaml(yaml.dump(mydata)), mydata)
def test_nonallowed_returns_default(self):
'''Any unallowed types result in returning default; log the issue.'''
# for now, anything not in the allowed list just returns the default.
myyaml = yaml.dump({'1': "one"})
self.assertEqual(util.load_yaml(blob=myyaml,
default=self.mydefault,
allowed=(str,)),
self.mydefault)
regex = re.compile(
r'Yaml load allows \(<(class|type) \'str\'>,\) root types, but'
r' got dict')
self.assertTrue(regex.search(self.logs.getvalue()),
msg='Missing expected yaml load error')
def test_bogus_scan_error_returns_default(self):
'''On Yaml scan error, load_yaml returns the default and logs issue.'''
badyaml = "1\n 2:"
self.assertEqual(util.load_yaml(blob=badyaml,
default=self.mydefault),
self.mydefault)
self.assertIn(
'Failed loading yaml blob. Invalid format at line 2 column 3:'
' "mapping values are not allowed here',
self.logs.getvalue())
def test_bogus_parse_error_returns_default(self):
'''On Yaml parse error, load_yaml returns default and logs issue.'''
badyaml = "{}}"
self.assertEqual(util.load_yaml(blob=badyaml,
default=self.mydefault),
self.mydefault)
self.assertIn(
'Failed loading yaml blob. Invalid format at line 1 column 3:'
" \"expected \'<document start>\', but found \'}\'",
self.logs.getvalue())
def test_unsafe_types(self):
# should not load complex types
unsafe_yaml = yaml.dump((1, 2, 3,))
self.assertEqual(util.load_yaml(blob=unsafe_yaml,
default=self.mydefault),
self.mydefault)
def test_python_unicode(self):
# complex type of python/unicode is explicitly allowed
myobj = {'1': "FOOBAR"}
safe_yaml = yaml.dump(myobj)
self.assertEqual(util.load_yaml(blob=safe_yaml,
default=self.mydefault),
myobj)
def test_none_returns_default(self):
"""If yaml.load returns None, then default should be returned."""
blobs = ("", " ", "# foo\n", "#")
mdef = self.mydefault
self.assertEqual(
[(b, self.mydefault) for b in blobs],
[(b, util.load_yaml(blob=b, default=mdef)) for b in blobs])
class TestMountinfoParsing(helpers.ResourceUsingTestCase):
def test_invalid_mountinfo(self):
line = ("20 1 252:1 / / rw,relatime - ext4 /dev/mapper/vg0-root"
"rw,errors=remount-ro,data=ordered")
elements = line.split()
for i in range(len(elements) + 1):
lines = [' '.join(elements[0:i])]
if i < 10:
expected = None
else:
expected = ('/dev/mapper/vg0-root', 'ext4', '/')
self.assertEqual(expected, util.parse_mount_info('/', lines))
def test_precise_ext4_root(self):
lines = helpers.readResource('mountinfo_precise_ext4.txt').splitlines()
expected = ('/dev/mapper/vg0-root', 'ext4', '/')
self.assertEqual(expected, util.parse_mount_info('/', lines))
self.assertEqual(expected, util.parse_mount_info('/usr', lines))
self.assertEqual(expected, util.parse_mount_info('/usr/bin', lines))
expected = ('/dev/md0', 'ext4', '/boot')
self.assertEqual(expected, util.parse_mount_info('/boot', lines))
self.assertEqual(expected, util.parse_mount_info('/boot/grub', lines))
expected = ('/dev/mapper/vg0-root', 'ext4', '/')
self.assertEqual(expected, util.parse_mount_info('/home', lines))
self.assertEqual(expected, util.parse_mount_info('/home/me', lines))
expected = ('tmpfs', 'tmpfs', '/run')
self.assertEqual(expected, util.parse_mount_info('/run', lines))
expected = ('none', 'tmpfs', '/run/lock')
self.assertEqual(expected, util.parse_mount_info('/run/lock', lines))
def test_raring_btrfs_root(self):
lines = helpers.readResource('mountinfo_raring_btrfs.txt').splitlines()
expected = ('/dev/vda1', 'btrfs', '/')
self.assertEqual(expected, util.parse_mount_info('/', lines))
self.assertEqual(expected, util.parse_mount_info('/usr', lines))
self.assertEqual(expected, util.parse_mount_info('/usr/bin', lines))
self.assertEqual(expected, util.parse_mount_info('/boot', lines))
self.assertEqual(expected, util.parse_mount_info('/boot/grub', lines))
expected = ('/dev/vda1', 'btrfs', '/home')
self.assertEqual(expected, util.parse_mount_info('/home', lines))
self.assertEqual(expected, util.parse_mount_info('/home/me', lines))
expected = ('tmpfs', 'tmpfs', '/run')
self.assertEqual(expected, util.parse_mount_info('/run', lines))
expected = ('none', 'tmpfs', '/run/lock')
self.assertEqual(expected, util.parse_mount_info('/run/lock', lines))
@mock.patch('cloudinit.util.os')
@mock.patch('cloudinit.subp.subp')
def test_get_device_info_from_zpool(self, zpool_output, m_os):
# mock /dev/zfs exists
m_os.path.exists.return_value = True
# mock subp command from util.get_mount_info_fs_on_zpool
zpool_output.return_value = (
helpers.readResource('zpool_status_simple.txt'), ''
)
# save function return values and do asserts
ret = util.get_device_info_from_zpool('vmzroot')
self.assertEqual('gpt/system', ret)
self.assertIsNotNone(ret)
m_os.path.exists.assert_called_with('/dev/zfs')
@mock.patch('cloudinit.util.os')
def test_get_device_info_from_zpool_no_dev_zfs(self, m_os):
# mock /dev/zfs missing
m_os.path.exists.return_value = False
# save function return values and do asserts
ret = util.get_device_info_from_zpool('vmzroot')
self.assertIsNone(ret)
@mock.patch('cloudinit.util.os')
@mock.patch('cloudinit.subp.subp')
def test_get_device_info_from_zpool_handles_no_zpool(self, m_sub, m_os):
"""Handle case where there is no zpool command"""
# mock /dev/zfs exists
m_os.path.exists.return_value = True
m_sub.side_effect = subp.ProcessExecutionError("No zpool cmd")
ret = util.get_device_info_from_zpool('vmzroot')
self.assertIsNone(ret)
@mock.patch('cloudinit.util.os')
@mock.patch('cloudinit.subp.subp')
def test_get_device_info_from_zpool_on_error(self, zpool_output, m_os):
# mock /dev/zfs exists
m_os.path.exists.return_value = True
# mock subp command from util.get_mount_info_fs_on_zpool
zpool_output.return_value = (
helpers.readResource('zpool_status_simple.txt'), 'error'
)
# save function return values and do asserts
ret = util.get_device_info_from_zpool('vmzroot')
self.assertIsNone(ret)
@mock.patch('cloudinit.subp.subp')
def test_parse_mount_with_ext(self, mount_out):
mount_out.return_value = (
helpers.readResource('mount_parse_ext.txt'), '')
# this one is valid and exists in mount_parse_ext.txt
ret = util.parse_mount('/var')
self.assertEqual(('/dev/mapper/vg00-lv_var', 'ext4', '/var'), ret)
# another one that is valid and exists
ret = util.parse_mount('/')
self.assertEqual(('/dev/mapper/vg00-lv_root', 'ext4', '/'), ret)
# this one exists in mount_parse_ext.txt
ret = util.parse_mount('/sys/kernel/debug')
self.assertIsNone(ret)
# this one does not even exist in mount_parse_ext.txt
ret = util.parse_mount('/not/existing/mount')
self.assertIsNone(ret)
@mock.patch('cloudinit.subp.subp')
def test_parse_mount_with_zfs(self, mount_out):
mount_out.return_value = (
helpers.readResource('mount_parse_zfs.txt'), '')
# this one is valid and exists in mount_parse_zfs.txt
ret = util.parse_mount('/var')
self.assertEqual(('vmzroot/ROOT/freebsd/var', 'zfs', '/var'), ret)
# this one is the root, valid and also exists in mount_parse_zfs.txt
ret = util.parse_mount('/')
self.assertEqual(('vmzroot/ROOT/freebsd', 'zfs', '/'), ret)
# this one does not even exist in mount_parse_ext.txt
ret = util.parse_mount('/not/existing/mount')
self.assertIsNone(ret)
class TestIsX86(helpers.CiTestCase):
def test_is_x86_matches_x86_types(self):
"""is_x86 returns True if CPU architecture matches."""
matched_arches = ['x86_64', 'i386', 'i586', 'i686']
for arch in matched_arches:
self.assertTrue(
util.is_x86(arch), 'Expected is_x86 for arch "%s"' % arch)
def test_is_x86_unmatched_types(self):
"""is_x86 returns Fale on non-intel x86 architectures."""
unmatched_arches = ['ia64', '9000/800', 'arm64v71']
for arch in unmatched_arches:
self.assertFalse(
util.is_x86(arch), 'Expected not is_x86 for arch "%s"' % arch)
@mock.patch('cloudinit.util.os.uname')
def test_is_x86_calls_uname_for_architecture(self, m_uname):
"""is_x86 returns True if platform from uname matches."""
m_uname.return_value = [0, 1, 2, 3, 'x86_64']
self.assertTrue(util.is_x86())
class TestGetConfigLogfiles(helpers.CiTestCase):
def test_empty_cfg_returns_empty_list(self):
"""An empty config passed to get_config_logfiles returns empty list."""
self.assertEqual([], util.get_config_logfiles(None))
self.assertEqual([], util.get_config_logfiles({}))
def test_default_log_file_present(self):
"""When default_log_file is set get_config_logfiles finds it."""
self.assertEqual(
['/my.log'],
util.get_config_logfiles({'def_log_file': '/my.log'}))
def test_output_logs_parsed_when_teeing_files(self):
"""When output configuration is parsed when teeing files."""
self.assertEqual(
['/himom.log', '/my.log'],
sorted(util.get_config_logfiles({
'def_log_file': '/my.log',
'output': {'all': '|tee -a /himom.log'}})))
def test_output_logs_parsed_when_redirecting(self):
"""When output configuration is parsed when redirecting to a file."""
self.assertEqual(
['/my.log', '/test.log'],
sorted(util.get_config_logfiles({
'def_log_file': '/my.log',
'output': {'all': '>/test.log'}})))
def test_output_logs_parsed_when_appending(self):
"""When output configuration is parsed when appending to a file."""
self.assertEqual(
['/my.log', '/test.log'],
sorted(util.get_config_logfiles({
'def_log_file': '/my.log',
'output': {'all': '>> /test.log'}})))
class TestMultiLog(helpers.FilesystemMockingTestCase):
def _createConsole(self, root):
os.mkdir(os.path.join(root, 'dev'))
open(os.path.join(root, 'dev', 'console'), 'a').close()
def setUp(self):
super(TestMultiLog, self).setUp()
self.root = tempfile.mkdtemp()
self.addCleanup(shutil.rmtree, self.root)
self.patchOS(self.root)
self.patchUtils(self.root)
self.patchOpen(self.root)
self.stdout = io.StringIO()
self.stderr = io.StringIO()
self.patchStdoutAndStderr(self.stdout, self.stderr)
def test_stderr_used_by_default(self):
logged_string = 'test stderr output'
util.multi_log(logged_string)
self.assertEqual(logged_string, self.stderr.getvalue())
def test_stderr_not_used_if_false(self):
util.multi_log('should not see this', stderr=False)
self.assertEqual('', self.stderr.getvalue())
def test_logs_go_to_console_by_default(self):
self._createConsole(self.root)
logged_string = 'something very important'
util.multi_log(logged_string)
self.assertEqual(logged_string, open('/dev/console').read())
def test_logs_dont_go_to_stdout_if_console_exists(self):
self._createConsole(self.root)
util.multi_log('something')
self.assertEqual('', self.stdout.getvalue())
def test_logs_go_to_stdout_if_console_does_not_exist(self):
logged_string = 'something very important'
util.multi_log(logged_string)
self.assertEqual(logged_string, self.stdout.getvalue())
def test_logs_dont_go_to_stdout_if_fallback_to_stdout_is_false(self):
util.multi_log('something', fallback_to_stdout=False)
self.assertEqual('', self.stdout.getvalue())
def test_logs_go_to_log_if_given(self):
log = mock.MagicMock()
logged_string = 'something very important'
util.multi_log(logged_string, log=log)
self.assertEqual([((mock.ANY, logged_string), {})],
log.log.call_args_list)
def test_newlines_stripped_from_log_call(self):
log = mock.MagicMock()
expected_string = 'something very important'
util.multi_log('{0}\n'.format(expected_string), log=log)
self.assertEqual((mock.ANY, expected_string), log.log.call_args[0])
def test_log_level_defaults_to_debug(self):
log = mock.MagicMock()
util.multi_log('message', log=log)
self.assertEqual((logging.DEBUG, mock.ANY), log.log.call_args[0])
def test_given_log_level_used(self):
log = mock.MagicMock()
log_level = mock.Mock()
util.multi_log('message', log=log, log_level=log_level)
self.assertEqual((log_level, mock.ANY), log.log.call_args[0])
class TestMessageFromString(helpers.TestCase):
def test_unicode_not_messed_up(self):
roundtripped = util.message_from_string(u'\n').as_string()
self.assertNotIn('\x00', roundtripped)
class TestReadSeeded(helpers.TestCase):
def setUp(self):
super(TestReadSeeded, self).setUp()
self.tmp = tempfile.mkdtemp()
self.addCleanup(shutil.rmtree, self.tmp)
def test_unicode_not_messed_up(self):
ud = b"userdatablob"
vd = b"vendordatablob"
helpers.populate_dir(
self.tmp, {'meta-data': "key1: val1", 'user-data': ud,
'vendor-data': vd})
sdir = self.tmp + os.path.sep
(found_md, found_ud, found_vd) = util.read_seeded(sdir)
self.assertEqual(found_md, {'key1': 'val1'})
self.assertEqual(found_ud, ud)
self.assertEqual(found_vd, vd)
class TestReadSeededWithoutVendorData(helpers.TestCase):
def setUp(self):
super(TestReadSeededWithoutVendorData, self).setUp()
self.tmp = tempfile.mkdtemp()
self.addCleanup(shutil.rmtree, self.tmp)
def test_unicode_not_messed_up(self):
ud = b"userdatablob"
vd = None
helpers.populate_dir(
self.tmp, {'meta-data': "key1: val1", 'user-data': ud})
sdir = self.tmp + os.path.sep
(found_md, found_ud, found_vd) = util.read_seeded(sdir)
self.assertEqual(found_md, {'key1': 'val1'})
self.assertEqual(found_ud, ud)
self.assertEqual(found_vd, vd)
class TestEncode(helpers.TestCase):
"""Test the encoding functions"""
def test_decode_binary_plain_text_with_hex(self):
blob = 'BOOTABLE_FLAG=\x80init=/bin/systemd'
text = util.decode_binary(blob)
self.assertEqual(text, blob)
class TestProcessExecutionError(helpers.TestCase):
template = ('{description}\n'
'Command: {cmd}\n'
'Exit code: {exit_code}\n'
'Reason: {reason}\n'
'Stdout: {stdout}\n'
'Stderr: {stderr}')
empty_attr = '-'
empty_description = 'Unexpected error while running command.'
def test_pexec_error_indent_text(self):
error = subp.ProcessExecutionError()
msg = 'abc\ndef'
formatted = 'abc\n{0}def'.format(' ' * 4)
self.assertEqual(error._indent_text(msg, indent_level=4), formatted)
self.assertEqual(error._indent_text(msg.encode(), indent_level=4),
formatted.encode())
self.assertIsInstance(
error._indent_text(msg.encode()), type(msg.encode()))
def test_pexec_error_type(self):
self.assertIsInstance(subp.ProcessExecutionError(), IOError)
def test_pexec_error_empty_msgs(self):
error = subp.ProcessExecutionError()
self.assertTrue(all(attr == self.empty_attr for attr in
(error.stderr, error.stdout, error.reason)))
self.assertEqual(error.description, self.empty_description)
self.assertEqual(str(error), self.template.format(
description=self.empty_description, exit_code=self.empty_attr,
reason=self.empty_attr, stdout=self.empty_attr,
stderr=self.empty_attr, cmd=self.empty_attr))
def test_pexec_error_single_line_msgs(self):
stdout_msg = 'out out'
stderr_msg = 'error error'
cmd = 'test command'
exit_code = 3
error = subp.ProcessExecutionError(
stdout=stdout_msg, stderr=stderr_msg, exit_code=3, cmd=cmd)
self.assertEqual(str(error), self.template.format(
description=self.empty_description, stdout=stdout_msg,
stderr=stderr_msg, exit_code=str(exit_code),
reason=self.empty_attr, cmd=cmd))
def test_pexec_error_multi_line_msgs(self):
# make sure bytes is converted handled properly when formatting
stdout_msg = 'multi\nline\noutput message'.encode()
stderr_msg = 'multi\nline\nerror message\n\n\n'
error = subp.ProcessExecutionError(
stdout=stdout_msg, stderr=stderr_msg)
self.assertEqual(
str(error),
'\n'.join((
'{description}',
'Command: {empty_attr}',
'Exit code: {empty_attr}',
'Reason: {empty_attr}',
'Stdout: multi',
' line',
' output message',
'Stderr: multi',
' line',
' error message',
)).format(description=self.empty_description,
empty_attr=self.empty_attr))
class TestSystemIsSnappy(helpers.FilesystemMockingTestCase):
def test_id_in_os_release_quoted(self):
"""os-release containing ID="ubuntu-core" is snappy."""
orcontent = '\n'.join(['ID="ubuntu-core"', ''])
root_d = self.tmp_dir()
helpers.populate_dir(root_d, {'etc/os-release': orcontent})
self.reRoot(root_d)
self.assertTrue(util.system_is_snappy())
def test_id_in_os_release(self):
"""os-release containing ID=ubuntu-core is snappy."""
orcontent = '\n'.join(['ID=ubuntu-core', ''])
root_d = self.tmp_dir()
helpers.populate_dir(root_d, {'etc/os-release': orcontent})
self.reRoot(root_d)
self.assertTrue(util.system_is_snappy())
@mock.patch('cloudinit.util.get_cmdline')
def test_bad_content_in_os_release_no_effect(self, m_cmdline):
"""malformed os-release should not raise exception."""
m_cmdline.return_value = 'root=/dev/sda'
orcontent = '\n'.join(['IDubuntu-core', ''])
root_d = self.tmp_dir()
helpers.populate_dir(root_d, {'etc/os-release': orcontent})
self.reRoot()
self.assertFalse(util.system_is_snappy())
@mock.patch('cloudinit.util.get_cmdline')
def test_snap_core_in_cmdline_is_snappy(self, m_cmdline):
"""The string snap_core= in kernel cmdline indicates snappy."""
cmdline = (
"BOOT_IMAGE=(loop)/kernel.img root=LABEL=writable "
"snap_core=core_x1.snap snap_kernel=pc-kernel_x1.snap ro "
"net.ifnames=0 init=/lib/systemd/systemd console=tty1 "
"console=ttyS0 panic=-1")
m_cmdline.return_value = cmdline
self.assertTrue(util.system_is_snappy())
self.assertTrue(m_cmdline.call_count > 0)
@mock.patch('cloudinit.util.get_cmdline')
def test_nothing_found_is_not_snappy(self, m_cmdline):
"""If no positive identification, then not snappy."""
m_cmdline.return_value = 'root=/dev/sda'
self.reRoot()
self.assertFalse(util.system_is_snappy())
self.assertTrue(m_cmdline.call_count > 0)
@mock.patch('cloudinit.util.get_cmdline')
def test_channel_ini_with_snappy_is_snappy(self, m_cmdline):
"""A Channel.ini file with 'ubuntu-core' indicates snappy."""
m_cmdline.return_value = 'root=/dev/sda'
root_d = self.tmp_dir()
content = '\n'.join(["[Foo]", "source = 'ubuntu-core'", ""])
helpers.populate_dir(
root_d, {'etc/system-image/channel.ini': content})
self.reRoot(root_d)
self.assertTrue(util.system_is_snappy())
@mock.patch('cloudinit.util.get_cmdline')
def test_system_image_config_dir_is_snappy(self, m_cmdline):
"""Existence of /etc/system-image/config.d indicates snappy."""
m_cmdline.return_value = 'root=/dev/sda'
root_d = self.tmp_dir()
helpers.populate_dir(
root_d, {'etc/system-image/config.d/my.file': "_unused"})
self.reRoot(root_d)
self.assertTrue(util.system_is_snappy())
class TestLoadShellContent(helpers.TestCase):
def test_comments_handled_correctly(self):
"""Shell comments should be allowed in the content."""
self.assertEqual(
{'key1': 'val1', 'key2': 'val2', 'key3': 'val3 #tricky'},
util.load_shell_content('\n'.join([
"#top of file comment",
"key1=val1 #this is a comment",
"# second comment",
'key2="val2" # inlin comment'
'#badkey=wark',
'key3="val3 #tricky"',
''])))
class TestGetProcEnv(helpers.TestCase):
"""test get_proc_env."""
null = b'\x00'
simple1 = b'HOME=/'
simple2 = b'PATH=/bin:/sbin'
bootflag = b'BOOTABLE_FLAG=\x80' # from LP: #1775371
mixed = b'MIXED=' + b'ab\xccde'
def _val_decoded(self, blob, encoding='utf-8', errors='replace'):
# return the value portion of key=val decoded.
return blob.split(b'=', 1)[1].decode(encoding, errors)
@mock.patch("cloudinit.util.load_file")
def test_non_utf8_in_environment(self, m_load_file):
"""env may have non utf-8 decodable content."""
content = self.null.join(
(self.bootflag, self.simple1, self.simple2, self.mixed))
m_load_file.return_value = content
self.assertEqual(
{'BOOTABLE_FLAG': self._val_decoded(self.bootflag),
'HOME': '/', 'PATH': '/bin:/sbin',
'MIXED': self._val_decoded(self.mixed)},
util.get_proc_env(1))
self.assertEqual(1, m_load_file.call_count)
@mock.patch("cloudinit.util.load_file")
def test_encoding_none_returns_bytes(self, m_load_file):
"""encoding none returns bytes."""
lines = (self.bootflag, self.simple1, self.simple2, self.mixed)
content = self.null.join(lines)
m_load_file.return_value = content
self.assertEqual(
dict([t.split(b'=') for t in lines]),
util.get_proc_env(1, encoding=None))
self.assertEqual(1, m_load_file.call_count)
@mock.patch("cloudinit.util.load_file")
def test_all_utf8_encoded(self, m_load_file):
"""common path where only utf-8 decodable content."""
content = self.null.join((self.simple1, self.simple2))
m_load_file.return_value = content
self.assertEqual(
{'HOME': '/', 'PATH': '/bin:/sbin'},
util.get_proc_env(1))
self.assertEqual(1, m_load_file.call_count)
@mock.patch("cloudinit.util.load_file")
def test_non_existing_file_returns_empty_dict(self, m_load_file):
"""as implemented, a non-existing pid returns empty dict.
This is how it was originally implemented."""
m_load_file.side_effect = OSError("File does not exist.")
self.assertEqual({}, util.get_proc_env(1))
self.assertEqual(1, m_load_file.call_count)
def test_get_proc_ppid(self):
"""get_proc_ppid returns correct parent pid value."""
my_pid = os.getpid()
my_ppid = os.getppid()
self.assertEqual(my_ppid, util.get_proc_ppid(my_pid))
class TestKernelVersion():
"""test kernel version function"""
params = [
('5.6.19-300.fc32.x86_64', (5, 6)),
('4.15.0-101-generic', (4, 15)),
('3.10.0-1062.12.1.vz7.131.10', (3, 10)),
('4.18.0-144.el8.x86_64', (4, 18))]
@mock.patch('os.uname')
@pytest.mark.parametrize("uname_release,expected", params)
def test_kernel_version(self, m_uname, uname_release, expected):
m_uname.return_value.release = uname_release
assert expected == util.kernel_version()
class TestFindDevs:
@mock.patch('cloudinit.subp.subp')
def test_find_devs_with(self, m_subp):
m_subp.return_value = (
'/dev/sda1: UUID="some-uuid" TYPE="ext4" PARTUUID="some-partid"',
''
)
devlist = util.find_devs_with()
assert devlist == [
'/dev/sda1: UUID="some-uuid" TYPE="ext4" PARTUUID="some-partid"']
devlist = util.find_devs_with("LABEL_FATBOOT=A_LABEL")
assert devlist == [
'/dev/sda1: UUID="some-uuid" TYPE="ext4" PARTUUID="some-partid"']
@mock.patch('cloudinit.subp.subp')
def test_find_devs_with_openbsd(self, m_subp):
m_subp.return_value = (
'cd0:,sd0:630d98d32b5d3759,sd1:,fd0:', ''
)
devlist = util.find_devs_with_openbsd()
assert devlist == ['/dev/cd0a', '/dev/sd1i']
@mock.patch('cloudinit.subp.subp')
def test_find_devs_with_openbsd_with_criteria(self, m_subp):
m_subp.return_value = (
'cd0:,sd0:630d98d32b5d3759,sd1:,fd0:', ''
)
devlist = util.find_devs_with_openbsd(criteria="TYPE=iso9660")
assert devlist == ['/dev/cd0a']
# lp: #1841466
devlist = util.find_devs_with_openbsd(criteria="LABEL_FATBOOT=A_LABEL")
assert devlist == ['/dev/cd0a', '/dev/sd1i']
@pytest.mark.parametrize(
'criteria,expected_devlist', (
(None, ['/dev/msdosfs/EFISYS', '/dev/iso9660/config-2']),
('TYPE=iso9660', ['/dev/iso9660/config-2']),
('TYPE=vfat', ['/dev/msdosfs/EFISYS']),
('LABEL_FATBOOT=A_LABEL', []), # lp: #1841466
),
)
@mock.patch('glob.glob')
def test_find_devs_with_freebsd(self, m_glob, criteria, expected_devlist):
def fake_glob(pattern):
msdos = ["/dev/msdosfs/EFISYS"]
iso9660 = ["/dev/iso9660/config-2"]
if pattern == "/dev/msdosfs/*":
return msdos
elif pattern == "/dev/iso9660/*":
return iso9660
raise Exception
m_glob.side_effect = fake_glob
devlist = util.find_devs_with_freebsd(criteria=criteria)
assert devlist == expected_devlist
@pytest.mark.parametrize(
'criteria,expected_devlist', (
(None, ['/dev/ld0', '/dev/dk0', '/dev/dk1', '/dev/cd0']),
('TYPE=iso9660', ['/dev/cd0']),
('TYPE=vfat', ["/dev/ld0", "/dev/dk0", "/dev/dk1"]),
('LABEL_FATBOOT=A_LABEL', # lp: #1841466
['/dev/ld0', '/dev/dk0', '/dev/dk1', '/dev/cd0']),
)
)
@mock.patch("cloudinit.subp.subp")
def test_find_devs_with_netbsd(self, m_subp, criteria, expected_devlist):
side_effect_values = [
("ld0 dk0 dk1 cd0", ""),
(
(
"mscdlabel: CDIOREADTOCHEADER: "
"Inappropriate ioctl for device\n"
"track (ctl=4) at sector 0\n"
"disklabel not written\n"
),
"",
),
(
(
"mscdlabel: CDIOREADTOCHEADER: "
"Inappropriate ioctl for device\n"
"track (ctl=4) at sector 0\n"
"disklabel not written\n"
),
"",
),
(
(
"mscdlabel: CDIOREADTOCHEADER: "
"Inappropriate ioctl for device\n"
"track (ctl=4) at sector 0\n"
"disklabel not written\n"
),
"",
),
(
(
"track (ctl=4) at sector 0\n"
'ISO filesystem, label "config-2", '
"creation time: 2020/03/31 17:29\n"
"adding as 'a'\n"
),
"",
),
]
m_subp.side_effect = side_effect_values
devlist = util.find_devs_with_netbsd(criteria=criteria)
assert devlist == expected_devlist
# vi: ts=4 expandtab
|