blob: 02c8f7e6cdbc5612e0bc3a05b43bc71c517e911d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#!/usr/bin/env python
#
# Copyright (c) 2018 All rights reserved
# This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
"""Define the classes required to fully cover k8s."""
import logging
import os
import unittest
from functest_kubernetes import k8stest
class K8sTests(unittest.TestCase):
# pylint: disable=missing-docstring
def setUp(self):
os.environ["DEPLOY_SCENARIO"] = "k8-test"
os.environ["KUBECONFIG"] = "/home/config"
os.environ["KUBE_MASTER_IP"] = "127.0.0.1"
os.environ["KUBE_MASTER_URL"] = "https://127.0.0.1:6443"
os.environ["KUBERNETES_PROVIDER"] = "local"
def _test_no_env_var(self, var):
del os.environ[var]
with self.assertRaises(Exception):
k8stest.K8sTesting().check_envs()
def test_no_deploy_scenario(self):
self._test_no_env_var("DEPLOY_SCENARIO")
def test_no_kubeconfig(self):
self._test_no_env_var("KUBECONFIG")
def test_no_kube_master_ip(self):
self._test_no_env_var("KUBE_MASTER_IP")
def test_no_kube_master_url(self):
self._test_no_env_var("KUBE_MASTER_URL")
def test_no_kubernetes_provider(self):
self._test_no_env_var("KUBERNETES_PROVIDER")
if __name__ == "__main__":
logging.disable(logging.CRITICAL)
unittest.main(verbosity=2)
|