blob: 775f37ac948573fa98349b9bef6851013d77b976 (
plain)
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
|
# This file is part of cloud-init. See LICENSE file for license information.
from . import _get_distro
from cloudinit import util
from cloudinit.tests.helpers import mock
from cloudinit.tests.helpers import CiTestCase
SYSTEM_INFO = {
'paths': {
'cloud_dir': '/var/lib/cloud/',
'templates_dir': '/etc/cloud/templates/',
},
'network': {'renderers': 'networkd'},
}
class TestPhoton(CiTestCase):
with_logs = True
distro = _get_distro('photon', SYSTEM_INFO)
expected_log_line = 'Rely on PhotonOS default network config'
def test_network_renderer(self):
self.assertEqual(self.distro._cfg['network']['renderers'], 'networkd')
def test_get_distro(self):
self.assertEqual(self.distro.osfamily, 'photon')
def test_write_hostname(self):
hostname = 'myhostname'
hostfile = self.tmp_path('hostfile')
self.distro._write_hostname(hostname, hostfile)
self.assertEqual(hostname + '\n', util.load_file(hostfile))
@mock.patch('cloudinit.net.generate_fallback_config')
def test_fallback_netcfg(self, m_fallback_cfg):
key = 'disable_fallback_netcfg'
# Don't use fallback if no setting given
self.logs.truncate(0)
assert(self.distro.generate_fallback_config() is None)
self.assertIn(self.expected_log_line, self.logs.getvalue())
self.logs.truncate(0)
self.distro._cfg[key] = True
assert(self.distro.generate_fallback_config() is None)
self.assertIn(self.expected_log_line, self.logs.getvalue())
self.logs.truncate(0)
self.distro._cfg[key] = False
assert(self.distro.generate_fallback_config() is not None)
self.assertNotIn(self.expected_log_line, self.logs.getvalue())
|