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]
|
|
|
|
}
|
|
|
|
|
2010-12-15 09:44:36 +00:00
|
|
|
# This is called before starting the test
|
|
|
|
proc announce_test {s} {
|
|
|
|
if {[info exists ::env(TERM)] && [string match $::env(TERM) xterm]} {
|
|
|
|
puts -nonewline "$s\033\[0K"
|
|
|
|
flush stdout
|
|
|
|
set ::backward_count [string length $s]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# This is called after the test finished
|
2010-12-15 09:14:34 +00:00
|
|
|
proc colored_dot {tags passed} {
|
|
|
|
if {[info exists ::env(TERM)] && [string match $::env(TERM) xterm]} {
|
2010-12-15 09:44:36 +00:00
|
|
|
# Go backward and delete what announc_test function printed.
|
|
|
|
puts -nonewline "\033\[${::backward_count}D\033\[0K\033\[J"
|
|
|
|
|
|
|
|
# Print a coloured char, accordingly to test outcome and tags.
|
2010-12-15 09:14:34 +00:00
|
|
|
if {[lsearch $tags list] != -1} {
|
|
|
|
set colorcode {31}
|
|
|
|
set ch L
|
|
|
|
} elseif {[lsearch $tags hash] != -1} {
|
|
|
|
set colorcode {32}
|
|
|
|
set ch H
|
|
|
|
} elseif {[lsearch $tags set] != -1} {
|
|
|
|
set colorcode {33}
|
|
|
|
set ch S
|
|
|
|
} elseif {[lsearch $tags zset] != -1} {
|
|
|
|
set colorcode {34}
|
|
|
|
set ch Z
|
|
|
|
} elseif {[lsearch $tags basic] != -1} {
|
|
|
|
set colorcode {35}
|
|
|
|
set ch B
|
|
|
|
} else {
|
|
|
|
set colorcode {37}
|
|
|
|
set ch .
|
|
|
|
}
|
|
|
|
if {$colorcode ne {}} {
|
|
|
|
if {$passed} {
|
|
|
|
puts -nonewline "\033\[0;${colorcode};40m"
|
|
|
|
} else {
|
|
|
|
puts -nonewline "\033\[0;40;${colorcode}m"
|
|
|
|
}
|
|
|
|
puts -nonewline $ch
|
|
|
|
puts -nonewline "\033\[0m"
|
|
|
|
flush stdout
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if {$passed} {
|
|
|
|
puts -nonewline .
|
|
|
|
} else {
|
|
|
|
puts -nonewline F
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
|
if {$::verbose} {
|
|
|
|
puts -nonewline [format "#%03d %-68s " $::num_tests $name]
|
|
|
|
flush stdout
|
2010-12-15 09:44:36 +00:00
|
|
|
} else {
|
|
|
|
announce_test $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
|
|
|
|
if {$::verbose} {
|
|
|
|
puts "FAILED"
|
|
|
|
puts "$msg\n"
|
|
|
|
} else {
|
2010-12-15 09:14:34 +00:00
|
|
|
colored_dot $::tags 0
|
2010-12-10 15:13:21 +00:00
|
|
|
}
|
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
|
|
|
|
if {$::verbose} {
|
|
|
|
puts "PASSED"
|
|
|
|
} else {
|
2010-12-15 09:14:34 +00:00
|
|
|
colored_dot $::tags 1
|
2010-12-10 15:13:21 +00:00
|
|
|
}
|
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
|
|
|
|
if {$::verbose} {
|
|
|
|
puts "FAILED"
|
|
|
|
puts "$msg\n"
|
|
|
|
} else {
|
2010-12-15 09:14:34 +00:00
|
|
|
colored_dot $::tags 0
|
2010-12-10 15:13:21 +00:00
|
|
|
}
|
2010-06-04 14:30:54 +00:00
|
|
|
}
|
2010-05-14 15:31:11 +00:00
|
|
|
}
|
2010-12-10 15:13:21 +00:00
|
|
|
flush stdout
|
|
|
|
|
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]} {
|
2010-12-10 15:13:21 +00:00
|
|
|
puts "--- Test \"$name\" leaked! ---"
|
2010-10-15 13:56:16 +00:00
|
|
|
puts $output
|
2010-05-14 15:31:11 +00:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|