From ddb6d4d4324fb10048cd9ed11a45884e060009a5 Mon Sep 17 00:00:00 2001 From: Martin Kalcok Date: Tue, 6 May 2025 09:24:13 +0200 Subject: [PATCH] ovn: ovn-central COS Integration tests Signed-off-by: Martin Kalcok --- zaza/openstack/charm_tests/ovn/tests.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/zaza/openstack/charm_tests/ovn/tests.py b/zaza/openstack/charm_tests/ovn/tests.py index c6a7721..dafeed1 100644 --- a/zaza/openstack/charm_tests/ovn/tests.py +++ b/zaza/openstack/charm_tests/ovn/tests.py @@ -128,6 +128,14 @@ class DedicatedChassisCosIntegrationTest(ChassisCosIntegrationTest): APPLICATION_NAME = 'ovn-dedicated-chassis' +class CentralCosIntegrationTest(BaseCosIntegrationTest): + """Variant of COS integration tests for OVN Central.""" + + APPLICATION_NAME = 'ovn-central' + DASHBOARD = 'Juju: OVN Central (OVSDB)' + PROM_QUERY = 'ovn_up' + + class BaseCharmOperationTest(test_utils.BaseCharmTest): """Base OVN Charm operation tests."""