mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
50ee0f5be8
Based on feedback from interested parties
57 lines
2.1 KiB
Tcl
57 lines
2.1 KiB
Tcl
# SPDX-FileCopyrightText: 2024 Redict Contributors
|
|
# SPDX-FileCopyrightText: 2024 Salvatore Sanfilippo <antirez at gmail dot com>
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
start_cluster 2 2 {tags {external:skip cluster}} {
|
|
|
|
test "Test change cluster-announce-port and cluster-announce-tls-port at runtime" {
|
|
if {$::tls} {
|
|
set baseport [lindex [R 0 config get tls-port] 1]
|
|
} else {
|
|
set baseport [lindex [R 0 config get port] 1]
|
|
}
|
|
set count [expr [llength $::servers] + 1]
|
|
set used_port [find_available_port $baseport $count]
|
|
|
|
R 0 config set cluster-announce-tls-port $used_port
|
|
R 0 config set cluster-announce-port $used_port
|
|
|
|
assert_match "*:$used_port@*" [R 0 CLUSTER NODES]
|
|
wait_for_condition 50 100 {
|
|
[string match "*:$used_port@*" [R 1 CLUSTER NODES]]
|
|
} else {
|
|
fail "Cluster announced port was not propagated via gossip"
|
|
}
|
|
|
|
R 0 config set cluster-announce-tls-port 0
|
|
R 0 config set cluster-announce-port 0
|
|
assert_match "*:$baseport@*" [R 0 CLUSTER NODES]
|
|
}
|
|
|
|
test "Test change cluster-announce-bus-port at runtime" {
|
|
if {$::tls} {
|
|
set baseport [lindex [R 0 config get tls-port] 1]
|
|
} else {
|
|
set baseport [lindex [R 0 config get port] 1]
|
|
}
|
|
set count [expr [llength $::servers] + 1]
|
|
set used_port [find_available_port $baseport $count]
|
|
|
|
# Verify config set cluster-announce-bus-port
|
|
R 0 config set cluster-announce-bus-port $used_port
|
|
assert_match "*@$used_port *" [R 0 CLUSTER NODES]
|
|
wait_for_condition 50 100 {
|
|
[string match "*@$used_port *" [R 1 CLUSTER NODES]]
|
|
} else {
|
|
fail "Cluster announced port was not propagated via gossip"
|
|
}
|
|
|
|
# Verify restore default cluster-announce-port
|
|
set base_bus_port [expr $baseport + 10000]
|
|
R 0 config set cluster-announce-bus-port 0
|
|
assert_match "*@$base_bus_port *" [R 0 CLUSTER NODES]
|
|
}
|
|
}
|