aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2021-04-20 17:19:06 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2021-04-21 09:11:50 +0200
commit913417c970ab1571abcfc8064a09b10e6bc50dae (patch)
tree2860a77913b0f49254b055c8068baa1ca21fc213
parent6491b103efdee18b71c763b78adc3acce484eaad (diff)
Mock os.makedirs
Change-Id: I5f9fd24421727cea474715f502670ae6f2c80b76 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit 32d2ed700c449ba33a4060f55c2adadc2e76b070)
-rw-r--r--functest_kubernetes/test_k8stest.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/functest_kubernetes/test_k8stest.py b/functest_kubernetes/test_k8stest.py
index aff0f422..0714ff92 100644
--- a/functest_kubernetes/test_k8stest.py
+++ b/functest_kubernetes/test_k8stest.py
@@ -32,9 +32,11 @@ class E2EUnitTesting(unittest.TestCase):
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, mock_func):
+ def test_run_missing_config_file(self, *args):
self.k8stesting.config = 'not_file'
with mock.patch.object(self.k8stesting,
'_E2ETesting__logger') as mock_logger:
@@ -42,8 +44,11 @@ class E2EUnitTesting(unittest.TestCase):
testcase.TestCase.EX_RUN_ERROR)
mock_logger.error.assert_called_with(
"Cannot run k8s testcases. Config file not found")
- mock_func.assert_called_with('not_file')
+ 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')