Add a test case of typical_logs to the test file

A test case for typical_logs: test_typical_logs_no_buckets,
which prints "no data, no buckets".

Change-Id: I360ef5d5982372b844701fbb58a1f5220e7ff13d
This commit is contained in:
hejunli 2022-08-29 11:23:51 +08:00
parent 3e898ee5b3
commit 6700a8456d

View File

@ -583,6 +583,28 @@ class TestSearchAction(unittest.TestCase):
'1660808934')
self.assertEqual(expected, result)
@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_typical_logs_no_buckets(
self, mock_req_es, mock_get_index_names, mock_search_params):
mock_get_index_names.return_value = 'flog-2022.08.17,flog-2022.08.18'
mock_req_es.return_value = (200, '{"aggregations": {"data_group": '
'{}}}')
action = SearchCore()
expected = {"code": 0, "msg": "no data, no buckets"}
result = action.typical_logs('error_stats', '1660722534', '1660808934')
self.assertEqual(expected, result)
result = action.typical_logs('rabbitmq_error_stats', '1660722534',
'1660808934')
self.assertEqual(expected, result)
result = action.typical_logs('mysql_error_stats', '1660722534',
'1660808934')
self.assertEqual(expected, result)
result = action.typical_logs('novalidhost_error_stats', '1660722534',
'1660808934')
self.assertEqual(expected, result)
if __name__ == "__main__":
unittest.main()