add @mock.patch to test_params_invalid_param

add @mock.patch to test_params_invalid_param method

Change-Id: Ia505b2e864abc8d09dc3731685be8196a2e36a8e
This commit is contained in:
shanyunfan33 2022-09-11 14:33:49 +08:00
parent bd1b4b7a2f
commit 7af6fc563e

View File

@ -158,7 +158,13 @@ class TestSearchAction(unittest.TestCase):
'test_index', start_time, end_time)
self.assertEqual(",".join(names), index_names)
def test_params_invalid_param(self):
@mock.patch('venus.modules.search.es_template.search_params')
@mock.patch('venus.modules.search.action.SearchCore.get_index_names')
@mock.patch('venus.common.utils.request_es')
def test_params_invalid_param(
self, mock_req_es, mock_get_index_names, mock_search_params):
mock_get_index_names.return_value = 'flog-2021.01.03,flog-2021.01.04'
mock_req_es.return_value = (400, {})
result = self.action.params('', '', None)
expected = {"code": -1, "msg": "invalid param"}
self.assertEqual(expected, result)