]>
git.saurik.com Git - redis.git/blob - tests/test_helper.tcl
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
6 source tests
/support
/redis.tcl
7 source tests
/support
/server.tcl
8 source tests
/support
/tmpfile.tcl
9 source tests
/support
/test.tcl
10 source tests
/support
/util.tcl
19 set ::external 0; # If "1" this means, we are running against external instance
20 set ::file ""; # If set, runs only the tests in this comma separated list
21 set ::curfile ""; # Hold the filename of the current suite
22 set ::diskstore 0; # Don't touch this by hand. The test itself will toggle it.
24 proc execute_tests name
{
25 set path
"tests/$name.tcl"
30 # Setup a list to hold a stack of server configs. When calls to start_server
31 # are nested, use "srv 0 pid" to get the pid of the inner server. To access
32 # outer servers, use "srv -1 pid" etcetera.
36 if {[string is integer
[lindex $args 0]]} {
37 set level
[lindex $args 0]
38 set property
[lindex $args 1]
40 set property
[lindex $args 0]
42 set srv
[lindex $::servers end
+$level]
43 dict get
$srv $property
46 # Provide easy access to the client for the inner server. It's possible to
47 # prepend the argument list with a negative level to access clients for
48 # servers running in outer blocks.
51 if {[string is integer
[lindex $args 0]]} {
52 set level
[lindex $args 0]
53 set args
[lrange $args 1 end
]
55 [srv
$level "client"] {*}$args
58 proc reconnect
{args
} {
59 set level
[lindex $args 0]
60 if {[string length
$level] == 0 ||
![string is integer
$level]} {
64 set srv
[lindex $::servers end
+$level]
65 set host
[dict get
$srv "host"]
66 set port
[dict get
$srv "port"]
67 set config
[dict get
$srv "config"]
68 set client
[redis
$host $port]
69 dict
set srv
"client" $client
71 # select the right db when we don't have to authenticate
72 if {![dict exists
$config "requirepass"]} {
76 # re-set $srv in the servers list
77 set ::servers [lreplace $::servers end
+$level 1 $srv]
80 proc redis_deferring_client
{args
} {
82 if {[llength $args] > 0 && [string is integer
[lindex $args 0]]} {
83 set level
[lindex $args 0]
84 set args
[lrange $args 1 end
]
87 # create client that defers reading reply
88 set client
[redis
[srv
$level "host"] [srv
$level "port"] 1]
90 # select the right db and read the response (OK)
96 # Provide easy access to INFO properties. Same semantic as "proc r".
99 if {[string is integer
[lindex $args 0]]} {
100 set level
[lindex $args 0]
101 set args
[lrange $args 1 end
]
103 status
[srv
$level "client"] [lindex $args 0]
107 puts "Cleanup: warning may take some time..."
108 catch {exec rm
-rf {*}[glob tests
/tmp
/redis.conf.
*]}
109 catch {exec rm
-rf {*}[glob tests
/tmp
/server.
*]}
112 proc execute_everything
{} {
113 execute_tests
"unit/auth"
114 execute_tests
"unit/protocol"
115 execute_tests
"unit/basic"
116 execute_tests
"unit/type/list"
117 execute_tests
"unit/type/set"
118 execute_tests
"unit/type/zset"
119 execute_tests
"unit/type/hash"
120 execute_tests
"unit/sort"
121 execute_tests
"unit/expire"
122 execute_tests
"unit/other"
123 execute_tests
"unit/cas"
124 execute_tests
"unit/quit"
125 execute_tests
"integration/replication"
126 execute_tests
"integration/aof"
127 # execute_tests "integration/redis-cli"
128 execute_tests
"unit/pubsub"
130 # run tests with diskstore enabled
131 puts "\nRunning diskstore tests... this is slow, press Ctrl+C if not interested.."
133 lappend ::denytags nodiskstore
134 set ::global_overrides {diskstore-enabled yes
}
135 execute_tests
"unit/protocol"
136 execute_tests
"unit/basic"
137 execute_tests
"unit/type/list"
138 execute_tests
"unit/type/set"
139 execute_tests
"unit/type/zset"
140 execute_tests
"unit/type/hash"
141 execute_tests
"unit/sort"
142 execute_tests
"unit/expire"
143 execute_tests
"unit/other"
144 execute_tests
"unit/cas"
150 if {[string length
$::file] > 0} {
151 foreach {file} [split $::file ,] {
159 puts "\n[expr $::num_tests] tests, $::num_passed passed, $::num_failed failed\n"
160 if {$::num_failed > 0} {
163 foreach {test
} $::tests_failed {
164 set header
[lindex $test 0]
166 append header
[join [lindex $test 1] ","]
169 if {$curheader ne
$header} {
170 set curheader
$header
174 set name
[lindex $test 2]
175 set msg
[lindex $test 3]
185 for {set j
0} {$j < [llength $argv]} {incr j
} {
186 set opt
[lindex $argv $j]
187 set arg
[lindex $argv [expr $j+1]]
188 if {$opt eq
{--tags}} {
190 if {[string index
$tag 0] eq
"-"} {
191 lappend ::denytags [string range
$tag 1 end
]
193 lappend ::allowtags $tag
197 } elseif
{$opt eq
{--valgrind}} {
199 } elseif
{$opt eq
{--file}} {
202 } elseif
{$opt eq
{--host}} {
206 } elseif
{$opt eq
{--port}} {
209 } elseif
{$opt eq
{--verbose}} {
212 puts "Wrong argument: $opt"
217 if {[catch { main
} err
]} {
218 if {[string length
$err] > 0} {
219 # only display error when not generated by the test suite
220 if {$err ne
"exception"} {