2010-12-10 15:13:21 +00:00
|
|
|
set ::num_tests 0
|
|
|
|
set ::num_passed 0
|
|
|
|
set ::num_failed 0
|
|
|
|
set ::tests_failed {}
|
2010-05-14 15:31:11 +00:00
|
|
|
|
2012-04-26 09:16:52 +00:00
|
|
|
proc fail {msg} {
|
|
|
|
error "assertion:$msg"
|
|
|
|
}
|
|
|
|
|
2010-06-16 09:03:23 +00:00
|
|
|
proc assert {condition} {
|
2012-01-06 16:28:40 +00:00
|
|
|
if {![uplevel 1 [list expr $condition]]} {
|
2011-12-21 08:23:22 +00:00
|
|
|
error "assertion:Expected condition '$condition' to be true ([uplevel 1 [list subst -nocommands $condition]])"
|
2010-06-16 09:03:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-04 14:30:54 +00:00
|
|
|
proc assert_match {pattern value} {
|
|
|
|
if {![string match $pattern $value]} {
|
2010-12-10 15:13:21 +00:00
|
|
|
error "assertion:Expected '$value' to match '$pattern'"
|
2010-06-04 14:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
proc assert_equal {expected value} {
|
|
|
|
if {$expected ne $value} {
|
2010-12-10 15:13:21 +00:00
|
|
|
error "assertion:Expected '$value' to be equal to '$expected'"
|
2010-06-04 14:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
proc assert_error {pattern code} {
|
2010-06-15 19:16:27 +00:00
|
|
|
if {[catch {uplevel 1 $code} error]} {
|
2010-06-04 14:30:54 +00:00
|
|
|
assert_match $pattern $error
|
|
|
|
} else {
|
2010-12-10 15:13:21 +00:00
|
|
|
error "assertion:Expected an error but nothing was catched"
|
2010-06-04 14:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
proc assert_encoding {enc key} {
|
2010-07-29 11:31:24 +00:00
|
|
|
# Swapped out values don't have an encoding, so make sure that
|
|
|
|
# the value is swapped in before checking the encoding.
|
|
|
|
set dbg [r debug object $key]
|
2010-08-01 09:20:26 +00:00
|
|
|
while {[string match "* swapped at:*" $dbg]} {
|
|
|
|
r debug swapin $key
|
2010-07-29 11:31:24 +00:00
|
|
|
set dbg [r debug object $key]
|
|
|
|
}
|
|
|
|
assert_match "* encoding:$enc *" $dbg
|
2010-06-04 14:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
proc assert_type {type key} {
|
|
|
|
assert_equal $type [r type $key]
|
|
|
|
}
|
|
|
|
|
2012-04-26 09:16:52 +00:00
|
|
|
# Wait for the specified condition to be true, with the specified number of
|
|
|
|
# max retries and delay between retries. Otherwise the 'elsescript' is
|
|
|
|
# executed.
|
|
|
|
proc wait_for_condition {maxtries delay e _else_ elsescript} {
|
|
|
|
while {[incr maxtries -1] >= 0} {
|
2012-04-26 09:25:13 +00:00
|
|
|
if {[uplevel 1 [list expr $e]]} break
|
2012-04-26 09:16:52 +00:00
|
|
|
after $delay
|
|
|
|
}
|
|
|
|
if {$maxtries == -1} {
|
|
|
|
uplevel 1 $elsescript
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-10 15:13:21 +00:00
|
|
|
proc test {name code {okpattern undefined}} {
|
2010-06-02 20:53:22 +00:00
|
|
|
# abort if tagged with a tag to deny
|
|
|
|
foreach tag $::denytags {
|
|
|
|
if {[lsearch $::tags $tag] >= 0} {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# check if tagged with at least 1 tag to allow when there *is* a list
|
|
|
|
# of tags to allow, because default policy is to run everything
|
|
|
|
if {[llength $::allowtags] > 0} {
|
|
|
|
set matched 0
|
|
|
|
foreach tag $::allowtags {
|
2010-06-02 21:04:22 +00:00
|
|
|
if {[lsearch $::tags $tag] >= 0} {
|
2010-06-02 20:53:22 +00:00
|
|
|
incr matched
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if {$matched < 1} {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-10 15:13:21 +00:00
|
|
|
incr ::num_tests
|
|
|
|
set details {}
|
2011-07-11 10:56:00 +00:00
|
|
|
lappend details "$name in $::curfile"
|
2010-12-10 15:13:21 +00:00
|
|
|
|
2011-07-10 21:25:48 +00:00
|
|
|
send_data_packet $::test_server_fd testing $name
|
2010-12-10 15:13:21 +00:00
|
|
|
|
2010-05-15 21:48:08 +00:00
|
|
|
if {[catch {set retval [uplevel 1 $code]} error]} {
|
2010-12-10 15:13:21 +00:00
|
|
|
if {[string match "assertion:*" $error]} {
|
|
|
|
set msg [string range $error 10 end]
|
|
|
|
lappend details $msg
|
|
|
|
lappend ::tests_failed $details
|
|
|
|
|
|
|
|
incr ::num_failed
|
2011-07-11 10:56:00 +00:00
|
|
|
send_data_packet $::test_server_fd err [join $details "\n"]
|
2010-06-04 14:30:54 +00:00
|
|
|
} else {
|
2010-12-10 15:13:21 +00:00
|
|
|
# Re-raise, let handler up the stack take care of this.
|
|
|
|
error $error $::errorInfo
|
2010-06-04 14:30:54 +00:00
|
|
|
}
|
2010-05-14 15:31:11 +00:00
|
|
|
} else {
|
2010-12-10 15:13:21 +00:00
|
|
|
if {$okpattern eq "undefined" || $okpattern eq $retval || [string match $okpattern $retval]} {
|
|
|
|
incr ::num_passed
|
2011-07-10 21:25:48 +00:00
|
|
|
send_data_packet $::test_server_fd ok $name
|
2010-06-04 14:30:54 +00:00
|
|
|
} else {
|
2010-12-10 15:13:21 +00:00
|
|
|
set msg "Expected '$okpattern' to equal or match '$retval'"
|
|
|
|
lappend details $msg
|
|
|
|
lappend ::tests_failed $details
|
|
|
|
|
|
|
|
incr ::num_failed
|
2011-07-11 10:56:00 +00:00
|
|
|
send_data_packet $::test_server_fd err [join $details "\n"]
|
2010-06-04 14:30:54 +00:00
|
|
|
}
|
2010-05-14 15:31:11 +00:00
|
|
|
}
|
2010-12-10 15:13:21 +00:00
|
|
|
|
2010-05-14 15:31:11 +00:00
|
|
|
if {$::traceleaks} {
|
2010-10-15 13:56:16 +00:00
|
|
|
set output [exec leaks redis-server]
|
|
|
|
if {![string match {*0 leaks*} $output]} {
|
2011-07-10 21:25:48 +00:00
|
|
|
send_data_packet $::test_server_fd err "Detected a memory leak in test '$name': $output"
|
2010-05-14 15:31:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|