mirror of
https://github.com/systemd/systemd.git
synced 2024-12-23 21:35:11 +03:00
test-network: add test for WireGuard.PrivateKeyFile=
This commit is contained in:
parent
76df77794a
commit
39bcff3bca
@ -7,7 +7,9 @@ Description=For issue #11404
|
||||
[WireGuard]
|
||||
# 51820 is common port for Wireguard, 4500 is IPSec/UDP
|
||||
ListenPort=4500
|
||||
PrivateKey=CJQUtcS9emY2fLYqDlpSZiE/QJyHkPWr+WHtZLZ90FU=
|
||||
# The key below should be overridden by PrivateKeyFile=
|
||||
PrivateKey=EEGlnEPYJV//kbvvIqxKkQwOiS+UENyPncC4bF46ong=
|
||||
PrivateKeyFile=/run/systemd/network/25-wireguard-private-key.txt
|
||||
|
||||
# peer 1
|
||||
[WireGuardPeer]
|
||||
|
6
test/test-network/conf/25-wireguard-private-key.txt
Normal file
6
test/test-network/conf/25-wireguard-private-key.txt
Normal file
@ -0,0 +1,6 @@
|
||||
CJQUtcS9emY2fLY
|
||||
qDlpSZiE/QJyHkP
|
||||
Wr+WHtZ
|
||||
|
||||
|
||||
LZ90FU=
|
@ -4,6 +4,7 @@ Kind=wireguard
|
||||
|
||||
[WireGuard]
|
||||
PrivateKey=EEGlnEPYJV//kbvvIqxKkQwOiS+UENyPncC4bF46ong=
|
||||
PrivateKeyFile=/run/systemd/network/not-exist
|
||||
ListenPort=51820
|
||||
FwMark=1234
|
||||
|
||||
|
@ -242,6 +242,7 @@ class NetworkdNetDevTests(unittest.TestCase, Utilities):
|
||||
'25-vxlan.netdev',
|
||||
'25-wireguard-23-peers.netdev',
|
||||
'25-wireguard-23-peers.network',
|
||||
'25-wireguard-private-key.txt',
|
||||
'25-wireguard.netdev',
|
||||
'6rd.network',
|
||||
'gre.network',
|
||||
@ -454,16 +455,21 @@ class NetworkdNetDevTests(unittest.TestCase, Utilities):
|
||||
self.assertTrue(output, 'RDf+LSpeEre7YEIKaxg+wbpsNV7du+ktR99uBEtIiCA=\t20')
|
||||
output = subprocess.check_output(['wg', 'show', 'wg99', 'endpoints']).rstrip().decode('utf-8')
|
||||
self.assertTrue(output, 'RDf+LSpeEre7YEIKaxg+wbpsNV7du+ktR99uBEtIiCA=\t192.168.27.3:51820')
|
||||
output = subprocess.check_output(['wg', 'show', 'wg99', 'private-key']).rstrip().decode('utf-8')
|
||||
self.assertTrue(output, 'EEGlnEPYJV//kbvvIqxKkQwOiS+UENyPncC4bF46ong=')
|
||||
|
||||
self.assertTrue(self.link_exits('wg99'))
|
||||
|
||||
@expectedFailureIfModuleIsNotAvailable('wireguard')
|
||||
def test_wireguard_23_peers(self):
|
||||
self.copy_unit_to_networkd_unit_path('25-wireguard-23-peers.netdev', '25-wireguard-23-peers.network')
|
||||
self.copy_unit_to_networkd_unit_path('25-wireguard-23-peers.netdev', '25-wireguard-23-peers.network',
|
||||
'25-wireguard-private-key.txt')
|
||||
self.start_networkd()
|
||||
|
||||
if shutil.which('wg'):
|
||||
subprocess.call('wg')
|
||||
output = subprocess.check_output(['wg', 'show', 'wg98', 'private-key']).rstrip().decode('utf-8')
|
||||
self.assertTrue(output, 'CJQUtcS9emY2fLYqDlpSZiE/QJyHkPWr+WHtZLZ90FU=')
|
||||
|
||||
self.assertTrue(self.link_exits('wg98'))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user