1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-13 17:18:18 +03:00

test-network: split out wait-online related test case

This commit is contained in:
Yu Watanabe 2022-12-22 16:29:20 +09:00
parent 5432adae82
commit b09ec84700

View File

@ -1145,6 +1145,23 @@ class NetworkdMatchTests(unittest.TestCase, Utilities):
print(output)
self.assertRegex(output, 'Network File: /run/systemd/network/14-match-udev-property')
class WaitOnlineTests(unittest.TestCase, Utilities):
def setUp(self):
setup_common()
def tearDown(self):
tear_down_common()
def test_wait_online_any(self):
copy_network_unit('25-bridge.netdev', '25-bridge.network', '11-dummy.netdev', '11-dummy.network')
start_networkd()
self.wait_online(['bridge99', 'test1:degraded'], bool_any=True)
self.wait_operstate('bridge99', '(off|no-carrier)', setup_state='configuring')
self.wait_operstate('test1', 'degraded')
class NetworkdNetDevTests(unittest.TestCase, Utilities):
def setUp(self):
@ -1163,15 +1180,6 @@ class NetworkdNetDevTests(unittest.TestCase, Utilities):
print(output)
self.assertRegex(output, '00:50:56:c0:00:28')
def test_wait_online_any(self):
copy_network_unit('25-bridge.netdev', '25-bridge.network', '11-dummy.netdev', '11-dummy.network')
start_networkd()
self.wait_online(['bridge99', 'test1:degraded'], bool_any=True)
self.wait_operstate('bridge99', '(off|no-carrier)', setup_state='configuring')
self.wait_operstate('test1', 'degraded')
@expectedFailureIfModuleIsNotAvailable('bareudp')
def test_bareudp(self):
copy_network_unit('25-bareudp.netdev', '26-netdev-link-local-addressing-yes.network')