2010-12-10 15:13:21 +00:00
|
|
|
set ::num_tests 0
|
|
|
|
set ::num_passed 0
|
|
|
|
set ::num_failed 0
|
2018-07-30 13:43:21 +00:00
|
|
|
set ::num_skipped 0
|
|
|
|
set ::num_aborted 0
|
2010-12-10 15:13:21 +00:00
|
|
|
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]]} {
|
2019-10-29 15:29:06 +00:00
|
|
|
set context "(context: [info frame -1])"
|
|
|
|
error "assertion:Expected [uplevel 1 [list subst -nocommands $condition]] $context"
|
2010-06-16 09:03:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-17 10:32:35 +00:00
|
|
|
proc assert_no_match {pattern value} {
|
|
|
|
if {[string match $pattern $value]} {
|
2019-10-29 15:29:06 +00:00
|
|
|
set context "(context: [info frame -1])"
|
|
|
|
error "assertion:Expected '$value' to not match '$pattern' $context"
|
2019-09-17 10:32:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-04 14:30:54 +00:00
|
|
|
proc assert_match {pattern value} {
|
|
|
|
if {![string match $pattern $value]} {
|
2019-10-29 15:29:06 +00:00
|
|
|
set context "(context: [info frame -1])"
|
|
|
|
error "assertion:Expected '$value' to match '$pattern' $context"
|
2010-06-04 14:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-29 15:29:06 +00:00
|
|
|
proc assert_equal {value expected {detail ""}} {
|
2010-06-04 14:30:54 +00:00
|
|
|
if {$expected ne $value} {
|
2014-11-13 19:11:47 +00:00
|
|
|
if {$detail ne ""} {
|
2019-10-29 15:29:06 +00:00
|
|
|
set detail "(detail: $detail)"
|
|
|
|
} else {
|
|
|
|
set detail "(context: [info frame -1])"
|
2014-11-13 19:11:47 +00:00
|
|
|
}
|
2019-10-29 15:29:06 +00:00
|
|
|
error "assertion:Expected '$value' to be equal to '$expected' $detail"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
proc assert_lessthan {value expected {detail ""}} {
|
|
|
|
if {!($value < $expected)} {
|
|
|
|
if {$detail ne ""} {
|
|
|
|
set detail "(detail: $detail)"
|
|
|
|
} else {
|
|
|
|
set detail "(context: [info frame -1])"
|
|
|
|
}
|
|
|
|
error "assertion:Expected '$value' to be lessthan to '$expected' $detail"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
proc assert_range {value min max {detail ""}} {
|
|
|
|
if {!($value <= $max && $value >= $min)} {
|
|
|
|
if {$detail ne ""} {
|
|
|
|
set detail "(detail: $detail)"
|
|
|
|
} else {
|
|
|
|
set detail "(context: [info frame -1])"
|
|
|
|
}
|
|
|
|
error "assertion:Expected '$value' to be between to '$min' and '$max' $detail"
|
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 {
|
2014-07-31 18:33:50 +00:00
|
|
|
error "assertion:Expected an error but nothing was caught"
|
2010-06-04 14:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
proc assert_encoding {enc 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} {
|
2014-02-22 16:26:30 +00:00
|
|
|
set errcode [catch {uplevel 1 [list expr $e]} result]
|
|
|
|
if {$errcode == 0} {
|
|
|
|
if {$result} break
|
|
|
|
} else {
|
|
|
|
return -code $errcode $result
|
|
|
|
}
|
2012-04-26 09:16:52 +00:00
|
|
|
after $delay
|
|
|
|
}
|
|
|
|
if {$maxtries == -1} {
|
2014-02-22 16:26:30 +00:00
|
|
|
set errcode [catch [uplevel 1 $elsescript] result]
|
|
|
|
return -code $errcode $result
|
2012-04-26 09:16:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-31 08:05:30 +00:00
|
|
|
proc test {name code {okpattern undefined} {options undefined}} {
|
2018-07-30 13:43:21 +00:00
|
|
|
# abort if test name in skiptests
|
|
|
|
if {[lsearch $::skiptests $name] >= 0} {
|
|
|
|
incr ::num_skipped
|
|
|
|
send_data_packet $::test_server_fd skip $name
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
# abort if test name in skiptests
|
|
|
|
if {[llength $::only_tests] > 0 && [lsearch $::only_tests $name] < 0} {
|
|
|
|
incr ::num_skipped
|
|
|
|
send_data_packet $::test_server_fd skip $name
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2010-06-02 20:53:22 +00:00
|
|
|
# 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} {
|
2018-07-30 13:43:21 +00:00
|
|
|
incr ::num_aborted
|
|
|
|
send_data_packet $::test_server_fd ignore $name
|
2010-06-02 20:53:22 +00:00
|
|
|
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
|
|
|
|
2020-08-31 07:23:09 +00:00
|
|
|
# set a cur_test global to be logged into new servers that are spown
|
|
|
|
# and log the test name in all existing servers
|
|
|
|
set ::cur_test "$name in $::curfile"
|
|
|
|
if {!$::external} {
|
|
|
|
foreach srv $::servers {
|
|
|
|
set stdout [dict get $srv stdout]
|
|
|
|
set fd [open $stdout "a+"]
|
|
|
|
puts $fd "### Starting test $::cur_test"
|
|
|
|
close $fd
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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]} {
|
2020-08-31 08:24:17 +00:00
|
|
|
set assertion [string match "assertion:*" $error]
|
|
|
|
if {$assertion || $::durable} {
|
2010-12-10 15:13:21 +00:00
|
|
|
set msg [string range $error 10 end]
|
|
|
|
lappend details $msg
|
2020-08-31 08:24:17 +00:00
|
|
|
if {!$assertion} {
|
|
|
|
lappend details $::errorInfo
|
|
|
|
}
|
2010-12-10 15:13:21 +00:00
|
|
|
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"]
|
2020-07-13 13:09:08 +00:00
|
|
|
|
|
|
|
if {$::stop_on_failure} {
|
|
|
|
puts "Test error (last server port:[srv port], log:[srv stdout]), press enter to teardown the test."
|
|
|
|
flush stdout
|
|
|
|
gets stdin
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|