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
|
# This file is part of cloud-init. See LICENSE file for license information.
"""Tests for cloudinit.temp_utils"""
import os
from tempfile import gettempdir
import pytest
from cloudinit.temp_utils import mkdtemp, mkstemp, tempdir
from tests.unittests.helpers import wrap_and_call
class TestTempUtils:
prefix = gettempdir()
def test_mkdtemp_default_non_root(self):
"""mkdtemp creates a dir under /tmp for the unprivileged."""
calls = []
def fake_mkdtemp(*args, **kwargs):
calls.append(kwargs)
return "/fake/return/path"
retval = wrap_and_call(
"cloudinit.temp_utils",
{
"os.getuid": 1000,
"tempfile.mkdtemp": {"side_effect": fake_mkdtemp},
"os.path.isdir": True,
},
mkdtemp,
)
assert "/fake/return/path" == retval
assert [{"dir": self.prefix}] == calls
def test_mkdtemp_default_non_root_needs_exe(self):
"""mkdtemp creates a dir under /var/tmp/cloud-init when needs_exe."""
calls = []
def fake_mkdtemp(*args, **kwargs):
calls.append(kwargs)
return "/fake/return/path"
retval = wrap_and_call(
"cloudinit.temp_utils",
{
"os.getuid": 1000,
"tempfile.mkdtemp": {"side_effect": fake_mkdtemp},
"os.path.isdir": True,
"util.has_mount_opt": True,
},
mkdtemp,
needs_exe=True,
)
assert "/fake/return/path" == retval
assert [{"dir": "/var/tmp/cloud-init"}] == calls
def test_mkdtemp_default_root(self):
"""mkdtemp creates a dir under /run/cloud-init for the privileged."""
calls = []
def fake_mkdtemp(*args, **kwargs):
calls.append(kwargs)
return "/fake/return/path"
retval = wrap_and_call(
"cloudinit.temp_utils",
{
"os.getuid": 0,
"tempfile.mkdtemp": {"side_effect": fake_mkdtemp},
"os.path.isdir": True,
},
mkdtemp,
)
assert "/fake/return/path" == retval
assert [{"dir": "/run/cloud-init/tmp"}] == calls
def test_mkstemp_default_non_root(self):
"""mkstemp creates secure tempfile under /tmp for the unprivileged."""
calls = []
def fake_mkstemp(*args, **kwargs):
calls.append(kwargs)
return "/fake/return/path"
retval = wrap_and_call(
"cloudinit.temp_utils",
{
"os.getuid": 1000,
"tempfile.mkstemp": {"side_effect": fake_mkstemp},
"os.path.isdir": True,
},
mkstemp,
)
assert "/fake/return/path" == retval
assert [{"dir": self.prefix}] == calls
def test_mkstemp_default_root(self):
"""mkstemp creates a secure tempfile in /run/cloud-init for root."""
calls = []
def fake_mkstemp(*args, **kwargs):
calls.append(kwargs)
return "/fake/return/path"
retval = wrap_and_call(
"cloudinit.temp_utils",
{
"os.getuid": 0,
"tempfile.mkstemp": {"side_effect": fake_mkstemp},
"os.path.isdir": True,
},
mkstemp,
)
assert "/fake/return/path" == retval
assert [{"dir": "/run/cloud-init/tmp"}] == calls
def test_tempdir_error_suppression(self):
"""test tempdir suppresses errors during directory removal."""
with pytest.raises(OSError):
with tempdir(prefix="cloud-init-dhcp-") as tdir:
os.rmdir(tdir)
# As a result, the directory is already gone,
# so shutil.rmtree should raise OSError
with tempdir(
rmtree_ignore_errors=True, prefix="cloud-init-dhcp-"
) as tdir:
os.rmdir(tdir)
# Since the directory is already gone, shutil.rmtree would raise
# OSError, but we suppress that
|