Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: pytestify "tests/unittests/config/test_cc_timezone.py" #5885

Merged
merged 7 commits into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 5 additions & 16 deletions tests/unittests/config/test_cc_timezone.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,46 +5,35 @@
# This file is part of cloud-init. See LICENSE file for license information.

import logging
import shutil
import tempfile
from io import BytesIO

from configobj import ConfigObj

from cloudinit import util
from cloudinit.config import cc_timezone
from tests.unittests import helpers as t_help
from tests.unittests.util import get_cloud

LOG = logging.getLogger(__name__)


class TestTimezone(t_help.FilesystemMockingTestCase):
def setUp(self):
super(TestTimezone, self).setUp()
self.new_root = tempfile.mkdtemp()
self.addCleanup(shutil.rmtree, self.new_root)
self.patchUtils(self.new_root)
self.patchOS(self.new_root)

def test_set_timezone_sles(self):
class TestTimezone:

def test_set_timezone_sles(self, fake_filesystem):
cfg = {
"timezone": "Tatooine/Bestine",
}
cc = get_cloud("sles")

# Create a dummy timezone file
dummy_contents = "0123456789abcdefgh"
util.write_file(
"/usr/share/zoneinfo/%s" % cfg["timezone"], dummy_contents
holmanb marked this conversation as resolved.
Show resolved Hide resolved
)

cc_timezone.handle("cc_timezone", cfg, cc, [])

contents = util.load_binary_file("/etc/sysconfig/clock")
n_cfg = ConfigObj(BytesIO(contents))
self.assertEqual({"TIMEZONE": cfg["timezone"]}, dict(n_cfg))

assert {"TIMEZONE": cfg["timezone"]} == dict(n_cfg)

contents = util.load_text_file("/etc/localtime")
self.assertEqual(dummy_contents, contents.strip())
assert dummy_contents == contents.strip()