openstack-armada-app/python-k8sapp-openstack/k8sapp_openstack/k8sapp_openstack/tests/test_nova_api_proxy.py

51 lines
1.6 KiB
Python

#
# Copyright (c) 2020 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
from k8sapp_openstack.common import constants as app_constants
from k8sapp_openstack.tests import test_plugins
from sysinv.helm import common
from sysinv.tests.db import base as dbbase
from sysinv.tests.db import utils as dbutils
from sysinv.tests.helm import base
class NovaApiProxyTestCase(test_plugins.K8SAppOpenstackAppMixin,
base.HelmTestCaseMixin):
def setUp(self):
super(NovaApiProxyTestCase, self).setUp()
self.app = dbutils.create_test_app(name=self.app_name)
class NovaApiProxyIPv4ControllerHostTestCase(NovaApiProxyTestCase,
dbbase.ProvisionedControllerHostTestCase):
def test_replicas(self):
overrides = self.operator.get_helm_chart_overrides(
app_constants.HELM_CHART_NOVA_API_PROXY,
cnamespace=common.HELM_NS_OPENSTACK)
self.assertOverridesParameters(overrides, {
# Only one replica for a single controller
'pod': {'replicas': {'proxy': 1}}
})
class NovaApiProxyIPv4AIODuplexSystemTestCase(NovaApiProxyTestCase,
dbbase.ProvisionedAIODuplexSystemTestCase):
def test_replicas(self):
overrides = self.operator.get_helm_chart_overrides(
app_constants.HELM_CHART_NOVA_API_PROXY,
cnamespace=common.HELM_NS_OPENSTACK)
self.assertOverridesParameters(overrides, {
# Expect two replicas because there are two controllers
'pod': {'replicas': {'proxy': 2}}
})