2019-07-17 11:55:18 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from helpers.cluster import ClickHouseCluster
|
|
|
|
|
|
|
|
cluster = ClickHouseCluster(__file__)
|
|
|
|
node = cluster.add_instance('node', main_configs=['configs/config_information.xml'])
|
|
|
|
|
2020-09-16 04:26:10 +00:00
|
|
|
|
2019-07-17 11:55:18 +00:00
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
def start_cluster():
|
|
|
|
try:
|
|
|
|
cluster.start()
|
|
|
|
yield cluster
|
|
|
|
finally:
|
|
|
|
cluster.shutdown()
|
|
|
|
|
2020-09-16 04:26:10 +00:00
|
|
|
|
2019-07-17 11:55:18 +00:00
|
|
|
def test_check_client_logs_level(start_cluster):
|
|
|
|
logs = node.query_and_get_answer_with_error("SELECT 1", settings={"send_logs_level": 'trace'})[1]
|
2019-07-17 11:57:05 +00:00
|
|
|
assert logs.count('Trace') != 0
|