kuryr-kubernetes/kuryr_kubernetes/tests/unit/cni/test_health.py
Michał Dulko 71ce161d61 Add HTTPS support to K8s API healthchecks
Our Controller and CNI healthchecks are checking the connection to the
K8s API. This is done using the requests library directly and not
through K8sClient wrapper. Because of that we've forgot to add HTTPS
support there (DevStack runs K8s with HTTP).

This commit fix that by making /healthz requests to go through
K8sClient wrapper.

Change-Id: I7d2657dfb123a7641eb838d7ddecde769bbb4318
Closes-Bug: 1759293
2018-04-17 16:43:46 +02:00

128 lines
5.3 KiB
Python

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from ctypes import c_bool
from kuryr_kubernetes.cni import health
from kuryr_kubernetes.tests import base
import mock
import multiprocessing
import os
import tempfile
from oslo_config import cfg
class TestCNIHealthServer(base.TestCase):
def setUp(self):
super(TestCNIHealthServer, self).setUp()
healthy = multiprocessing.Value(c_bool, True)
self.srv = health.CNIHealthServer(healthy)
self.srv.application.testing = True
self.test_client = self.srv.application.test_client()
@mock.patch('kuryr_kubernetes.cni.health._has_cap')
@mock.patch('kuryr_kubernetes.cni.health.CNIHealthServer.'
'verify_k8s_connection')
def test_readiness_status(self, m_verify_k8s_conn, cap_tester):
cap_tester.return_value = True
m_verify_k8s_conn.return_value = True, 200
resp = self.test_client.get('/ready')
self.assertEqual(200, resp.status_code)
@mock.patch('kuryr_kubernetes.cni.health._has_cap')
@mock.patch('kuryr_kubernetes.cni.health.CNIHealthServer.'
'verify_k8s_connection')
def test_readiness_status_net_admin_error(self, m_verify_k8s_conn,
cap_tester):
cap_tester.return_value = False
m_verify_k8s_conn.return_value = True, 200
resp = self.test_client.get('/ready')
self.assertEqual(500, resp.status_code)
@mock.patch('kuryr_kubernetes.cni.health._has_cap')
@mock.patch('kuryr_kubernetes.cni.health.CNIHealthServer.'
'verify_k8s_connection')
def test_readiness_status_k8s_error(self, m_verify_k8s_conn, cap_tester):
cap_tester.return_value = True
m_verify_k8s_conn.return_value = False
resp = self.test_client.get('/ready')
self.assertEqual(500, resp.status_code)
@mock.patch('pyroute2.IPDB.release')
def test_liveness_status(self, m_ipdb):
self.srv._components_healthy.value = True
resp = self.test_client.get('/alive')
m_ipdb.assert_called()
self.assertEqual(200, resp.status_code)
def test_liveness_status_components_error(self):
self.srv._components_healthy.value = False
resp = self.test_client.get('/alive')
self.assertEqual(500, resp.status_code)
@mock.patch('pyroute2.IPDB.release')
def test_liveness_status_ipdb_error(self, m_ipdb):
m_ipdb.side_effect = Exception
resp = self.test_client.get('/alive')
self.assertEqual(500, resp.status_code)
@mock.patch('kuryr_kubernetes.cni.health._get_memsw_usage')
def test_liveness_status_mem_usage_error(self, get_memsw_usage):
get_memsw_usage.return_value = 5368709120 / health.BYTES_AMOUNT
cfg.CONF.set_override('max_memory_usage', 4096,
group='cni_health_server')
resp = self.test_client.get('/alive')
self.assertEqual(500, resp.status_code)
class TestCNIHealthUtils(base.TestCase):
def test_has_cap(self):
with tempfile.NamedTemporaryFile() as fake_status:
fake_status.write(b'CapInh:\t0000000000000000\n'
b'CapPrm:\t0000000000000000\n'
b'CapEff:\t0000000000000000\n'
b'CapBnd:\t0000003fffffffff\n')
fake_status.flush()
self.assertTrue(
health._has_cap(health.CAP_NET_ADMIN,
'CapBnd:\t',
fake_status.name))
def test__get_mem_usage(self):
mem_usage = 500 # Arbitrary mem usage amount
fake_cg_path = tempfile.mkdtemp(suffix='kuryr')
usage_in_bytes_path = os.path.join(fake_cg_path, health.MEMSW_FILENAME)
try:
with open(usage_in_bytes_path, 'w') as cgroup_mem_usage:
cgroup_mem_usage.write('{}\n'.format(
mem_usage * health.BYTES_AMOUNT))
self.assertEqual(health._get_memsw_usage(fake_cg_path), mem_usage)
finally:
os.unlink(usage_in_bytes_path)
os.rmdir(fake_cg_path)
@mock.patch('kuryr_kubernetes.cni.utils.running_under_container_runtime')
def test__get_cni_cgroup_path_system(self, running_containerized):
running_containerized.return_value = False
fake_path = '/kuryr/rules'
cfg.CONF.set_override('cg_path', fake_path,
group='cni_health_server')
self.assertEqual(health._get_cni_cgroup_path(), fake_path)
@mock.patch('kuryr_kubernetes.cni.utils.running_under_container_runtime')
def test__get_cni_cgroup_path_container(self, running_containerized):
running_containerized.return_value = True
self.assertEqual(health._get_cni_cgroup_path(),
health.TOP_CGROUP_MEMORY_PATH)