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
|
|
|
|
2010-06-16 09:03:23 +00:00
|
|
|
proc assert {condition} {
|
|
|
|
if {![uplevel 1 expr $condition]} {
|
2010-12-10 15:13:21 +00:00
|
|
|
error "assertion:Expected '$value' to be true"
|
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]
|
|
|
|
}
|
|
|
|
|
2011-02-22 15:40:24 +00:00
|
|
|
# Test if TERM looks like to support colors
|
|
|
|
proc color_term {} {
|
|
|
|
expr {[info exists ::env(TERM)] && [string match *xterm* $::env(TERM)]}
|
|
|
|
}
|
|
|
|
|
2011-07-10 22:09:56 +00:00
|
|
|
proc colorstr {color str} {
|
2011-02-22 15:40:24 +00:00
|
|
|
if {[color_term]} {
|
2011-07-10 22:14:12 +00:00
|
|
|
set b 0
|
|
|
|
if {[string range $color 0 4] eq {bold-}} {
|
|
|
|
set b 1
|
|
|
|
set color [string range $color 5 end]
|
|
|
|
}
|
2011-07-10 22:09:56 +00:00
|
|
|
switch $color {
|
|
|
|
red {set colorcode {31}}
|
|
|
|
green {set colorcode {32}}
|
|
|
|
yellow {set colorcode {33}}
|
|
|
|
blue {set colorcode {34}}
|
|
|
|
magenta {set colorcode {35}}
|
|
|
|
cyan {set colorcode {36}}
|
2011-07-10 22:14:12 +00:00
|
|
|
white {set colorcode {37}}
|
|
|
|
default {set colorcode {37}}
|
2010-12-15 09:14:34 +00:00
|
|
|
}
|
|
|
|
if {$colorcode ne {}} {
|
2011-07-10 22:14:12 +00:00
|
|
|
return "\033\[$b;${colorcode};40m$str\033\[0m"
|
2010-12-15 09:14:34 +00:00
|
|
|
}
|
|
|
|
} else {
|
2011-07-10 22:09:56 +00:00
|
|
|
return $str
|
2010-12-15 09:14:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {}
|
|
|
|
lappend details $::curfile
|
|
|
|
lappend details $::tags
|
|
|
|
lappend details $name
|
|
|
|
|
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-10 21:25:48 +00:00
|
|
|
send_data_packet $::test_server_fd err $name
|
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-10 21:25:48 +00:00
|
|
|
send_data_packet $::test_server_fd err $name
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|