2020-01-07 10:27:24 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from helpers.cluster import ClickHouseCluster
|
|
|
|
|
|
|
|
cluster = ClickHouseCluster(__file__)
|
|
|
|
|
2022-03-22 16:39:58 +00:00
|
|
|
node1 = cluster.add_instance(
|
|
|
|
"node1", main_configs=["configs/remote_servers.xml"], with_zookeeper=True
|
|
|
|
)
|
|
|
|
node2 = cluster.add_instance(
|
|
|
|
"node2", main_configs=["configs/remote_servers.xml"], with_zookeeper=True
|
|
|
|
)
|
2020-01-07 10:27:24 +00:00
|
|
|
|
2020-09-16 04:26:10 +00:00
|
|
|
|
2020-01-07 10:27:24 +00:00
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
def start_cluster():
|
|
|
|
try:
|
|
|
|
cluster.start()
|
|
|
|
yield cluster
|
|
|
|
finally:
|
|
|
|
cluster.shutdown()
|
|
|
|
|
|
|
|
|
|
|
|
def test_remote(start_cluster):
|
2022-03-22 16:39:58 +00:00
|
|
|
assert (
|
|
|
|
node1.query(
|
|
|
|
"""SELECT hostName() FROM clusterAllReplicas("two_shards", system.one)"""
|
|
|
|
)
|
|
|
|
== "node1\nnode2\n"
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
node1.query("""SELECT hostName() FROM cluster("two_shards", system.one)""")
|
|
|
|
== "node1\n"
|
|
|
|
)
|