Skip tests when Kubernetes is not running

This commit is contained in:
Davanum Srinivas 2016-04-03 22:06:46 -04:00
parent 9f65944384
commit 232306d0c7
1 changed files with 14 additions and 2 deletions

View File

@ -22,13 +22,25 @@ http://kubernetes.io/docs/getting-started-guides/docker/
and then run this test.
"""
from testtools.testcase import unittest
import urllib3
from k8sclient.client import api_client
from k8sclient.client.apis import apiv_api
from k8sclient.tests import base
class TestK8sclient(base.TestCase):
def _is_k8s_running():
try:
urllib3.PoolManager().request('GET', '127.0.0.1:8080')
return True
except urllib3.exceptions.HTTPError:
return False
class TestK8sclient(base.TestCase):
@unittest.skipUnless(
_is_k8s_running(), "Kubernetes is not available")
def test_list_nodes_and_endpoints(self):
client = api_client.ApiClient('http://127.0.0.1:8080/')
api = apiv_api.ApivApi(client)
@ -37,4 +49,4 @@ class TestK8sclient(base.TestCase):
self.assertEquals(3, len(pod.items))
endpoints = api.list_endpoints()
self.assertEquals(1, len(endpoints.items))
self.assertEquals(1, len(endpoints.items))