]>
Commit | Line | Data |
---|---|---|
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 | ||
5 | set tcl_precision 17 | |
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 | |
11 | ||
12 | set ::host 127.0.0.1 | |
13 | set ::port 16379 | |
14 | set ::traceleaks 0 | |
15 | set ::valgrind 0 | |
16 | set ::verbose 0 | |
17 | set ::denytags {} | |
18 | set ::allowtags {} | |
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. | |
23 | ||
24 | proc execute_tests name { | |
25 | set path "tests/$name.tcl" | |
26 | set ::curfile $path | |
27 | source $path | |
28 | } | |
29 | ||
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. | |
33 | set ::servers {} | |
34 | proc srv {args} { | |
35 | set level 0 | |
36 | if {[string is integer [lindex $args 0]]} { | |
37 | set level [lindex $args 0] | |
38 | set property [lindex $args 1] | |
39 | } else { | |
40 | set property [lindex $args 0] | |
41 | } | |
42 | set srv [lindex $::servers end+$level] | |
43 | dict get $srv $property | |
44 | } | |
45 | ||
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. | |
49 | proc r {args} { | |
50 | set level 0 | |
51 | if {[string is integer [lindex $args 0]]} { | |
52 | set level [lindex $args 0] | |
53 | set args [lrange $args 1 end] | |
54 | } | |
55 | [srv $level "client"] {*}$args | |
56 | } | |
57 | ||
58 | proc reconnect {args} { | |
59 | set level [lindex $args 0] | |
60 | if {[string length $level] == 0 || ![string is integer $level]} { | |
61 | set level 0 | |
62 | } | |
63 | ||
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 | |
70 | ||
71 | # select the right db when we don't have to authenticate | |
72 | if {![dict exists $config "requirepass"]} { | |
73 | $client select 9 | |
74 | } | |
75 | ||
76 | # re-set $srv in the servers list | |
77 | set ::servers [lreplace $::servers end+$level 1 $srv] | |
78 | } | |
79 | ||
80 | proc redis_deferring_client {args} { | |
81 | set level 0 | |
82 | if {[llength $args] > 0 && [string is integer [lindex $args 0]]} { | |
83 | set level [lindex $args 0] | |
84 | set args [lrange $args 1 end] | |
85 | } | |
86 | ||
87 | # create client that defers reading reply | |
88 | set client [redis [srv $level "host"] [srv $level "port"] 1] | |
89 | ||
90 | # select the right db and read the response (OK) | |
91 | $client select 9 | |
92 | $client read | |
93 | return $client | |
94 | } | |
95 | ||
96 | # Provide easy access to INFO properties. Same semantic as "proc r". | |
97 | proc s {args} { | |
98 | set level 0 | |
99 | if {[string is integer [lindex $args 0]]} { | |
100 | set level [lindex $args 0] | |
101 | set args [lrange $args 1 end] | |
102 | } | |
103 | status [srv $level "client"] [lindex $args 0] | |
104 | } | |
105 | ||
106 | proc cleanup {} { | |
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.*]} | |
110 | } | |
111 | ||
112 | proc execute_everything {} { | |
113 | if 0 { | |
114 | # Use this when hacking on new tests. | |
115 | set ::verbose 1 | |
116 | execute_tests "unit/first" | |
117 | return | |
118 | } | |
119 | ||
120 | execute_tests "unit/printver" | |
121 | execute_tests "unit/auth" | |
122 | execute_tests "unit/protocol" | |
123 | execute_tests "unit/basic" | |
124 | execute_tests "unit/type/list" | |
125 | execute_tests "unit/type/set" | |
126 | execute_tests "unit/type/zset" | |
127 | execute_tests "unit/type/hash" | |
128 | execute_tests "unit/sort" | |
129 | execute_tests "unit/expire" | |
130 | execute_tests "unit/other" | |
131 | execute_tests "unit/cas" | |
132 | execute_tests "unit/quit" | |
133 | execute_tests "integration/replication" | |
134 | execute_tests "integration/aof" | |
135 | execute_tests "unit/pubsub" | |
136 | execute_tests "unit/slowlog" | |
137 | } | |
138 | ||
139 | proc main {} { | |
140 | cleanup | |
141 | set exit_with_error 0 | |
142 | ||
143 | if {[string length $::file] > 0} { | |
144 | foreach {file} [split $::file ,] { | |
145 | execute_tests $file | |
146 | } | |
147 | } else { | |
148 | execute_everything | |
149 | } | |
150 | ||
151 | cleanup | |
152 | puts "\n[expr $::num_tests] tests, $::num_passed passed, $::num_failed failed\n" | |
153 | if {$::num_failed > 0} { | |
154 | set curheader "" | |
155 | puts "Failures:" | |
156 | foreach {test} $::tests_failed { | |
157 | set header [lindex $test 0] | |
158 | append header " (" | |
159 | append header [join [lindex $test 1] ","] | |
160 | append header ")" | |
161 | ||
162 | if {$curheader ne $header} { | |
163 | set curheader $header | |
164 | puts "\n$curheader:" | |
165 | } | |
166 | ||
167 | set name [lindex $test 2] | |
168 | set msg [lindex $test 3] | |
169 | puts "- $name: $msg" | |
170 | } | |
171 | ||
172 | puts "" | |
173 | incr exit_with_error | |
174 | } | |
175 | ||
176 | if {[string length $::valgrind_errors]} { | |
177 | puts "Valgrind errors:\n$::valgrind_errors" | |
178 | incr exit_with_error | |
179 | } | |
180 | if {$exit_with_error} {exit 1} | |
181 | } | |
182 | ||
183 | # parse arguments | |
184 | for {set j 0} {$j < [llength $argv]} {incr j} { | |
185 | set opt [lindex $argv $j] | |
186 | set arg [lindex $argv [expr $j+1]] | |
187 | if {$opt eq {--tags}} { | |
188 | foreach tag $arg { | |
189 | if {[string index $tag 0] eq "-"} { | |
190 | lappend ::denytags [string range $tag 1 end] | |
191 | } else { | |
192 | lappend ::allowtags $tag | |
193 | } | |
194 | } | |
195 | incr j | |
196 | } elseif {$opt eq {--valgrind}} { | |
197 | set ::valgrind 1 | |
198 | } elseif {$opt eq {--file}} { | |
199 | set ::file $arg | |
200 | incr j | |
201 | } elseif {$opt eq {--host}} { | |
202 | set ::external 1 | |
203 | set ::host $arg | |
204 | incr j | |
205 | } elseif {$opt eq {--port}} { | |
206 | set ::port $arg | |
207 | incr j | |
208 | } elseif {$opt eq {--verbose}} { | |
209 | set ::verbose 1 | |
210 | } else { | |
211 | puts "Wrong argument: $opt" | |
212 | exit 1 | |
213 | } | |
214 | } | |
215 | ||
216 | if {[catch { main } err]} { | |
217 | if {[string length $err] > 0} { | |
218 | # only display error when not generated by the test suite | |
219 | if {$err ne "exception"} { | |
220 | puts $::errorInfo | |
221 | } | |
222 | exit 1 | |
223 | } | |
224 | } |