ClickHouse/tests/integration/test_keeper_and_access_storage/test.py

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

27 lines
503 B
Python
Raw Normal View History

#!/usr/bin/env python3
import pytest
from helpers.cluster import ClickHouseCluster
cluster = ClickHouseCluster(__file__)
node1 = cluster.add_instance(
"node1", main_configs=["configs/keeper.xml"], stay_alive=True
)
# test that server is able to start
@pytest.fixture(scope="module")
def started_cluster():
try:
cluster.start()
2022-09-06 10:58:14 +00:00
yield cluster
finally:
cluster.shutdown()
def test_create_replicated(started_cluster):
assert node1.query("SELECT 1") == "1\n"