ClickHouse/tests/integration/test_config_hide_in_preprocessed/test.py

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

42 lines
1.1 KiB
Python
Raw Normal View History

2023-08-23 07:47:28 +00:00
import pytest
import os
from helpers.cluster import ClickHouseCluster
2023-08-23 07:47:28 +00:00
cluster = ClickHouseCluster(__file__)
node = cluster.add_instance(
"node", main_configs=["configs/config.xml"], user_configs=["configs/users.xml"]
)
2023-08-23 07:47:28 +00:00
@pytest.fixture(scope="module")
def started_cluster():
try:
cluster.start()
yield cluster
finally:
cluster.shutdown()
def test_hide_in_preprocessed(started_cluster):
2023-08-23 07:47:28 +00:00
assert (
node.query(
"select value from system.server_settings where name ='max_table_size_to_drop'"
)
== "60000000000\n"
)
assert (
node.query(
"select value from system.server_settings where name ='max_partition_size_to_drop'"
)
== "40000000000\n"
)
assert "key_1" in node.query("select collection from system.named_collections")
out = node.exec_in_container(
["cat", "/var/lib/clickhouse/preprocessed_configs/config.xml"]
)
assert "max_table_size_to_drop" not in out
assert "max_partition_size_to_drop" in out
assert "named_collections" not in out