]>
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
18 set ::external 0; # If "1" this means, we are running against external instance
20 proc execute_tests name
{
21 source "tests/$name.tcl"
24 # Setup a list to hold a stack of server configs. When calls to start_server
25 # are nested, use "srv 0 pid" to get the pid of the inner server. To access
26 # outer servers, use "srv -1 pid" etcetera.
30 if {[string is integer
[lindex $args 0]]} {
31 set level
[lindex $args 0]
32 set property
[lindex $args 1]
34 set property
[lindex $args 0]
36 set srv
[lindex $::servers end
+$level]
37 dict get
$srv $property
40 # Provide easy access to the client for the inner server. It's possible to
41 # prepend the argument list with a negative level to access clients for
42 # servers running in outer blocks.
45 if {[string is integer
[lindex $args 0]]} {
46 set level
[lindex $args 0]
47 set args
[lrange $args 1 end
]
49 [srv
$level "client"] {*}$args
52 proc redis_deferring_client
{args
} {
54 if {[llength $args] > 0 && [string is integer
[lindex $args 0]]} {
55 set level
[lindex $args 0]
56 set args
[lrange $args 1 end
]
59 # create client that defers reading reply
60 set client
[redis
[srv
$level "host"] [srv
$level "port"] 1]
62 # select the right db and read the response (OK)
68 # Provide easy access to INFO properties. Same semantic as "proc r".
71 if {[string is integer
[lindex $args 0]]} {
72 set level
[lindex $args 0]
73 set args
[lrange $args 1 end
]
75 status
[srv
$level "client"] [lindex $args 0]
79 catch {exec rm
-rf {*}[glob tests
/tmp
/redis.conf.
*]}
80 catch {exec rm
-rf {*}[glob tests
/tmp
/server.
*]}
85 execute_tests
"unit/auth"
86 execute_tests
"unit/protocol"
87 execute_tests
"unit/basic"
88 execute_tests
"unit/type/list"
89 execute_tests
"unit/type/set"
90 execute_tests
"unit/type/zset"
91 execute_tests
"unit/type/hash"
92 execute_tests
"unit/sort"
93 execute_tests
"unit/expire"
94 execute_tests
"unit/other"
95 execute_tests
"unit/cas"
96 execute_tests
"integration/replication"
97 execute_tests
"integration/aof"
98 execute_tests
"integration/redis-cli"
99 execute_tests
"unit/pubsub"
101 # run tests with VM enabled
102 set ::global_overrides {vm-enabled yes
}
103 execute_tests
"unit/protocol"
104 execute_tests
"unit/basic"
105 execute_tests
"unit/type/list"
106 execute_tests
"unit/type/set"
107 execute_tests
"unit/type/zset"
108 execute_tests
"unit/type/hash"
109 execute_tests
"unit/sort"
110 execute_tests
"unit/expire"
111 execute_tests
"unit/other"
112 execute_tests
"unit/cas"
115 puts "\n[expr $::passed+$::failed] tests, $::passed passed, $::failed failed"
117 puts "\n*** WARNING!!! $::failed FAILED TESTS ***\n"
123 for {set j
0} {$j < [llength $argv]} {incr j
} {
124 set opt
[lindex $argv $j]
125 set arg
[lindex $argv [expr $j+1]]
126 if {$opt eq
{--tags}} {
128 if {[string index
$tag 0] eq
"-"} {
129 lappend ::denytags [string range
$tag 1 end
]
131 lappend ::allowtags $tag
135 } elseif
{$opt eq
{--host}} {
139 } elseif
{$opt eq
{--port}} {
143 puts "Wrong argument: $opt"
148 if {[catch { main
} err
]} {
149 if {[string length
$err] > 0} {
150 # only display error when not generated by the test suite
151 if {$err ne
"exception"} {