2010-05-14 15:31:11 +00:00
|
|
|
# Redis test suite. Copyright (C) 2009 Salvatore Sanfilippo antirez@gmail.com
|
|
|
|
# This softare is released under the BSD License. See the COPYING file for
|
|
|
|
# more information.
|
|
|
|
|
|
|
|
set tcl_precision 17
|
2010-05-14 16:48:33 +00:00
|
|
|
source tests/support/redis.tcl
|
|
|
|
source tests/support/server.tcl
|
|
|
|
source tests/support/tmpfile.tcl
|
|
|
|
source tests/support/test.tcl
|
|
|
|
source tests/support/util.tcl
|
2010-05-14 15:31:11 +00:00
|
|
|
|
|
|
|
set ::host 127.0.0.1
|
2010-05-14 15:42:07 +00:00
|
|
|
set ::port 16379
|
2010-05-14 15:31:11 +00:00
|
|
|
set ::traceleaks 0
|
2010-05-21 10:00:13 +00:00
|
|
|
set ::valgrind 0
|
2010-05-14 15:31:11 +00:00
|
|
|
|
|
|
|
proc execute_tests name {
|
2010-05-14 16:48:33 +00:00
|
|
|
source "tests/$name.tcl"
|
2010-05-14 15:31:11 +00:00
|
|
|
}
|
|
|
|
|
2010-05-14 18:50:32 +00:00
|
|
|
# Setup a list to hold a stack of server configs. When calls to start_server
|
|
|
|
# are nested, use "srv 0 pid" to get the pid of the inner server. To access
|
|
|
|
# outer servers, use "srv -1 pid" etcetera.
|
|
|
|
set ::servers {}
|
|
|
|
proc srv {level property} {
|
|
|
|
set srv [lindex $::servers end+$level]
|
|
|
|
dict get $srv $property
|
|
|
|
}
|
|
|
|
|
|
|
|
# Provide easy access to the client for the inner server. It's possible to
|
|
|
|
# prepend the argument list with a negative level to access clients for
|
|
|
|
# servers running in outer blocks.
|
2010-05-14 15:31:11 +00:00
|
|
|
proc r {args} {
|
2010-05-14 18:50:32 +00:00
|
|
|
set level 0
|
|
|
|
if {[string is integer [lindex $args 0]]} {
|
|
|
|
set level [lindex $args 0]
|
|
|
|
set args [lrange $args 1 end]
|
|
|
|
}
|
|
|
|
[srv $level "client"] {*}$args
|
|
|
|
}
|
|
|
|
|
|
|
|
# Provide easy access to INFO properties. Same semantic as "proc r".
|
|
|
|
proc s {args} {
|
|
|
|
set level 0
|
|
|
|
if {[string is integer [lindex $args 0]]} {
|
|
|
|
set level [lindex $args 0]
|
|
|
|
set args [lrange $args 1 end]
|
|
|
|
}
|
|
|
|
status [srv $level "client"] [lindex $args 0]
|
2010-05-14 15:31:11 +00:00
|
|
|
}
|
|
|
|
|
2010-05-20 11:58:58 +00:00
|
|
|
proc cleanup {} {
|
2010-05-21 10:00:13 +00:00
|
|
|
catch {exec rm -rf {*}[glob tests/tmp/redis.conf.*]}
|
|
|
|
catch {exec rm -rf {*}[glob tests/tmp/server.*]}
|
2010-05-20 11:58:58 +00:00
|
|
|
}
|
|
|
|
|
2010-05-14 15:31:11 +00:00
|
|
|
proc main {} {
|
2010-05-20 11:58:58 +00:00
|
|
|
cleanup
|
2010-05-14 15:31:11 +00:00
|
|
|
execute_tests "unit/auth"
|
|
|
|
execute_tests "unit/protocol"
|
|
|
|
execute_tests "unit/basic"
|
|
|
|
execute_tests "unit/type/list"
|
|
|
|
execute_tests "unit/type/set"
|
|
|
|
execute_tests "unit/type/zset"
|
|
|
|
execute_tests "unit/type/hash"
|
|
|
|
execute_tests "unit/sort"
|
|
|
|
execute_tests "unit/expire"
|
|
|
|
execute_tests "unit/other"
|
2010-05-25 12:04:46 +00:00
|
|
|
execute_tests "unit/cas"
|
2010-05-14 18:50:58 +00:00
|
|
|
execute_tests "integration/replication"
|
2010-05-19 12:33:39 +00:00
|
|
|
execute_tests "integration/aof"
|
2010-05-20 11:58:58 +00:00
|
|
|
|
|
|
|
# run tests with VM enabled
|
|
|
|
set ::global_overrides [list [list vm-enabled yes]]
|
|
|
|
execute_tests "unit/protocol"
|
|
|
|
execute_tests "unit/basic"
|
|
|
|
execute_tests "unit/type/list"
|
|
|
|
execute_tests "unit/type/set"
|
|
|
|
execute_tests "unit/type/zset"
|
|
|
|
execute_tests "unit/type/hash"
|
|
|
|
execute_tests "unit/sort"
|
|
|
|
execute_tests "unit/expire"
|
|
|
|
execute_tests "unit/other"
|
2010-05-25 12:04:46 +00:00
|
|
|
execute_tests "unit/cas"
|
2010-05-14 15:31:11 +00:00
|
|
|
|
|
|
|
puts "\n[expr $::passed+$::failed] tests, $::passed passed, $::failed failed"
|
|
|
|
if {$::failed > 0} {
|
|
|
|
puts "\n*** WARNING!!! $::failed FAILED TESTS ***\n"
|
|
|
|
}
|
2010-05-20 11:58:58 +00:00
|
|
|
|
|
|
|
cleanup
|
2010-05-14 15:31:11 +00:00
|
|
|
}
|
|
|
|
|
2010-06-02 19:20:29 +00:00
|
|
|
if {[catch { main } err]} {
|
|
|
|
if {[string length $err] > 0} {
|
|
|
|
# only display error when not generated by the test suite
|
|
|
|
if {$err ne "exception"} {
|
|
|
|
puts $err
|
|
|
|
}
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
}
|