1 set ::global_overrides {}
4 proc error_and_quit
{config_file
error} {
5 puts "!!COULD NOT START REDIS-SERVER\n"
7 puts [exec cat
$config_file]
9 puts [string trim
$error]
13 proc check_valgrind_errors stderr
{
18 if {![regexp -- {ERROR SUMMARY
: 0 errors
} $buf] ||
19 ![regexp -- {definitely lost
: 0 bytes
} $buf]} {
20 puts "*** VALGRIND ERRORS ***"
22 puts "--- press enter to continue ---"
27 proc kill_server config
{
28 # nothing to kill when running against external server
29 if {$::external} return
31 # nevermind if its already dead
32 if {![is_alive
$config]} { return }
33 set pid [dict get
$config pid]
36 if {![dict exists
$config "skipleaks"]} {
38 if {[string match
{*Darwin
*} [exec uname
-a]]} {
40 test
"Check for memory leaks (pid $pid)" {
48 # kill server and wait for the process to be totally exited
49 while {[is_alive
$config]} {
50 if {[incr wait
10] % 1000 == 0} {
51 puts "Waiting for process $pid to exit..."
53 catch {exec kill
$pid}
57 # Check valgrind errors if needed
59 check_valgrind_errors
[dict get
$config stderr
]
63 proc is_alive config
{
64 set pid [dict get
$config pid]
65 if {[catch {exec ps
-p $pid} err
]} {
72 proc ping_server
{host port
} {
75 set fd
[socket $::host $::port]
76 fconfigure $fd -translation binary
80 if {[string range
$reply 0 4] eq
{+PONG
} ||
81 [string range
$reply 0 3] eq
{-ERR}} {
97 # doesn't really belong here, but highly coupled to code in start_server
98 proc tags
{tags code
} {
99 set ::tags [concat $::tags $tags]
101 set ::tags [lrange $::tags 0 end-
[llength $tags]]
104 proc start_server
{options {code undefined
}} {
105 # If we are runnign against an external server, we just push the
106 # host/port pair in the stack the first time
108 if {[llength $::servers] == 0} {
110 dict
set srv
"host" $::host
111 dict
set srv
"port" $::port
112 set client
[redis
$::host $::port]
113 dict
set srv
"client" $client
116 # append the server to the stack
117 lappend ::servers $srv
124 set baseconfig
"default.conf"
129 foreach {option value
} $options {
132 set baseconfig
$value }
134 set overrides
$value }
137 set ::tags [concat $::tags $value] }
139 error "Unknown option $option" }
143 set data
[split [exec cat
"tests/assets/$baseconfig"] "\n"]
146 if {[string length
$line] > 0 && [string index
$line 0] ne
"#"} {
147 set elements
[split $line " "]
148 set directive
[lrange $elements 0 0]
149 set arguments
[lrange $elements 1 end
]
150 dict
set config
$directive $arguments
154 # use a different directory every time a server is started
155 dict
set config dir
[tmpdir server
]
157 # start every server on a different port
158 dict
set config port
[incr ::port]
160 # apply overrides from global space and arguments
161 foreach {directive arguments
} [concat $::global_overrides $overrides] {
162 dict
set config
$directive $arguments
165 # write new configuration to temporary file
166 set config_file
[tmpfile redis.conf
]
167 set fp
[open $config_file w
+]
168 foreach directive
[dict keys
$config] {
169 puts -nonewline $fp "$directive "
170 puts $fp [dict get
$config $directive]
174 set stdout
[format "%s/%s" [dict get
$config "dir"] "stdout"]
175 set stderr
[format "%s/%s" [dict get
$config "dir"] "stderr"]
178 exec valgrind
--suppressions=src
/valgrind.sup src
/redis-server
$config_file > $stdout 2> $stderr &
180 exec src
/redis-server
$config_file > $stdout 2> $stderr &
183 # check that the server actually started
184 # ugly but tries to be as fast as possible...
189 puts -nonewline "=== ($tags) Starting server ${::host}:${::port} "
193 if {$code ne
"undefined"} {
194 while {[incr retrynum
-1]} {
196 if {[ping_server
$::host $::port]} {
200 if {$serverisup} break
212 error_and_quit
$config_file [exec cat
$stderr]
216 while {![info exists
pid]} {
217 regexp {\[(\d
+)\]} [exec cat
$stdout] _
pid
221 # setup properties to be able to initialize a client object
224 if {[dict exists
$config bind]} { set host
[dict get
$config bind] }
225 if {[dict exists
$config port
]} { set port
[dict get
$config port
] }
228 dict
set srv
"config_file" $config_file
229 dict
set srv
"config" $config
230 dict
set srv
"pid" $pid
231 dict
set srv
"host" $host
232 dict
set srv
"port" $port
233 dict
set srv
"stdout" $stdout
234 dict
set srv
"stderr" $stderr
236 # if a block of code is supplied, we wait for the server to become
237 # available, create a client object and kill the server afterwards
238 if {$code ne
"undefined"} {
239 set line
[exec head
-n1 $stdout]
240 if {[string match
{*already in use
*} $line]} {
241 error_and_quit
$config_file $line
245 # check that the server actually started and is ready for connections
246 if {[exec cat
$stdout | grep
"ready to accept" | wc
-l] > 0} {
252 # append the server to the stack
253 lappend ::servers $srv
255 # connect client (after server dict is put on the stack)
258 # execute provided block
259 set num_tests
$::num_tests
260 if {[catch { uplevel 1 $code } error]} {
261 set backtrace
$::errorInfo
263 # Kill the server without checking for leaks
264 dict
set srv
"skipleaks" 1
267 # Print warnings from log
268 puts [format "\nLogged warnings (pid %d):" [dict get
$srv "pid"]]
269 set warnings
[warnings_from_file
[dict get
$srv "stdout"]]
270 if {[string length
$warnings] > 0} {
277 error $error $backtrace
280 # Don't do the leak check when no tests were run
281 if {$num_tests == $::num_tests} {
282 dict
set srv
"skipleaks" 1
285 # pop the server object
286 set ::servers [lrange $::servers 0 end-1
]
288 set ::tags [lrange $::tags 0 end-
[llength $tags]]
291 set ::tags [lrange $::tags 0 end-
[llength $tags]]