]> git.saurik.com Git - redis.git/blame - tests/support/server.tcl
show initial querybuf bytes on querybuf overflow.
[redis.git] / tests / support / server.tcl
CommitLineData
6e0e5bed
PN
1set ::global_overrides {}
2set ::tags {}
cabe03eb 3set ::valgrind_errors {}
6e0e5bed 4
98578b57
PN
5proc error_and_quit {config_file error} {
6 puts "!!COULD NOT START REDIS-SERVER\n"
7 puts "CONFIGURATION:"
8 puts [exec cat $config_file]
9 puts "\nERROR:"
10 puts [string trim $error]
11 exit 1
12}
13
c4669d25 14proc check_valgrind_errors stderr {
15 set fd [open $stderr]
16 set buf [read $fd]
17 close $fd
18
19 if {![regexp -- {ERROR SUMMARY: 0 errors} $buf] ||
cabe03eb 20 (![regexp -- {definitely lost: 0 bytes} $buf] &&
21 ![regexp -- {no leaks are possible} $buf])} {
4c378d7f 22 send_data_packet $::test_server_fd err "Valgrind error: $buf\n"
c4669d25 23 }
24}
25
4fb6d00c 26proc kill_server config {
7d04fc75 27 # nothing to kill when running against external server
28 if {$::external} return
29
53cbf66c
PN
30 # nevermind if its already dead
31 if {![is_alive $config]} { return }
4fb6d00c
PN
32 set pid [dict get $config pid]
33
239515bc 34 # check for leaks
436f18b6
PN
35 if {![dict exists $config "skipleaks"]} {
36 catch {
37 if {[string match {*Darwin*} [exec uname -a]]} {
5a9fcb87
PN
38 tags {"leaks"} {
39 test "Check for memory leaks (pid $pid)" {
40 exec leaks $pid
41 } {*0 leaks*}
42 }
436f18b6 43 }
239515bc
PN
44 }
45 }
46
4fb6d00c 47 # kill server and wait for the process to be totally exited
53cbf66c
PN
48 while {[is_alive $config]} {
49 if {[incr wait 10] % 1000 == 0} {
50 puts "Waiting for process $pid to exit..."
4fb6d00c 51 }
f166bb1d 52 catch {exec kill $pid}
4fb6d00c
PN
53 after 10
54 }
c4669d25 55
56 # Check valgrind errors if needed
57 if {$::valgrind} {
58 check_valgrind_errors [dict get $config stderr]
59 }
4fb6d00c
PN
60}
61
53cbf66c
PN
62proc is_alive config {
63 set pid [dict get $config pid]
64 if {[catch {exec ps -p $pid} err]} {
65 return 0
66 } else {
67 return 1
68 }
69}
70
c4669d25 71proc ping_server {host port} {
72 set retval 0
73 if {[catch {
74 set fd [socket $::host $::port]
75 fconfigure $fd -translation binary
76 puts $fd "PING\r\n"
77 flush $fd
78 set reply [gets $fd]
79 if {[string range $reply 0 4] eq {+PONG} ||
80 [string range $reply 0 3] eq {-ERR}} {
81 set retval 1
82 }
83 close $fd
84 } e]} {
6f8a32d5
PN
85 if {$::verbose} {
86 puts -nonewline "."
87 }
08f55b78 88 } else {
6f8a32d5
PN
89 if {$::verbose} {
90 puts -nonewline "ok"
91 }
c4669d25 92 }
93 return $retval
94}
95
6e0e5bed
PN
96# doesn't really belong here, but highly coupled to code in start_server
97proc tags {tags code} {
98 set ::tags [concat $::tags $tags]
99 uplevel 1 $code
100 set ::tags [lrange $::tags 0 end-[llength $tags]]
101}
102
9e5d2e8b 103proc start_server {options {code undefined}} {
7d04fc75 104 # If we are runnign against an external server, we just push the
105 # host/port pair in the stack the first time
106 if {$::external} {
107 if {[llength $::servers] == 0} {
108 set srv {}
109 dict set srv "host" $::host
110 dict set srv "port" $::port
111 set client [redis $::host $::port]
112 dict set srv "client" $client
113 $client select 9
114
115 # append the server to the stack
116 lappend ::servers $srv
117 }
118 uplevel 1 $code
119 return
120 }
121
9e5d2e8b
PN
122 # setup defaults
123 set baseconfig "default.conf"
124 set overrides {}
6e0e5bed 125 set tags {}
9e5d2e8b
PN
126
127 # parse options
128 foreach {option value} $options {
129 switch $option {
6e0e5bed
PN
130 "config" {
131 set baseconfig $value }
132 "overrides" {
133 set overrides $value }
134 "tags" {
135 set tags $value
136 set ::tags [concat $::tags $value] }
137 default {
138 error "Unknown option $option" }
9e5d2e8b
PN
139 }
140 }
141
142 set data [split [exec cat "tests/assets/$baseconfig"] "\n"]
98578b57
PN
143 set config {}
144 foreach line $data {
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
150 }
151 }
152
153 # use a different directory every time a server is started
154 dict set config dir [tmpdir server]
155
47bebf15 156 # start every server on a different port
24bfb570 157 set ::port [find_available_port [expr {$::port+1}]]
158 dict set config port $::port
47bebf15 159
f166bb1d 160 # apply overrides from global space and arguments
9e5d2e8b 161 foreach {directive arguments} [concat $::global_overrides $overrides] {
98578b57
PN
162 dict set config $directive $arguments
163 }
164
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]
171 }
172 close $fp
173
174 set stdout [format "%s/%s" [dict get $config "dir"] "stdout"]
175 set stderr [format "%s/%s" [dict get $config "dir"] "stderr"]
c4669d25 176
177 if {$::valgrind} {
4b918769 178 exec valgrind --suppressions=src/valgrind.sup src/redis-server $config_file > $stdout 2> $stderr &
c4669d25 179 } else {
e2641e09 180 exec src/redis-server $config_file > $stdout 2> $stderr &
c4669d25 181 }
98578b57
PN
182
183 # check that the server actually started
08f55b78 184 # ugly but tries to be as fast as possible...
5ab1461f 185 set retrynum 100
08f55b78 186 set serverisup 0
187
6f8a32d5
PN
188 if {$::verbose} {
189 puts -nonewline "=== ($tags) Starting server ${::host}:${::port} "
190 }
191
08f55b78 192 after 10
193 if {$code ne "undefined"} {
194 while {[incr retrynum -1]} {
195 catch {
196 if {[ping_server $::host $::port]} {
197 set serverisup 1
198 }
199 }
200 if {$serverisup} break
201 after 50
202 }
203 } else {
204 set serverisup 1
205 }
6f8a32d5
PN
206
207 if {$::verbose} {
208 puts ""
209 }
08f55b78 210
211 if {!$serverisup} {
98578b57
PN
212 error_and_quit $config_file [exec cat $stderr]
213 }
214
98578b57 215 # find out the pid
c4669d25 216 while {![info exists pid]} {
72dff2c0 217 regexp {\[(\d+)\]} [exec cat $stdout] _ pid
c4669d25 218 after 100
219 }
98578b57 220
53cbf66c 221 # setup properties to be able to initialize a client object
98578b57
PN
222 set host $::host
223 set port $::port
224 if {[dict exists $config bind]} { set host [dict get $config bind] }
225 if {[dict exists $config port]} { set port [dict get $config port] }
98578b57 226
4fb6d00c 227 # setup config dict
941c9fa2
PN
228 dict set srv "config_file" $config_file
229 dict set srv "config" $config
1c4114be
PN
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
4fb6d00c 235
53cbf66c
PN
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
98578b57 238 if {$code ne "undefined"} {
53cbf66c
PN
239 set line [exec head -n1 $stdout]
240 if {[string match {*already in use*} $line]} {
241 error_and_quit $config_file $line
242 }
243
244 while 1 {
245 # check that the server actually started and is ready for connections
246 if {[exec cat $stdout | grep "ready to accept" | wc -l] > 0} {
247 break
248 }
249 after 10
250 }
251
1c4114be
PN
252 # append the server to the stack
253 lappend ::servers $srv
941c9fa2
PN
254
255 # connect client (after server dict is put on the stack)
256 reconnect
257
98578b57 258 # execute provided block
6f8a32d5
PN
259 set num_tests $::num_tests
260 if {[catch { uplevel 1 $code } error]} {
261 set backtrace $::errorInfo
262
263 # Kill the server without checking for leaks
264 dict set srv "skipleaks" 1
265 kill_server $srv
266
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} {
271 puts "$warnings"
272 } else {
273 puts "(none)"
274 }
275 puts ""
276
277 error $error $backtrace
a53ebb4c
PN
278 }
279
6f8a32d5
PN
280 # Don't do the leak check when no tests were run
281 if {$num_tests == $::num_tests} {
6e0e5bed
PN
282 dict set srv "skipleaks" 1
283 }
98578b57 284
1c4114be
PN
285 # pop the server object
286 set ::servers [lrange $::servers 0 end-1]
436f18b6 287
f6fa411d 288 set ::tags [lrange $::tags 0 end-[llength $tags]]
436f18b6 289 kill_server $srv
98578b57 290 } else {
f6fa411d 291 set ::tags [lrange $::tags 0 end-[llength $tags]]
1c4114be 292 set _ $srv
98578b57
PN
293 }
294}