diff options
author | John Estabrook <jestabro@vyos.io> | 2022-11-30 11:03:33 -0600 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2022-11-30 11:37:44 -0600 |
commit | 032de023c21d92262243a2abb34bfd4c2009958e (patch) | |
tree | 274033b3413e383820c665de2b874c929a91524c /smoketest | |
parent | 22635eb2c269ffdf0acb756622c1febf0a901e56 (diff) | |
download | vyos-1x-032de023c21d92262243a2abb34bfd4c2009958e.tar.gz vyos-1x-032de023c21d92262243a2abb34bfd4c2009958e.zip |
pki: T4847: add test of eapol to ensure interface update
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_pki.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_pki.py b/smoketest/scripts/cli/test_pki.py index cba5ffdde..b18b0b039 100755 --- a/smoketest/scripts/cli/test_pki.py +++ b/smoketest/scripts/cli/test_pki.py @@ -246,5 +246,27 @@ class TestPKI(VyOSUnitTestSHIM.TestCase): self.cli_delete(['service', 'https', 'certificates', 'certificate']) + def test_certificate_eapol_update(self): + self.cli_set(base_path + ['certificate', 'smoketest', 'certificate', valid_ca_cert.replace('\n','')]) + self.cli_set(base_path + ['certificate', 'smoketest', 'private', 'key', valid_ca_private_key.replace('\n','')]) + self.cli_commit() + + self.cli_set(['interfaces', 'ethernet', 'eth1', 'eapol', 'certificate', 'smoketest']) + self.cli_commit() + + cert_data = None + + with open('/run/wpa_supplicant/eth1_cert.pem') as f: + cert_data = f.read() + + self.cli_set(base_path + ['certificate', 'smoketest', 'certificate', valid_update_cert.replace('\n','')]) + self.cli_set(base_path + ['certificate', 'smoketest', 'private', 'key', valid_update_private_key.replace('\n','')]) + self.cli_commit() + + with open('/run/wpa_supplicant/eth1_cert.pem') as f: + self.assertNotEqual(cert_data, f.read()) + + self.cli_delete(['interfaces', 'ethernet', 'eth1', 'eapol']) + if __name__ == '__main__': unittest.main(verbosity=2) |