ClickHouse/tests/integration/test_replica_can_become_leader/test.py

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

61 lines
1.7 KiB
Python
Raw Normal View History

2019-08-01 17:03:34 +00:00
import pytest
2019-08-01 17:43:10 +00:00
from helpers.client import QueryRuntimeException
from helpers.cluster import ClickHouseCluster
2019-08-01 17:03:34 +00:00
cluster = ClickHouseCluster(__file__)
node1 = cluster.add_instance(
"node1", main_configs=["configs/notleader.xml"], with_zookeeper=True
2019-08-01 17:43:10 +00:00
)
node2 = cluster.add_instance(
"node2", main_configs=["configs/notleaderignorecase.xml"], with_zookeeper=True
)
2019-08-01 17:03:34 +00:00
node3 = cluster.add_instance("node3", with_zookeeper=True)
2019-08-01 17:03:34 +00:00
@pytest.fixture(scope="module")
def start_cluster():
try:
cluster.start()
2019-08-01 17:43:10 +00:00
for i, node in enumerate((node1, node2)):
2019-08-01 17:03:34 +00:00
node.query(
"""
2019-08-01 17:03:34 +00:00
CREATE TABLE test_table(date Date, id UInt32, dummy UInt32)
ENGINE = ReplicatedMergeTree('/clickhouse/tables/test_table', '{}')
PARTITION BY date ORDER BY id
""".format(
i
2019-08-01 17:03:34 +00:00
)
)
2019-08-01 17:43:10 +00:00
with pytest.raises(QueryRuntimeException):
node3.query(
"""
2019-08-01 17:43:10 +00:00
CREATE TABLE test_table(date Date, id UInt32, dummy UInt32)
ENGINE = ReplicatedMergeTree('/clickhouse/tables/test_table', '{}')
PARTITION BY date ORDER BY id SETTINGS replicated_can_become_leader=0sad
""".format(
3
2019-08-01 17:43:10 +00:00
)
)
2019-08-01 17:03:34 +00:00
yield cluster
finally:
cluster.shutdown()
def test_can_become_leader(start_cluster):
assert (
node1.query(
"select can_become_leader from system.replicas where table = 'test_table'"
)
== "0\n"
2019-08-01 17:43:10 +00:00
)
assert (
node2.query(
"select can_become_leader from system.replicas where table = 'test_table'"
)
2019-08-01 17:43:10 +00:00
== "0\n"
)