blob: 0714ff92d9e36c4abf73d0eebd0e047c6681dafb (
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
55
56
57
58
59
60
61
62
63
64
65
|
#!/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
import mock
from xtesting.core import testcase
from functest_kubernetes import k8stest
class E2EUnitTesting(unittest.TestCase):
# pylint: disable=missing-docstring
def setUp(self):
os.environ["DEPLOY_SCENARIO"] = "k8-test"
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"
self.k8stesting = k8stest.E2ETesting()
@mock.patch('os.path.exists', return_value=False)
@mock.patch('os.makedirs')
@mock.patch('functest_kubernetes.k8stest.os.path.isfile',
return_value=False)
def test_run_missing_config_file(self, *args):
self.k8stesting.config = 'not_file'
with mock.patch.object(self.k8stesting,
'_E2ETesting__logger') as mock_logger:
self.assertEqual(self.k8stesting.run(),
testcase.TestCase.EX_RUN_ERROR)
mock_logger.error.assert_called_with(
"Cannot run k8s testcases. Config file not found")
args[0].assert_called_with('not_file')
args[1].assert_called_with(self.k8stesting.res_dir)
@mock.patch('os.path.exists', return_value=False)
@mock.patch('os.makedirs')
@mock.patch('re.search')
@mock.patch('six.moves.builtins.open', mock.mock_open())
@mock.patch('functest_kubernetes.k8stest.os.path.isfile')
@mock.patch('functest_kubernetes.k8stest.subprocess.Popen')
def test_run(self, *args):
self.assertEqual(self.k8stesting.run(),
testcase.TestCase.EX_OK)
for loop in range(3):
args[loop].assert_called()
if __name__ == "__main__":
logging.disable(logging.CRITICAL)
unittest.main(verbosity=2)
|