32 lines
1.4 KiB
Python
32 lines
1.4 KiB
Python
#
|
|
# Copyright (C) 2024-present ScyllaDB
|
|
#
|
|
# SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
#
|
|
|
|
import pytest
|
|
import logging
|
|
|
|
from test.pylib.manager_client import ManagerClient
|
|
from cassandra.policies import WhiteListRoundRobinPolicy
|
|
from test.cluster.conftest import cluster_con
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_initial_token(manager: ManagerClient) -> None:
|
|
tokens = ["-9223372036854775808", "-4611686018427387904", "0", "4611686018427387904"]
|
|
cfg1 = {'initial_token': f"{tokens[0]}, {tokens[1]}"}
|
|
cfg2 = {'initial_token': f"{tokens[2]}, {tokens[3]}"}
|
|
s1 = await manager.server_add(config=cfg1)
|
|
s2 = await manager.server_add(config=cfg2)
|
|
cql1 = cluster_con([s1.ip_addr], 9042, False,
|
|
load_balancing_policy=WhiteListRoundRobinPolicy([s1.ip_addr])).connect()
|
|
cql2 = cluster_con([s2.ip_addr], 9042, False,
|
|
load_balancing_policy=WhiteListRoundRobinPolicy([s2.ip_addr])).connect()
|
|
res1 = cql1.execute("SELECT tokens From system.local").one()
|
|
res2 = cql2.execute("SELECT tokens From system.local").one()
|
|
assert all([i in res1.tokens for i in tokens[:2]]) and all([i in res2.tokens for i in tokens[-2:]])
|
|
# Try to boot a node with conflicting tokens. It should fail.
|
|
s2 = await manager.server_add(config=cfg2, expected_error="Bootstrap failed. See earlier errors")
|