Remove uselsess files and tests

Removes some useless code:

* Services directory is not used at all.
* BaseAdminKuryrTest is not used as a base of any tests besides…
* …test_create_list_pod which does not test Kuryr at all as it's not
  checking if the pod got IP. Also it duplicates what other tests do.

Change-Id: I3ad7cc10a307cb479dd335704a72fcef110e8bc3
This commit is contained in:
Michał Dulko 2020-12-03 10:39:27 +01:00
parent fa37cdfbda
commit 202409c062
3 changed files with 0 additions and 103 deletions

View File

@ -1,36 +0,0 @@
# Copyright 2017 Red Hat, Inc.
#
# 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 kubernetes
from tempest.api.network import base
from tempest import config
CONF = config.CONF
class BaseAdminKuryrTest(base.BaseAdminNetworkTest):
@classmethod
def skip_checks(cls):
super(BaseAdminKuryrTest, cls).skip_checks()
if not CONF.service_available.kuryr:
raise cls.skipException('Kuryr support is required')
@classmethod
def resource_setup(cls):
super(BaseAdminKuryrTest, cls).resource_setup()
# TODO(dmellado): Config k8s client in a cleaner way
kubernetes.config.load_kube_config()
cls.k8s_client = kubernetes.client.CoreV1Api()

View File

@ -1,67 +0,0 @@
# Copyright 2017 Red Hat, Inc.
#
# 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 oslo_log import log as logging
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
from kuryr_tempest_plugin.tests import base
from oslo_config import cfg
LOG = logging.getLogger(__name__)
CONF = cfg.CONF
class PodTest(base.BaseAdminKuryrTest):
def _list_pods(self):
pods = self.k8s_client.list_pod_for_all_namespaces(watch=False)
return pods
def _delete_pod(self, pod_name, body=None, namespace='default'):
if body is None:
body = {}
self.k8s_client.delete_namespaced_pod(name=pod_name,
body=body,
namespace=namespace)
@decorators.idempotent_id('b6fbd21a-d7cb-497d-b03b-02e09cc2caf8')
def test_create_list_pod(self):
pod_name = data_utils.rand_name('pod')
pod_manifest = {
'apiVersion': 'v1',
'kind': 'Pod',
'metadata':
{
'name': pod_name
},
'spec': {
'containers': [{
'image': 'busybox',
'name': 'sleep',
"args": [
"/bin/sh",
"-c",
"while true; do date; sleep 5; done"
]
}]
}
}
self.k8s_client.create_namespaced_pod(body=pod_manifest,
namespace='default')
pod_names = [pod.metadata.name for pod in self._list_pods().items]
self.assertIn(pod_name, pod_names)
self.addCleanup(self._delete_pod, pod_name)