mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
test-network: add tests for Token= in [IPv6Prefix]
This commit is contained in:
@@ -14,6 +14,8 @@ Prefix=2001:db8:0:1::/64
|
||||
[IPv6Prefix]
|
||||
Prefix=2001:db8:0:2::/64
|
||||
Assign=yes
|
||||
Token=::1a:2b:3c:4d
|
||||
Token=static:::fa:de:ca:fe
|
||||
|
||||
[IPv6Prefix]
|
||||
Prefix=2001:db8:0:3::/64
|
||||
|
||||
@@ -4895,7 +4895,8 @@ class NetworkdIPv6PrefixTests(unittest.TestCase, Utilities):
|
||||
output = check_output('ip address show dev veth99')
|
||||
print(output)
|
||||
self.assertNotIn('inet6 2001:db8:0:1:', output)
|
||||
self.assertIn('inet6 2001:db8:0:2:', output)
|
||||
self.assertIn('inet6 2001:db8:0:2:1a:2b:3c:4d', output)
|
||||
self.assertIn('inet6 2001:db8:0:2:fa:de:ca:fe', output)
|
||||
self.assertNotIn('inet6 2001:db8:0:3:', output)
|
||||
|
||||
output = check_output(*resolvectl_cmd, 'dns', 'veth-peer', env=env)
|
||||
|
||||
Reference in New Issue
Block a user