ClickHouse/tests/integration/test_structured_logging_json/test.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

102 lines
3.0 KiB
Python
Raw Normal View History

import pytest
from helpers.cluster import ClickHouseCluster
import json
from xml.etree import ElementTree as ET
cluster = ClickHouseCluster(__file__)
2022-08-19 03:05:20 +00:00
node_all_keys = cluster.add_instance(
"node_all_keys", main_configs=["configs/config_all_keys_json.xml"]
)
node_some_keys = cluster.add_instance(
"node_some_keys", main_configs=["configs/config_some_keys_json.xml"]
)
node_no_keys = cluster.add_instance(
"node_no_keys", main_configs=["configs/config_no_keys_json.xml"]
)
@pytest.fixture(scope="module")
def start_cluster():
try:
cluster.start()
yield cluster
finally:
cluster.shutdown()
def is_json(log_json):
try:
json.loads(log_json)
except ValueError as e:
return False
return True
2022-08-19 03:05:20 +00:00
def validate_log_config_relation(config, logs, config_type):
root = ET.fromstring(config)
keys_in_config = set()
if config_type == "config_no_keys":
keys_in_config.add("date_time")
keys_in_config.add("thread_name")
keys_in_config.add("thread_id")
keys_in_config.add("level")
keys_in_config.add("query_id")
keys_in_config.add("logger_name")
keys_in_config.add("message")
keys_in_config.add("source_file")
keys_in_config.add("source_line")
else:
2022-08-19 03:05:20 +00:00
for child in root.findall(".//names/*"):
keys_in_config.add(child.text)
try:
length = min(10, len(logs))
for i in range(0, length):
json_log = json.loads(logs[i])
keys_in_log = set()
for log_key in json_log.keys():
keys_in_log.add(log_key)
if log_key not in keys_in_config:
return False
for config_key in keys_in_config:
if config_key not in keys_in_log:
return False
except ValueError as e:
return False
return True
2022-08-19 03:05:20 +00:00
def validate_logs(logs):
2022-08-02 03:21:48 +00:00
length = min(10, len(logs))
result = True
2022-08-02 03:21:48 +00:00
for i in range(0, length):
result = result and is_json(logs[i])
return result
2022-08-19 03:05:20 +00:00
def valiade_everything(config, node, config_type):
node.query("SELECT 1")
logs = node.grep_in_log("").split("\n")
2022-08-19 03:05:20 +00:00
return validate_logs(logs) and validate_log_config_relation(
config, logs, config_type
)
2022-08-19 03:34:24 +00:00
def test_structured_logging_json_format(start_cluster):
2022-08-19 03:05:20 +00:00
config_all_keys = node_all_keys.exec_in_container(
["cat", "/etc/clickhouse-server/config.d/config_all_keys_json.xml"]
)
config_some_keys = node_some_keys.exec_in_container(
["cat", "/etc/clickhouse-server/config.d/config_some_keys_json.xml"]
)
config_no_keys = node_no_keys.exec_in_container(
["cat", "/etc/clickhouse-server/config.d/config_no_keys_json.xml"]
)
2022-08-29 02:02:14 +00:00
assert valiade_everything(config_all_keys, node_all_keys, "config_all_keys") == True
2022-08-29 02:24:25 +00:00
assert (
valiade_everything(config_some_keys, node_some_keys, "config_some_keys") == True
)
2022-08-29 02:02:14 +00:00
assert valiade_everything(config_no_keys, node_no_keys, "config_no_keys") == True