]> git.saurik.com Git - redis.git/blame - tests/test_helper.tcl
Contextualize comment.
[redis.git] / tests / test_helper.tcl
CommitLineData
98578b57
PN
1# Redis test suite. Copyright (C) 2009 Salvatore Sanfilippo antirez@gmail.com
2# This softare is released under the BSD License. See the COPYING file for
3# more information.
4
5set tcl_precision 17
ab72b483 6source tests/support/redis.tcl
7source tests/support/server.tcl
8source tests/support/tmpfile.tcl
9source tests/support/test.tcl
10source tests/support/util.tcl
98578b57 11
13566085 12set ::all_tests {
13 unit/printver
14 unit/auth
15 unit/protocol
16 unit/basic
17 unit/type/list
be9250c8 18 unit/type/list-2
6209797d 19 unit/type/list-3
13566085 20 unit/type/set
21 unit/type/zset
22 unit/type/hash
23 unit/sort
24 unit/expire
25 unit/other
26 unit/cas
27 unit/quit
570bbcf8 28 unit/aofrw
13566085 29 integration/replication
569f84aa 30 integration/replication-2
31 integration/replication-3
13566085 32 integration/aof
ab060381 33 integration/rdb
13566085 34 unit/pubsub
35 unit/slowlog
0681c5ad 36 unit/scripting
243b783f 37 unit/maxmemory
f4bddefe 38 unit/introspection
efc8f6c1 39 unit/obuf-limits
13566085 40}
41# Index to the next test to run in the ::all_tests list.
42set ::next_test 0
43
98578b57 44set ::host 127.0.0.1
24bfb570 45set ::port 21111
e59a64b8 46set ::traceleaks 0
c4669d25 47set ::valgrind 0
322ea972 48set ::verbose 0
38b957d8 49set ::quiet 0
6e0e5bed
PN
50set ::denytags {}
51set ::allowtags {}
7d04fc75 52set ::external 0; # If "1" this means, we are running against external instance
9f1ae9ab 53set ::file ""; # If set, runs only the tests in this comma separated list
6f8a32d5 54set ::curfile ""; # Hold the filename of the current suite
524d515f 55set ::accurate 0; # If true runs fuzz tests with more iterations
04e2410d 56set ::force_failure 0
13566085 57
58# Set to 1 when we are running in client mode. The Redis test uses a
59# server-client model to run tests simultaneously. The server instance
60# runs the specified number of client instances that will actually run tests.
61# The server is responsible of showing the result to the user, and exit with
62# the appropriate exit code depending on the test outcome.
63set ::client 0
64set ::numclients 16
98578b57
PN
65
66proc execute_tests name {
6f8a32d5
PN
67 set path "tests/$name.tcl"
68 set ::curfile $path
69 source $path
36e790a0 70 send_data_packet $::test_server_fd done "$name"
98578b57
PN
71}
72
1c4114be
PN
73# Setup a list to hold a stack of server configs. When calls to start_server
74# are nested, use "srv 0 pid" to get the pid of the inner server. To access
75# outer servers, use "srv -1 pid" etcetera.
76set ::servers {}
f2dd4769
PN
77proc srv {args} {
78 set level 0
79 if {[string is integer [lindex $args 0]]} {
80 set level [lindex $args 0]
81 set property [lindex $args 1]
82 } else {
83 set property [lindex $args 0]
84 }
1c4114be
PN
85 set srv [lindex $::servers end+$level]
86 dict get $srv $property
87}
88
89# Provide easy access to the client for the inner server. It's possible to
90# prepend the argument list with a negative level to access clients for
91# servers running in outer blocks.
98578b57 92proc r {args} {
1c4114be
PN
93 set level 0
94 if {[string is integer [lindex $args 0]]} {
95 set level [lindex $args 0]
96 set args [lrange $args 1 end]
97 }
98 [srv $level "client"] {*}$args
99}
100
941c9fa2
PN
101proc reconnect {args} {
102 set level [lindex $args 0]
103 if {[string length $level] == 0 || ![string is integer $level]} {
104 set level 0
105 }
106
107 set srv [lindex $::servers end+$level]
108 set host [dict get $srv "host"]
109 set port [dict get $srv "port"]
110 set config [dict get $srv "config"]
111 set client [redis $host $port]
112 dict set srv "client" $client
113
114 # select the right db when we don't have to authenticate
115 if {![dict exists $config "requirepass"]} {
116 $client select 9
117 }
118
119 # re-set $srv in the servers list
414c3dea 120 lset ::servers end+$level $srv
941c9fa2
PN
121}
122
5eedc9c6
PN
123proc redis_deferring_client {args} {
124 set level 0
125 if {[llength $args] > 0 && [string is integer [lindex $args 0]]} {
126 set level [lindex $args 0]
127 set args [lrange $args 1 end]
128 }
129
130 # create client that defers reading reply
131 set client [redis [srv $level "host"] [srv $level "port"] 1]
132
133 # select the right db and read the response (OK)
134 $client select 9
135 $client read
136 return $client
137}
138
1c4114be
PN
139# Provide easy access to INFO properties. Same semantic as "proc r".
140proc s {args} {
141 set level 0
142 if {[string is integer [lindex $args 0]]} {
143 set level [lindex $args 0]
144 set args [lrange $args 1 end]
145 }
146 status [srv $level "client"] [lindex $args 0]
98578b57
PN
147}
148
f166bb1d 149proc cleanup {} {
38b957d8 150 if {!$::quiet} {puts -nonewline "Cleanup: may take some time... "}
13566085 151 flush stdout
c4669d25 152 catch {exec rm -rf {*}[glob tests/tmp/redis.conf.*]}
153 catch {exec rm -rf {*}[glob tests/tmp/server.*]}
38b957d8 154 if {!$::quiet} {puts "OK"}
f166bb1d
PN
155}
156
24bfb570 157proc find_available_port start {
158 for {set j $start} {$j < $start+1024} {incr j} {
159 if {[catch {
dfcf5a0a 160 set fd [socket 127.0.0.1 $j]
24bfb570 161 }]} {
dfcf5a0a 162 return $j
24bfb570 163 } else {
164 close $fd
165 }
166 }
167 if {$j == $start+1024} {
168 error "Can't find a non busy port in the $start-[expr {$start+1023}] range."
169 }
170}
171
13566085 172proc test_server_main {} {
9f1ae9ab 173 cleanup
13566085 174 # Open a listening socket, trying different ports in order to find a
175 # non busy one.
24bfb570 176 set port [find_available_port 11111]
38b957d8 177 if {!$::quiet} {
178 puts "Starting test server at port $port"
179 }
24bfb570 180 socket -server accept_test_clients $port
3fe40d6e 181
13566085 182 # Start the client instances
569f84aa 183 set ::clients_pids {}
24bfb570 184 set start_port [expr {$::port+100}]
13566085 185 for {set j 0} {$j < $::numclients} {incr j} {
24bfb570 186 set start_port [find_available_port $start_port]
569f84aa 187 set p [exec tclsh8.5 [info script] {*}$::argv \
24bfb570 188 --client $port --port $start_port &]
569f84aa 189 lappend ::clients_pids $p
24bfb570 190 incr start_port 10
13566085 191 }
9f1ae9ab 192
13566085 193 # Setup global state for the test server
194 set ::idle_clients {}
195 set ::active_clients {}
36e790a0 196 array set ::clients_start_time {}
197 set ::clients_time_history {}
04e2410d 198 set ::failed_tests {}
13566085 199
200 # Enter the event loop to handle clients I/O
201 after 100 test_server_cron
202 vwait forever
203}
204
205# This function gets called 10 times per second, for now does nothing but
206# may be used in the future in order to detect test clients taking too much
207# time to execute the task.
208proc test_server_cron {} {
209}
210
211proc accept_test_clients {fd addr port} {
212 fileevent $fd readable [list read_from_test_client $fd]
213}
214
215# This is the readable handler of our test server. Clients send us messages
216# in the form of a status code such and additional data. Supported
217# status types are:
218#
219# ready: the client is ready to execute the command. Only sent at client
220# startup. The server will queue the client FD in the list of idle
221# clients.
222# testing: just used to signal that a given test started.
223# ok: a test was executed with success.
224# err: a test was executed with an error.
225# exception: there was a runtime exception while executing the test.
226# done: all the specified test file was processed, this test client is
227# ready to accept a new task.
228proc read_from_test_client fd {
229 set bytes [gets $fd]
230 set payload [read $fd $bytes]
231 foreach {status data} $payload break
13566085 232 if {$status eq {ready}} {
38b957d8 233 if {!$::quiet} {
234 puts "\[$status\]: $data"
235 }
13566085 236 signal_idle_client $fd
237 } elseif {$status eq {done}} {
36e790a0 238 set elapsed [expr {[clock seconds]-$::clients_start_time($fd)}]
38b957d8 239 set all_tests_count [llength $::all_tests]
240 set running_tests_count [expr {[llength $::active_clients]-1}]
241 set completed_tests_count [expr {$::next_test-$running_tests_count}]
242 puts "\[$completed_tests_count/$all_tests_count [colorstr yellow $status]\]: $data ($elapsed seconds)"
36e790a0 243 lappend ::clients_time_history $elapsed $data
13566085 244 signal_idle_client $fd
3744824c 245 } elseif {$status eq {ok}} {
38b957d8 246 if {!$::quiet} {
247 puts "\[[colorstr green $status]\]: $data"
248 }
3744824c 249 } elseif {$status eq {err}} {
04e2410d 250 set err "\[[colorstr red $status]\]: $data"
251 puts $err
252 lappend ::failed_tests $err
569f84aa 253 } elseif {$status eq {exception}} {
254 puts "\[[colorstr red $status]\]: $data"
255 foreach p $::clients_pids {
256 catch {exec kill -9 $p}
9f1ae9ab 257 }
569f84aa 258 exit 1
daab1599 259 } elseif {$status eq {testing}} {
260 # No op
9f1ae9ab 261 } else {
38b957d8 262 if {!$::quiet} {
263 puts "\[$status\]: $data"
264 }
9f1ae9ab 265 }
13566085 266}
e39c8b50 267
13566085 268# A new client is idle. Remove it from the list of active clients and
269# if there are still test units to run, launch them.
270proc signal_idle_client fd {
271 # Remove this fd from the list of active clients.
272 set ::active_clients \
273 [lsearch -all -inline -not -exact $::active_clients $fd]
274 # New unit to process?
275 if {$::next_test != [llength $::all_tests]} {
38b957d8 276 if {!$::quiet} {
277 puts [colorstr bold-white "Testing [lindex $::all_tests $::next_test]"]
278 }
36e790a0 279 set ::clients_start_time($fd) [clock seconds]
13566085 280 send_data_packet $fd run [lindex $::all_tests $::next_test]
281 lappend ::active_clients $fd
282 incr ::next_test
9f1ae9ab 283 } else {
13566085 284 lappend ::idle_clients $fd
285 if {[llength $::active_clients] == 0} {
286 the_end
6f8a32d5 287 }
9f1ae9ab 288 }
13566085 289}
6f8a32d5 290
13566085 291# The the_end funciton gets called when all the test units were already
292# executed, so the test finished.
293proc the_end {} {
294 # TODO: print the status, exit with the rigth exit code.
04e2410d 295 puts "\n The End\n"
36e790a0 296 puts "Execution time of different units:"
297 foreach {time name} $::clients_time_history {
298 puts " $time seconds - $name"
299 }
04e2410d 300 if {[llength $::failed_tests]} {
121ffc85 301 puts "\n[colorstr bold-red {!!! WARNING}] The following tests failed:\n"
04e2410d 302 foreach failed $::failed_tests {
303 puts "*** $failed"
304 }
c7c16a32 305 cleanup
e39c8b50 306 exit 1
04e2410d 307 } else {
308 puts "\n[colorstr bold-white {\o/}] [colorstr bold-green {All tests passed without errors!}]\n"
c7c16a32 309 cleanup
04e2410d 310 exit 0
98578b57 311 }
98578b57
PN
312}
313
13566085 314# The client is not even driven (the test server is instead) as we just need
315# to read the command, execute, reply... all this in a loop.
316proc test_client_main server_port {
317 set ::test_server_fd [socket localhost $server_port]
318 send_data_packet $::test_server_fd ready [pid]
319 while 1 {
320 set bytes [gets $::test_server_fd]
321 set payload [read $::test_server_fd $bytes]
322 foreach {cmd data} $payload break
323 if {$cmd eq {run}} {
324 execute_tests $data
325 } else {
326 error "Unknown test client command: $cmd"
6f8a32d5 327 }
98578b57 328 }
13566085 329}
cabe03eb 330
13566085 331proc send_data_packet {fd status data} {
332 set payload [list $status $data]
333 puts $fd [string length $payload]
334 puts -nonewline $fd $payload
335 flush $fd
98578b57
PN
336}
337
e4715f00 338proc print_help_screen {} {
339 puts [join {
340 "--valgrind Run the test over valgrind."
341 "--accurate Run slow randomized tests for more iterations."
38b957d8 342 "--quiet Don't show individual tests."
e4715f00 343 "--single <unit> Just execute the specified unit (see next option)."
344 "--list-tests List all the available test units."
345 "--force-failure Force the execution of a test that always fails."
346 "--help Print this help screen."
347 } "\n"]
348}
349
73bd6c58
PN
350# parse arguments
351for {set j 0} {$j < [llength $argv]} {incr j} {
352 set opt [lindex $argv $j]
353 set arg [lindex $argv [expr $j+1]]
354 if {$opt eq {--tags}} {
355 foreach tag $arg {
356 if {[string index $tag 0] eq "-"} {
357 lappend ::denytags [string range $tag 1 end]
358 } else {
359 lappend ::allowtags $tag
360 }
361 }
362 incr j
4b918769 363 } elseif {$opt eq {--valgrind}} {
364 set ::valgrind 1
38b957d8 365 } elseif {$opt eq {--quiet}} {
366 set ::quiet 1
7d04fc75 367 } elseif {$opt eq {--host}} {
368 set ::external 1
369 set ::host $arg
370 incr j
371 } elseif {$opt eq {--port}} {
372 set ::port $arg
373 incr j
524d515f 374 } elseif {$opt eq {--accurate}} {
375 set ::accurate 1
04e2410d 376 } elseif {$opt eq {--force-failure}} {
377 set ::force_failure 1
524d515f 378 } elseif {$opt eq {--single}} {
379 set ::all_tests $arg
380 incr j
381 } elseif {$opt eq {--list-tests}} {
382 foreach t $::all_tests {
383 puts $t
384 }
385 exit 0
13566085 386 } elseif {$opt eq {--client}} {
387 set ::client 1
388 set ::test_server_port $arg
389 incr j
524d515f 390 } elseif {$opt eq {--help}} {
e4715f00 391 print_help_screen
524d515f 392 exit 0
73bd6c58
PN
393 } else {
394 puts "Wrong argument: $opt"
395 exit 1
396 }
397}
398
13566085 399if {$::client} {
400 if {[catch { test_client_main $::test_server_port } err]} {
401 set estr "Executing test client: $err.\n$::errorInfo"
402 if {[catch {send_data_packet $::test_server_fd exception $estr}]} {
403 puts $estr
436f18b6
PN
404 }
405 exit 1
406 }
13566085 407} else {
408 if {[catch { test_server_main } err]} {
409 if {[string length $err] > 0} {
410 # only display error when not generated by the test suite
411 if {$err ne "exception"} {
412 puts $::errorInfo
413 }
414 exit 1
415 }
416 }
436f18b6 417}