-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test of redirects with hostname (#150)
The new testcase redirect-with-hostname-test-async is run depending of hiredis version used. It is disabled for hiredis v1.1.0 due to a hiredis bug or if the hiredis version is unknown.
- Loading branch information
Showing
3 changed files
with
116 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
#!/bin/sh | ||
# | ||
# Verify that redirects with hostname are handled. | ||
# | ||
# Redis 7.0 introduced the config `cluster-preferred-endpoint-type` which | ||
# controls how the endpoint is returned in ASK/MOVED redirects and in | ||
# CLUSTER SLOTS. This testcase verifies correct handling when Redis | ||
# announce a hostname 'localhost' instead of an IP. | ||
# | ||
# Redis 7.0 also adds additional metadata in the CLUSTER SLOTS response | ||
# and this testcase uses a black hole address to make sure this is accepted | ||
# but not used. | ||
# | ||
# Usage: $0 /path/to/clusterclient-binary | ||
|
||
clientprog=${1:-./clusterclient} | ||
testname=redirect-with-hostname-test | ||
|
||
# Sync processes waiting for CONT signals. | ||
perl -we 'use sigtrap "handler", sub{exit}, "CONT"; sleep 1; die "timeout"' & | ||
syncpid1=$!; | ||
perl -we 'use sigtrap "handler", sub{exit}, "CONT"; sleep 1; die "timeout"' & | ||
syncpid2=$!; | ||
|
||
# Start simulated redis node #1 | ||
timeout 5s ./simulated-redis.pl -p 7401 -d --sigcont $syncpid1 <<'EOF' & | ||
# Inital slotmap update | ||
EXPECT CONNECT | ||
EXPECT ["CLUSTER", "SLOTS"] | ||
SEND [[0, 16383, ["localhost", 7401, "nodeid1", ["ip", "192.168.254.254"]]]] | ||
EXPECT CLOSE | ||
# Verify ASK redirect | ||
EXPECT CONNECT | ||
EXPECT ["GET", "foo"] | ||
SEND -ASK 12182 localhost:7402 | ||
# Verify MOVED redirect | ||
EXPECT ["GET", "foo"] | ||
SEND -MOVED 12182 localhost:7402 | ||
# Slotmap updated due to MOVED | ||
EXPECT CONNECT | ||
EXPECT ["CLUSTER", "SLOTS"] | ||
SEND [[0, 16383, ["localhost", 7402, "nodeid2", ["ip", "192.168.254.254"]]]] | ||
EXPECT CLOSE | ||
EXPECT CLOSE | ||
EOF | ||
server1=$! | ||
|
||
# Start simulated redis node #2 | ||
timeout 5s ./simulated-redis.pl -p 7402 -d --sigcont $syncpid2 <<'EOF' & | ||
EXPECT CONNECT | ||
EXPECT ["ASKING"] | ||
SEND +OK | ||
EXPECT ["GET", "foo"] | ||
SEND "bar" | ||
EXPECT ["GET", "foo"] | ||
SEND "bar" | ||
EXPECT CLOSE | ||
EOF | ||
server2=$! | ||
|
||
# Wait until both nodes are ready to accept client connections | ||
wait $syncpid1 $syncpid2; | ||
|
||
# Run client | ||
timeout 3s "$clientprog" localhost:7401 > "$testname.out" <<'EOF' | ||
GET foo | ||
GET foo | ||
EOF | ||
clientexit=$? | ||
|
||
# Wait for servers to exit | ||
wait $server1; server1exit=$? | ||
wait $server2; server2exit=$? | ||
|
||
# Check exit statuses | ||
if [ $server1exit -ne 0 ]; then | ||
echo "Simulated server #1 exited with status $server1exit" | ||
exit $server1exit | ||
fi | ||
if [ $server2exit -ne 0 ]; then | ||
echo "Simulated server #2 exited with status $server2exit" | ||
exit $server2exit | ||
fi | ||
if [ $clientexit -ne 0 ]; then | ||
echo "$clientprog exited with status $clientexit" | ||
exit $clientexit | ||
fi | ||
|
||
# Check the output from clusterclient | ||
printf 'bar\nbar\n' | cmp "$testname.out" - || exit 99 | ||
|
||
# Clean up | ||
rm "$testname.out" |