From 85f1b6c0ff789a75ab5ea140c44df029aa666525 Mon Sep 17 00:00:00 2001 From: PrateekDodda Date: Mon, 27 Jul 2020 16:32:46 -0500 Subject: [PATCH] Add tests for mysqlclient-utility container - test_verify_readonly_rootfs Change-Id: Icb1adc22e08c89bfceb3b8e58d92d3c1c020ac29 --- .../tests/utility/mysqlclient/__init__.py | 0 .../test_mysqlclient_utility_container.py | 39 +++++++++++++++++++ tools/run_avt.sh | 1 + 3 files changed, 40 insertions(+) create mode 100644 kube_utility_container/tests/utility/mysqlclient/__init__.py create mode 100644 kube_utility_container/tests/utility/mysqlclient/test_mysqlclient_utility_container.py diff --git a/kube_utility_container/tests/utility/mysqlclient/__init__.py b/kube_utility_container/tests/utility/mysqlclient/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/kube_utility_container/tests/utility/mysqlclient/test_mysqlclient_utility_container.py b/kube_utility_container/tests/utility/mysqlclient/test_mysqlclient_utility_container.py new file mode 100644 index 00000000..39638f20 --- /dev/null +++ b/kube_utility_container/tests/utility/mysqlclient/test_mysqlclient_utility_container.py @@ -0,0 +1,39 @@ +# Copyright 2020 AT&T Intellectual Property. All other rights reserved. +# +# 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. + +import re +import unittest + +from kube_utility_container.tests.utility.base import TestBase + +class TestMysqlclientUtilityContainer(TestBase): + @classmethod + def setUpClass(cls): + cls.deployment_name = 'mysqlclient-utility' + super(TestMysqlclientUtilityContainer, cls).setUpClass() + + def test_verify_readonly_rootfs(self): + """To verify mysqlclient-utility readonly rootfs configuration""" + failures = [] + expected = "False" + mysqlclient_utility_pod = \ + self.client._get_utility_container(self.deployment_name) + for container in mysqlclient_utility_pod.spec.containers: + if expected != \ + str(container.security_context.read_only_root_filesystem): + failures.append( + f"container {container.name} is not having expected" + f" value {expected} set for read_only_root_filesystem" + f" in pod {mysqlclient_utility_pod.metadata.name}") + self.assertEqual(0, len(failures), failures) diff --git a/tools/run_avt.sh b/tools/run_avt.sh index 60dd5ca2..662ac6fd 100755 --- a/tools/run_avt.sh +++ b/tools/run_avt.sh @@ -49,6 +49,7 @@ function run_feature_tests() { python -m unittest discover -s ${PLUGINS}/tests/utility/etcd -v python -m unittest discover -s ${PLUGINS}/tests/utility/calico -v python -m unittest discover -s ${PLUGINS}/tests/utility/ceph -v + python -m unittest discover -s ${PLUGINS}/tests/utility/mysqlclient -v } function run_unit_tests() {