summaryrefslogtreecommitdiff
path: root/tests/test_helper.tcl
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2011-10-04 10:05:21 +0200
committerantirez <antirez@gmail.com>2011-10-04 10:05:21 +0200
commit24bfb570ee7f9f10eccdf034f5c772b84b876f5f (patch)
treeddf50def644c9a7bf0f958da95ccfbdcd0af5375 /tests/test_helper.tcl
parent0bb5160cb08ad8f16ce241e55a1ed6c3042bf2aa (diff)
downloadredis-24bfb570ee7f9f10eccdf034f5c772b84b876f5f.tar.gz
Redis test ports selection made more robust. This prevents the test from hanging if an already bound port is selected but the TCP server listening to it does not cause a protocol error with a Redis client PING. Also base port moved away from the range near to the Redis Cluster gossip ports.
Diffstat (limited to 'tests/test_helper.tcl')
-rw-r--r--tests/test_helper.tcl44
1 files changed, 23 insertions, 21 deletions
diff --git a/tests/test_helper.tcl b/tests/test_helper.tcl
index 4f3cf01ec..dd91d2cbb 100644
--- a/tests/test_helper.tcl
+++ b/tests/test_helper.tcl
@@ -38,7 +38,7 @@ set ::all_tests {
set ::next_test 0
set ::host 127.0.0.1
-set ::port 16379
+set ::port 21111
set ::traceleaks 0
set ::valgrind 0
set ::verbose 0
@@ -149,36 +149,38 @@ proc cleanup {} {
puts "OK"
}
+proc find_available_port start {
+ for {set j $start} {$j < $start+1024} {incr j} {
+ if {[catch {
+ set fd [socket 127.0.0.1 $start]
+ }]} {
+ return $start
+ } else {
+ close $fd
+ }
+ }
+ if {$j == $start+1024} {
+ error "Can't find a non busy port in the $start-[expr {$start+1023}] range."
+ }
+}
+
proc test_server_main {} {
cleanup
# Open a listening socket, trying different ports in order to find a
# non busy one.
- set port 11111
- while 1 {
- puts "Starting test server at port $port"
- if {[catch {socket -server accept_test_clients $port} e]} {
- if {[string match {*address already in use*} $e]} {
- if {$port == 20000} {
- puts "Can't find an available TCP port for test server."
- exit 1
- } else {
- incr port
- }
- } else {
- puts "Fatal error starting test server: $e"
- exit 1
- }
- } else {
- break
- }
- }
+ set port [find_available_port 11111]
+ puts "Starting test server at port $port"
+ socket -server accept_test_clients $port
# Start the client instances
set ::clients_pids {}
+ set start_port [expr {$::port+100}]
for {set j 0} {$j < $::numclients} {incr j} {
+ set start_port [find_available_port $start_port]
set p [exec tclsh8.5 [info script] {*}$::argv \
- --client $port --port [expr {$::port+($j*10)}] &]
+ --client $port --port $start_port &]
lappend ::clients_pids $p
+ incr start_port 10
}
# Setup global state for the test server