1 set ::global_overrides {}
3 set ::valgrind_errors {}
5 proc error_and_quit
{config_file
error} {
6 puts "!!COULD NOT START REDIS-SERVER\n"
8 puts [exec cat
$config_file]
10 puts [string trim
$error]
14 proc check_valgrind_errors stderr
{
19 if {![regexp -- {ERROR SUMMARY
: 0 errors
} $buf] ||
20 (![regexp -- {definitely lost
: 0 bytes
} $buf] &&
21 ![regexp -- {no leaks are possible
} $buf])} {
22 send_data_packet
$::test_server_fd err
"Valgrind error: $buf\n"
26 proc kill_server config
{
27 # nothing to kill when running against external server
28 if {$::external} return
30 # nevermind if its already dead
31 if {![is_alive
$config]} { return }
32 set pid [dict get
$config pid]
35 if {![dict exists
$config "skipleaks"]} {
37 if {[string match
{*Darwin
*} [exec uname
-a]]} {
39 test
"Check for memory leaks (pid $pid)" {
47 # kill server and wait for the process to be totally exited
48 while {[is_alive
$config]} {
49 if {[incr wait
10] % 1000 == 0} {
50 puts "Waiting for process $pid to exit..."
52 catch {exec kill
$pid}
56 # Check valgrind errors if needed
58 check_valgrind_errors
[dict get
$config stderr
]
62 proc is_alive config
{
63 set pid [dict get
$config pid]
64 if {[catch {exec ps
-p $pid} err
]} {
71 proc ping_server
{host port
} {
74 set fd
[socket $::host $::port]
75 fconfigure $fd -translation binary
79 if {[string range
$reply 0 4] eq
{+PONG
} ||
80 [string range
$reply 0 3] eq
{-ERR}} {
96 # doesn't really belong here, but highly coupled to code in start_server
97 proc tags
{tags code
} {
98 set ::tags [concat $::tags $tags]
100 set ::tags [lrange $::tags 0 end-
[llength $tags]]
103 proc start_server
{options {code undefined
}} {
104 # If we are runnign against an external server, we just push the
105 # host/port pair in the stack the first time
107 if {[llength $::servers] == 0} {
109 dict
set srv
"host" $::host
110 dict
set srv
"port" $::port
111 set client
[redis
$::host $::port]
112 dict
set srv
"client" $client
115 # append the server to the stack
116 lappend ::servers $srv
123 set baseconfig
"default.conf"
128 foreach {option value
} $options {
131 set baseconfig
$value }
133 set overrides
$value }
136 set ::tags [concat $::tags $value] }
138 error "Unknown option $option" }
142 set data
[split [exec cat
"tests/assets/$baseconfig"] "\n"]
145 if {[string length
$line] > 0 && [string index
$line 0] ne
"#"} {
146 set elements
[split $line " "]
147 set directive
[lrange $elements 0 0]
148 set arguments
[lrange $elements 1 end
]
149 dict
set config
$directive $arguments
153 # use a different directory every time a server is started
154 dict
set config dir
[tmpdir server
]
156 # start every server on a different port
157 set ::port [find_available_port
[expr {$::port+1}]]
158 dict
set config port
$::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]]