summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-01-08 20:42:17 +0100
committerChristian Breunig <christian@breunig.cc>2024-01-09 07:29:22 +0100
commitfc6926fdf32a7bdf9f943c7818ee6ea4a8131fba (patch)
tree2e2ba8c55f9b24c0c529f6fdba64c9048db04aec /smoketest
parentd0d3071e99eb65edb888c26ef2fdc9e038438887 (diff)
downloadvyos-1x-fc6926fdf32a7bdf9f943c7818ee6ea4a8131fba.tar.gz
vyos-1x-fc6926fdf32a7bdf9f943c7818ee6ea4a8131fba.zip
pki: T5911: fix service update algorithm if certificate name contains a hyphen (-)
When testing for changed PKI certificates using node_changed(), we should not use key_mangling=('-', '_'), as this will make certificate updates with a hypen not possible.
Diffstat (limited to 'smoketest')
-rwxr-xr-xsmoketest/scripts/cli/test_pki.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_pki.py b/smoketest/scripts/cli/test_pki.py
index 940ff9ec0..02beafb26 100755
--- a/smoketest/scripts/cli/test_pki.py
+++ b/smoketest/scripts/cli/test_pki.py
@@ -205,7 +205,7 @@ class TestPKI(VyOSUnitTestSHIM.TestCase):
self.cli_delete(['service', 'https', 'certificates', 'certificate'])
def test_certificate_https_update(self):
- cert_name = 'smoketest'
+ cert_name = 'smoke-test_foo'
cert_path = f'/run/nginx/certs/{cert_name}_cert.pem'
self.cli_set(base_path + ['certificate', cert_name, 'certificate', valid_ca_cert.replace('\n','')])
self.cli_set(base_path + ['certificate', cert_name, 'private', 'key', valid_ca_private_key.replace('\n','')])