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
|
#!/usr/bin/python3
# Closed-box tests of netplan CLI. These are run during "make check" and don't
# touch the system configuration at all.
#
# Copyright (C) 2023 Canonical, Ltd.
# Authors: Lukas Märdian <slyon@ubuntu.com>
# Danilo Egea Gondolfo <danilo.egea.gondolfo@canonical.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import copy
import json
import os
import shutil
import subprocess
import tempfile
import unittest
from unittest.mock import call, mock_open, patch
import yaml
from netplan_cli.cli.state import (Interface, NetplanConfigState,
SystemConfigState)
from .test_status import (BRIDGE, DNS_ADDRESSES, DNS_IP4, DNS_SEARCH, FAKE_DEV,
IPROUTE2, NETWORKD, NMCLI, ROUTE4, ROUTE6)
class TestSystemState(unittest.TestCase):
'''Test netplan state module'''
def setUp(self):
self.maxDiff = None
@patch('subprocess.check_output')
def test_query_iproute2(self, mock):
mock.return_value = IPROUTE2
res = SystemConfigState.query_iproute2()
mock.assert_called_with(['ip', '-d', '-j', 'addr'], text=True)
self.assertEqual(len(res), 7)
self.assertListEqual([itf.get('ifname') for itf in res],
['lo', 'enp0s31f6', 'wlan0', 'wg0', 'wwan0', 'tun0', 'tun1'])
@patch('subprocess.check_output')
def test_query_iproute2_fail(self, mock):
mock.side_effect = subprocess.CalledProcessError(1, '', 'ERR')
with self.assertLogs() as cm:
res = SystemConfigState.query_iproute2()
mock.assert_called_with(['ip', '-d', '-j', 'addr'], text=True)
self.assertIsNone(res)
self.assertIn('CRITICAL:root:Cannot query iproute2 interface data:', cm.output[0])
@patch('subprocess.check_output')
def test_query_networkd(self, mock):
mock.return_value = NETWORKD
res = SystemConfigState.query_networkd()
mock.assert_called_with(['networkctl', '--json=short'], text=True)
self.assertEqual(len(res), 10)
self.assertListEqual([itf.get('Name') for itf in res],
['lo', 'enp0s31f6', 'wlan0', 'wg0', 'wwan0', 'tun0', 'mybr0', 'mybond0', 'myvrf0', 'tun1'])
@patch('subprocess.check_output')
def test_query_networkd_fail(self, mock):
mock.side_effect = subprocess.CalledProcessError(1, '', 'ERR')
with self.assertLogs() as cm:
res = SystemConfigState.query_networkd()
mock.assert_called_with(['networkctl', '--json=short'], text=True)
self.assertIsNone(res)
self.assertIn('CRITICAL:root:Cannot query networkd interface data:', cm.output[0])
@patch('subprocess.check_output')
def test_query_nm(self, mock):
mock.return_value = NMCLI
res = SystemConfigState.query_nm()
mock.assert_called_with(['nmcli', '-t', '-f',
'DEVICE,NAME,UUID,FILENAME,TYPE,AUTOCONNECT',
'con', 'show'], text=True)
self.assertEqual(len(res), 2)
self.assertListEqual([itf.get('device') for itf in res], ['wlan0', 'wlan1'])
@patch('subprocess.check_output')
def test_query_nm_fail(self, mock):
mock.side_effect = subprocess.CalledProcessError(1, '', 'ERR')
with self.assertLogs(level='DEBUG') as cm:
res = SystemConfigState.query_nm()
mock.assert_called_with(['nmcli', '-t', '-f',
'DEVICE,NAME,UUID,FILENAME,TYPE,AUTOCONNECT',
'con', 'show'], text=True)
self.assertIsNone(res)
self.assertIn('DEBUG:root:Cannot query NetworkManager interface data:', cm.output[0])
@patch('subprocess.check_output')
def test_query_routes(self, mock):
mock.side_effect = [ROUTE4, ROUTE6]
res4, res6 = SystemConfigState.query_routes()
mock.assert_has_calls([
call(['ip', '-d', '-j', '-4', 'route', 'show', 'table', 'all'], text=True),
call(['ip', '-d', '-j', '-6', 'route', 'show', 'table', 'all'], text=True),
])
self.assertEqual(len(res4), 7)
self.assertListEqual([route.get('dev') for route in res4],
['enp0s31f6', 'wlan0', 'wg0', 'enp0s31f6', 'wlan0', 'enp0s31f6', 'enp0s31f6'])
self.assertEqual(len(res6), 10)
self.assertListEqual([route.get('dev') for route in res6],
['lo', 'enp0s31f6', 'wlan0', 'enp0s31f6', 'wlan0',
'tun0', 'enp0s31f6', 'wlan0', 'enp0s31f6', 'wlan0'])
@patch('subprocess.check_output')
def test_query_routes_fail(self, mock):
mock.side_effect = subprocess.CalledProcessError(1, '', 'ERR')
with self.assertLogs(level='DEBUG') as cm:
res4, res6 = SystemConfigState.query_routes()
mock.assert_called_with(['ip', '-d', '-j', '-4', 'route', 'show', 'table', 'all'], text=True)
self.assertIsNone(res4)
self.assertIsNone(res6)
self.assertIn('DEBUG:root:Cannot query iproute2 route data:', cm.output[0])
@patch('subprocess.check_output')
def test_query_resolved(self, mock_busctl):
mock_busctl.return_value = '''{"data":[{
"DNS": {
"type": "a(iiay)",
"data": '''+json.dumps(DNS_ADDRESSES)+'''
},
"Domains": {
"type": "a(isb)",
"data": '''+json.dumps(DNS_SEARCH)+'''
}}]}'''
addresses, search = SystemConfigState.query_resolved()
self.assertEqual(len(addresses), 4)
self.assertListEqual([addr[0] for addr in addresses],
[5, 5, 2, 2]) # interface index
self.assertEqual(len(search), 2)
self.assertListEqual([s[1] for s in search],
['search.domain', 'search.domain'])
@patch('subprocess.check_output')
def test_query_resolved_fail(self, mock_busctl):
mock_busctl.return_value = '{"data":[{"DNS":{"type":"invalid","data":"garbage"}}]}'
with self.assertLogs(level='DEBUG') as cm:
addresses, search = SystemConfigState.query_resolved()
self.assertIsNone(addresses)
self.assertIsNone(search)
self.assertIn('DEBUG:root:Cannot query resolved DNS data: DNS address type doesn\'t match', cm.output[0])
@patch('shutil.which')
def test_query_resolved_fail_missing_busctl(self, mock):
mock.return_value = None
with self.assertLogs(level='DEBUG') as cm:
addresses, search = SystemConfigState.query_resolved()
self.assertIsNone(addresses)
self.assertIsNone(search)
self.assertIn('DEBUG:root:Cannot query resolved DNS data: missing busctl utility', cm.output[0])
def test_query_resolvconf(self):
with patch('builtins.open', mock_open(read_data='''\
nameserver 1.1.1.1
nameserver 8.8.8.8
options edns0 trust-ad
search some.domain
search search.domain another.one
''')):
res = SystemConfigState.resolvconf_json()
print(res)
self.assertListEqual(res.get('addresses'), ['1.1.1.1', '8.8.8.8'])
self.assertListEqual(res.get('search'), ['search.domain', 'another.one'])
self.assertEqual(res.get('mode'), None)
def test_query_resolvconf_stub(self):
with patch('builtins.open', mock_open(read_data='\
# This is /run/systemd/resolve/stub-resolv.conf managed by man:systemd-resolved(8).')):
res = SystemConfigState.resolvconf_json()
self.assertEqual(res.get('mode'), 'stub')
def test_query_resolvconf_compat(self):
with patch('builtins.open', mock_open(read_data='\
# This is /run/systemd/resolve/resolv.conf managed by man:systemd-resolved(8).')):
res = SystemConfigState.resolvconf_json()
self.assertEqual(res.get('mode'), 'compat')
def test_query_resolvconf_fail(self):
with self.assertLogs() as cm:
with patch('builtins.open', mock_open(read_data='')) as mock_file:
mock_file.side_effect = Exception(1, '', 'ERR')
SystemConfigState.resolvconf_json()
self.assertIn('WARNING:root:Cannot parse /etc/resolv.conf:', cm.output[0])
def test_query_online_state_online(self):
dev = copy.deepcopy(FAKE_DEV)
dev['addr_info'] = [{
'local': '192.168.0.100',
'prefixlen': 24,
}]
dev['flags'].append('UP')
dev['operstate'] = 'UP'
routes = [{
'dst': 'default',
'gateway': '192.168.0.1',
'dev': dev['ifname'],
}]
dns = [(FAKE_DEV['ifindex'], 2, DNS_IP4)]
res = SystemConfigState.query_online_state([Interface(dev, [], [], (dns, None), (routes, None))])
self.assertTrue(res)
def test_query_online_state_offline(self):
res = SystemConfigState.query_online_state([Interface(FAKE_DEV, [])])
self.assertFalse(res)
@patch('netplan_cli.cli.utils.systemctl')
@patch('netplan_cli.cli.state.SystemConfigState.query_members')
@patch('netplan_cli.cli.state.SystemConfigState.query_iproute2')
@patch('netplan_cli.cli.state.SystemConfigState.query_networkd')
@patch('netplan_cli.cli.state.SystemConfigState.query_nm')
@patch('netplan_cli.cli.state.SystemConfigState.query_routes')
@patch('netplan_cli.cli.state.SystemConfigState.query_resolved')
@patch('netplan_cli.cli.state.SystemConfigState.resolvconf_json')
@patch('netplan_cli.cli.state.SystemConfigState.query_online_state')
def test_system_state_config_data_interfaces(self, online_mock, resolvconf_mock, rd_mock,
routes_mock, nm_mock, networkd_mock, iproute2_mock,
members_mock, systemctl_mock):
systemctl_mock.return_value = None
members_mock.return_value = []
iproute2_mock.return_value = [FAKE_DEV, BRIDGE]
nm_mock.return_value = []
routes_mock.return_value = (None, None)
rd_mock.return_value = (None, None)
resolvconf_mock.return_value = {'addresses': [], 'search': [], 'mode': None}
online_mock.return_value = False
networkd_mock.return_value = SystemConfigState.process_networkd(NETWORKD)
state = SystemConfigState()
self.assertIn('fakedev0', [iface.name for iface in state.interface_list])
@patch('subprocess.check_output')
def test_query_members(self, mock):
mock.return_value = '[{"ifname":"eth0"}, {"ifname":"eth1"}]'
members = SystemConfigState.query_members('mybr0')
mock.assert_has_calls([
call(['ip', '-d', '-j', 'link', 'show', 'master', 'mybr0'], text=True), # wokeignore:rule=master
])
self.assertListEqual(members, ['eth0', 'eth1'])
@patch('subprocess.check_output')
def test_query_members_fail(self, mock):
mock.side_effect = subprocess.CalledProcessError(1, '', 'ERR')
with self.assertLogs(level='WARNING') as cm:
bridge = SystemConfigState.query_members('mybr0')
mock.assert_has_calls([
call(['ip', '-d', '-j', 'link', 'show', 'master', 'mybr0'], text=True), # wokeignore:rule=master
])
self.assertListEqual(bridge, [])
self.assertIn('WARNING:root:Cannot query bridge:', cm.output[0])
@patch('netplan_cli.cli.state.SystemConfigState.query_members')
def test_correlate_members_and_uplink_bridge(self, mock):
mock.side_effect = lambda _: ['eth0', 'eth1']
interface1 = Interface({'ifname': 'eth0'})
interface1.nd = {'Type': 'ether'}
interface2 = Interface({'ifname': 'eth1'})
interface2.nd = {'Type': 'ether'}
interface3 = Interface({'ifname': 'br0'})
interface3.nd = {'Type': 'bridge'}
SystemConfigState.correlate_members_and_uplink([interface1, interface2, interface3])
self.assertEqual(interface1.bridge, 'br0')
self.assertEqual(interface2.bridge, 'br0')
self.assertListEqual(interface3.members, ['eth0', 'eth1'])
@patch('netplan_cli.cli.state.SystemConfigState.query_members')
def test_correlate_members_and_uplink_bond(self, mock):
mock.side_effect = lambda _: ['eth2', 'eth3']
interface1 = Interface({'ifname': 'eth2'})
interface1.nd = {'Type': 'ether'}
interface2 = Interface({'ifname': 'eth3'})
interface2.nd = {'Type': 'ether'}
interface3 = Interface({'ifname': 'bond0'})
interface3.nd = {'Type': 'bond'}
SystemConfigState.correlate_members_and_uplink([interface1, interface2, interface3])
self.assertEqual(interface1.bond, 'bond0')
self.assertEqual(interface2.bond, 'bond0')
self.assertListEqual(interface3.members, ['eth2', 'eth3'])
@patch('netplan_cli.cli.state.SystemConfigState.query_members')
def test_correlate_members_and_uplink_vrf(self, mock):
mock.side_effect = lambda _: ['eth2', 'eth3']
interface1 = Interface({'ifname': 'eth2'})
interface1.nd = {'Type': 'ether'}
interface2 = Interface({'ifname': 'eth3'})
interface2.nd = {'Type': 'ether'}
interface3 = Interface({'ifname': 'vrf0'})
interface3.nd = {'Type': 'ether', 'Kind': 'vrf'}
SystemConfigState.correlate_members_and_uplink([interface1, interface2, interface3])
self.assertEqual(interface1.vrf, 'vrf0')
self.assertEqual(interface2.vrf, 'vrf0')
self.assertListEqual(interface3.members, ['eth2', 'eth3'])
class TestNetplanState(unittest.TestCase):
'''Test netplan state NetplanConfigState class'''
def setUp(self):
self.workdir = tempfile.TemporaryDirectory(prefix='netplan_')
self.file = '70-netplan-set.yaml'
self.path = os.path.join(self.workdir.name, 'etc', 'netplan', self.file)
os.makedirs(os.path.join(self.workdir.name, 'etc', 'netplan'))
with open(self.path, "w") as f:
f.write('''network:
ethernets:
eth0:
dhcp4: true
bridges:
br0:
dhcp4: true''')
def tearDown(self):
shutil.rmtree(self.workdir.name)
def test_get_data(self):
state = NetplanConfigState(rootdir=self.workdir.name)
state_data = state.get_data()
self.assertIn('eth0', state_data.get('network').get('ethernets'))
self.assertIn('br0', state_data.get('network').get('bridges'))
def test_get_data_subtree(self):
state = NetplanConfigState(subtree='ethernets', rootdir=self.workdir.name)
state_data = state.get_data()
self.assertIn('eth0', state_data)
self.assertNotIn('br0', state_data)
class TestInterface(unittest.TestCase):
'''Test netplan state Interface class'''
@patch('subprocess.check_output')
def test_query_nm_ssid(self, mock):
mock.return_value = ' MYSSID ' # added some whitespace to strip()
con = 'SOME_CONNECTION_ID'
itf = Interface(FAKE_DEV, [])
res = itf.query_nm_ssid(con)
mock.assert_called_with(['nmcli', '--get-values', '802-11-wireless.ssid',
'con', 'show', 'id', con],
text=True)
self.assertEqual(res, 'MYSSID')
@patch('subprocess.check_output')
def test_query_nm_ssid_fail(self, mock):
mock.side_effect = subprocess.CalledProcessError(1, '', 'ERR')
con = 'SOME_CONNECTION_ID'
itf = Interface(FAKE_DEV, [])
with self.assertLogs() as cm:
res = itf.query_nm_ssid(con)
mock.assert_called_with(['nmcli', '--get-values', '802-11-wireless.ssid',
'con', 'show', 'id', con],
text=True)
self.assertIsNone(res)
self.assertIn('WARNING:root:Cannot query NetworkManager SSID for {}:'.format(con), cm.output[0])
@patch('subprocess.check_output')
def test_query_networkctl(self, mock):
mock.return_value = 'DOES NOT MATTER'
dev = 'fakedev0'
itf = Interface(FAKE_DEV, [])
res = itf.query_networkctl(dev)
mock.assert_called_with(['networkctl', 'status', '--', dev], text=True)
self.assertEqual(res, mock.return_value)
@patch('subprocess.check_output')
def test_query_networkctl_fail(self, mock):
mock.side_effect = subprocess.CalledProcessError(1, '', 'ERR')
dev = 'fakedev0'
itf = Interface(FAKE_DEV, [])
with self.assertLogs() as cm:
res = itf.query_networkctl(dev)
mock.assert_called_with(['networkctl', 'status', '--', dev], text=True)
self.assertIsNone(res)
self.assertIn('WARNING:root:Cannot query networkctl for {}:'.format(dev), cm.output[0])
@patch('netplan_cli.cli.state.Interface.query_nm_ssid')
@patch('netplan_cli.cli.state.Interface.query_networkctl')
def test_json_nm_wlan0(self, networkctl_mock, nm_ssid_mock):
SSID = 'MYCON'
nm_ssid_mock.return_value = SSID
# networkctl mock output reduced to relevant lines
networkctl_mock.return_value = \
'WiFi access point: {} (b4:fb:e4:75:c6:21)'.format(SSID)
data = next((itf for itf in yaml.safe_load(IPROUTE2) if itf['ifindex'] == 5), {})
nd = SystemConfigState.process_networkd(NETWORKD)
nm = SystemConfigState.process_nm(NMCLI)
dns = (DNS_ADDRESSES, DNS_SEARCH)
routes = (SystemConfigState.process_generic(ROUTE4), SystemConfigState.process_generic(ROUTE6))
itf = Interface(data, nd, nm, dns, routes)
self.assertTrue(itf.up)
self.assertFalse(itf.down)
ifname, json = itf.json()
self.assertEqual(ifname, 'wlan0')
self.assertEqual(json.get('index'), 5)
self.assertEqual(json.get('macaddress'), '1c:4d:70:e4:e4:0e')
self.assertEqual(json.get('type'), 'wifi')
self.assertEqual(json.get('ssid'), 'MYCON')
self.assertEqual(json.get('backend'), 'NetworkManager')
self.assertEqual(json.get('id'), 'NM-b6b7a21d-186e-45e1-b3a6-636da1735563')
self.assertEqual(json.get('vendor'), 'Intel Corporation')
self.assertEqual(json.get('adminstate'), 'UP')
self.assertEqual(json.get('operstate'), 'UP')
self.assertEqual(len(json.get('addresses')), 4)
self.assertEqual(len(json.get('dns_addresses')), 2)
self.assertEqual(len(json.get('dns_search')), 1)
self.assertEqual(len(json.get('routes')), 6)
@patch('netplan_cli.cli.state.Interface.query_nm_ssid')
@patch('netplan_cli.cli.state.Interface.query_networkctl')
def test_json_nm_wlan0_2(self, networkctl_mock, nm_ssid_mock):
SSID = 'MYCON'
nm_ssid_mock.return_value = SSID
# networkctl mock output reduced to relevant lines
# Newer versions of systemd changed WiFi to Wi-Fi
# See systemd commit 8fff78a1dded105e1ee87bc66e29ef2fd61bf8c9
networkctl_mock.return_value = \
'Wi-Fi access point: {} (b4:fb:e4:75:c6:21)'.format(SSID)
data = next((itf for itf in yaml.safe_load(IPROUTE2) if itf['ifindex'] == 5), {})
nd = SystemConfigState.process_networkd(NETWORKD)
nm = SystemConfigState.process_nm(NMCLI)
dns = (DNS_ADDRESSES, DNS_SEARCH)
routes = (SystemConfigState.process_generic(ROUTE4), SystemConfigState.process_generic(ROUTE6))
itf = Interface(data, nd, nm, dns, routes)
_, json = itf.json()
self.assertEqual(json.get('ssid'), 'MYCON')
@patch('netplan_cli.cli.state.Interface.query_nm_ssid')
@patch('netplan_cli.cli.state.Interface.query_networkctl')
def test_json_nd_wlan1_non_ascii(self, networkctl_mock, nm_ssid_mock):
ND_SSID = '\\303\\241\\303\\251\\303\\255\\303\\263\\303\\272\\302\\242\\302\\242\\302\\242\\302\\243\\302\\243\\302\\243'
NM_SSID = 'áéíóú¢¢¢£££'
nm_ssid_mock.return_value = NM_SSID
# networkctl mock output reduced to relevant lines
# Newer versions of systemd changed WiFi to Wi-Fi
# See systemd commit 8fff78a1dded105e1ee87bc66e29ef2fd61bf8c9
networkctl_mock.return_value = \
'Wi-Fi access point: {} (b4:fb:e4:75:c6:21)'.format(ND_SSID)
data = {'ifname': 'wlan1', 'ifindex': 123}
nd = [{'Index': 123, 'Type': 'wlan', 'Name': 'wlan1', 'SetupState': 'managed',
'NetworkFile': '/run/systemd/network/10-netplan-wlan1.network'}]
nm = SystemConfigState.process_nm(NMCLI)
itf = Interface(data, nd, nm, (None, None), (None, None))
_, json = itf.json()
self.assertEqual(json.get('ssid'), NM_SSID)
@patch('netplan_cli.cli.state.Interface.query_nm_ssid')
def test_json_nm_wlan1_non_ascii(self, nm_ssid_mock):
NM_SSID = 'áéíóú¢¢¢£££'
nm_ssid_mock.return_value = NM_SSID
data = {'ifname': 'wlan1', 'ifindex': 123}
nd = [{'Index': 123, 'Type': 'wlan', 'Name': 'wlan1', 'SetupState': 'unmanaged'}]
nm = SystemConfigState.process_nm(NMCLI)
itf = Interface(data, nd, nm, (None, None), (None, None))
_, json = itf.json()
self.assertEqual(json.get('ssid'), NM_SSID)
@patch('netplan_cli.cli.state.Interface.query_networkctl')
def test_json_nd_enp0s31f6(self, networkctl_mock):
# networkctl mock output reduced to relevant lines
networkctl_mock.return_value = 'Activation Policy: manual'
data = next((itf for itf in yaml.safe_load(IPROUTE2) if itf['ifindex'] == 2), {})
nd = SystemConfigState.process_networkd(NETWORKD)
nm = SystemConfigState.process_nm(NMCLI)
dns = (DNS_ADDRESSES, DNS_SEARCH)
routes = (SystemConfigState.process_generic(ROUTE4), SystemConfigState.process_generic(ROUTE6))
itf = Interface(data, nd, nm, dns, routes)
self.assertTrue(itf.up)
self.assertFalse(itf.down)
ifname, json = itf.json()
self.assertEqual(ifname, 'enp0s31f6')
self.assertEqual(json.get('index'), 2)
self.assertEqual(json.get('macaddress'), '54:e1:ad:5f:24:b4')
self.assertEqual(json.get('type'), 'ethernet')
self.assertEqual(json.get('backend'), 'networkd')
self.assertEqual(json.get('id'), 'enp0s31f6')
self.assertEqual(json.get('vendor'), 'Intel Corporation')
self.assertEqual(json.get('adminstate'), 'UP')
self.assertEqual(json.get('operstate'), 'UP')
self.assertEqual(json.get('activation_mode'), 'manual')
self.assertEqual(len(json.get('addresses')), 3)
_, meta = list(json.get('addresses')[0].items())[0] # get first (any only) address
self.assertIn('dhcp', meta.get('flags'))
self.assertEqual(len(json.get('dns_addresses')), 2)
self.assertEqual(len(json.get('dns_search')), 1)
self.assertEqual(len(json.get('routes')), 8)
def test_json_nd_tunnel(self):
data = next((itf for itf in yaml.safe_load(IPROUTE2) if itf['ifindex'] == 41), {})
nd = SystemConfigState.process_networkd(NETWORKD)
itf = Interface(data, nd, [], (None, None), (None, None))
ifname, json = itf.json()
self.assertEqual(ifname, 'wg0')
self.assertEqual(json.get('index'), 41)
self.assertEqual(json.get('type'), 'tunnel')
self.assertEqual(json.get('backend'), 'networkd')
self.assertEqual(json.get('tunnel_mode'), 'wireguard')
def test_json_no_type_id_backend(self):
itf = Interface(FAKE_DEV, [], [], (None, None), (None, None))
ifname, json = itf.json()
self.assertEqual(ifname, 'fakedev0')
self.assertEqual(json.get('index'), 42)
self.assertNotIn('type', json)
self.assertNotIn('id', json)
self.assertNotIn('backend', json)
def test_find_data_sources(self):
nd_data = [{
'Index': 42,
'DNS': [
{
'Address': [192, 168, 0, 1],
'ConfigSource': 'DHCPv4',
},
{
'Address': [0xab, 0xcd, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x12, 0x34],
'ConfigSource': 'DHCPv6',
},
],
'SearchDomains': [
{
'Domain': 'mydomain.local',
'ConfigSource': 'DHCPv6',
},
],
'Addresses': [
{
'Address': [192, 168, 0, 254],
'PrefixLength': 24,
'ConfigSource': 'DHCPv4',
},
{
'Address': [0xab, 0xcd, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x56, 0x78],
'PrefixLength': 64,
'ConfigSource': 'DHCPv6',
},
],
}]
fake_dev = {
'ifindex': 42,
'ifname': 'fakedev0',
'flags': [],
'operstate': 'DOWN',
'addr_info': [
{
'local': '192.168.0.254',
'prefixlen': 24,
'dynamic': True
},
{
'local': 'abcd::5678',
'prefixlen': 64,
'dynamic': True
}
]
}
itf = Interface(fake_dev, nd_data, [], (None, None), (None, None))
expected = {
'dns': {
'192.168.0.1': 'DHCPv4',
'abcd::1234': 'DHCPv6'
},
'search': {
'mydomain.local': 'DHCPv6'
},
'addresses': {
'192.168.0.254/24': 'DHCPv4',
'abcd::5678/64': 'DHCPv6'}
}
self.assertDictEqual(expected, itf.data_sources)
|