| 
									
										
										
										
											2010-12-10 23:13:21 +08:00
										 |  |  | set ::num_tests 0 | 
					
						
							|  |  |  | set ::num_passed 0 | 
					
						
							|  |  |  | set ::num_failed 0 | 
					
						
							| 
									
										
										
										
											2018-07-30 21:43:21 +08:00
										 |  |  | set ::num_skipped 0 | 
					
						
							|  |  |  | set ::num_aborted 0 | 
					
						
							| 
									
										
										
										
											2010-12-10 23:13:21 +08:00
										 |  |  | set ::tests_failed {} | 
					
						
							| 
									
										
										
										
											2010-05-14 23:31:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-26 17:16:52 +08:00
										 |  |  | proc fail {msg} { | 
					
						
							|  |  |  |     error "assertion:$msg" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-16 17:03:23 +08:00
										 |  |  | proc assert {condition} { | 
					
						
							| 
									
										
										
										
											2012-01-07 00:28:40 +08:00
										 |  |  |     if {![uplevel 1 [list expr $condition]]} { | 
					
						
							| 
									
										
										
										
											2019-10-29 23:29:06 +08:00
										 |  |  |         set context "(context: [info frame -1])" | 
					
						
							|  |  |  |         error "assertion:Expected [uplevel 1 [list subst -nocommands $condition]] $context" | 
					
						
							| 
									
										
										
										
											2010-06-16 17:03:23 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-17 18:32:35 +08:00
										 |  |  | proc assert_no_match {pattern value} { | 
					
						
							|  |  |  |     if {[string match $pattern $value]} { | 
					
						
							| 
									
										
										
										
											2019-10-29 23:29:06 +08:00
										 |  |  |         set context "(context: [info frame -1])" | 
					
						
							|  |  |  |         error "assertion:Expected '$value' to not match '$pattern' $context" | 
					
						
							| 
									
										
										
										
											2019-09-17 18:32:35 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-04 22:30:54 +08:00
										 |  |  | proc assert_match {pattern value} { | 
					
						
							|  |  |  |     if {![string match $pattern $value]} { | 
					
						
							| 
									
										
										
										
											2019-10-29 23:29:06 +08:00
										 |  |  |         set context "(context: [info frame -1])" | 
					
						
							|  |  |  |         error "assertion:Expected '$value' to match '$pattern' $context" | 
					
						
							| 
									
										
										
										
											2010-06-04 22:30:54 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-29 23:29:06 +08:00
										 |  |  | proc assert_equal {value expected {detail ""}} { | 
					
						
							| 
									
										
										
										
											2010-06-04 22:30:54 +08:00
										 |  |  |     if {$expected ne $value} { | 
					
						
							| 
									
										
										
										
											2014-11-14 03:11:47 +08:00
										 |  |  |         if {$detail ne ""} { | 
					
						
							| 
									
										
										
										
											2019-10-29 23:29:06 +08:00
										 |  |  |             set detail "(detail: $detail)" | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             set detail "(context: [info frame -1])" | 
					
						
							| 
									
										
										
										
											2014-11-14 03:11:47 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-10-29 23:29:06 +08: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 22:30:54 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | proc assert_error {pattern code} { | 
					
						
							| 
									
										
										
										
											2010-06-16 03:16:27 +08:00
										 |  |  |     if {[catch {uplevel 1 $code} error]} { | 
					
						
							| 
									
										
										
										
											2010-06-04 22:30:54 +08:00
										 |  |  |         assert_match $pattern $error | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2014-08-01 02:33:50 +08:00
										 |  |  |         error "assertion:Expected an error but nothing was caught" | 
					
						
							| 
									
										
										
										
											2010-06-04 22:30:54 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | proc assert_encoding {enc key} { | 
					
						
							| 
									
										
										
										
											2010-07-29 19:31:24 +08:00
										 |  |  |     set dbg [r debug object $key] | 
					
						
							|  |  |  |     assert_match "* encoding:$enc *" $dbg | 
					
						
							| 
									
										
										
										
											2010-06-04 22:30:54 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | proc assert_type {type key} { | 
					
						
							|  |  |  |     assert_equal $type [r type $key] | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-26 17:16:52 +08: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-23 00:26:30 +08:00
										 |  |  |         set errcode [catch {uplevel 1 [list expr $e]} result] | 
					
						
							|  |  |  |         if {$errcode == 0} { | 
					
						
							|  |  |  |             if {$result} break | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             return -code $errcode $result | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-04-26 17:16:52 +08:00
										 |  |  |         after $delay | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if {$maxtries == -1} { | 
					
						
							| 
									
										
										
										
											2014-02-23 00:26:30 +08:00
										 |  |  |         set errcode [catch [uplevel 1 $elsescript] result] | 
					
						
							|  |  |  |         return -code $errcode $result | 
					
						
							| 
									
										
										
										
											2012-04-26 17:16:52 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-10 23:13:21 +08:00
										 |  |  | proc test {name code {okpattern undefined}} { | 
					
						
							| 
									
										
										
										
											2010-06-03 04:53:22 +08:00
										 |  |  |     # abort if tagged with a tag to deny
 | 
					
						
							|  |  |  |     foreach tag $::denytags { | 
					
						
							|  |  |  |         if {[lsearch $::tags $tag] >= 0} { | 
					
						
							| 
									
										
										
										
											2018-07-30 21:43:21 +08:00
										 |  |  |             incr ::num_aborted | 
					
						
							|  |  |  |             send_data_packet $::test_server_fd ignore $name | 
					
						
							| 
									
										
										
										
											2010-06-03 04:53:22 +08:00
										 |  |  |             return | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 21:43:21 +08: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-03 04:53:22 +08: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-03 05:04:22 +08:00
										 |  |  |             if {[lsearch $::tags $tag] >= 0} { | 
					
						
							| 
									
										
										
										
											2010-06-03 04:53:22 +08:00
										 |  |  |                 incr matched | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if {$matched < 1} { | 
					
						
							| 
									
										
										
										
											2018-07-30 21:43:21 +08:00
										 |  |  |             incr ::num_aborted | 
					
						
							|  |  |  |             send_data_packet $::test_server_fd ignore $name | 
					
						
							| 
									
										
										
										
											2010-06-03 04:53:22 +08:00
										 |  |  |             return | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-10 23:13:21 +08:00
										 |  |  |     incr ::num_tests | 
					
						
							|  |  |  |     set details {} | 
					
						
							| 
									
										
										
										
											2011-07-11 18:56:00 +08:00
										 |  |  |     lappend details "$name in $::curfile" | 
					
						
							| 
									
										
										
										
											2010-12-10 23:13:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-11 05:25:48 +08:00
										 |  |  |     send_data_packet $::test_server_fd testing $name | 
					
						
							| 
									
										
										
										
											2010-12-10 23:13:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-16 05:48:08 +08:00
										 |  |  |     if {[catch {set retval [uplevel 1 $code]} error]} { | 
					
						
							| 
									
										
										
										
											2010-12-10 23:13:21 +08: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 18:56:00 +08:00
										 |  |  |             send_data_packet $::test_server_fd err [join $details "\n"] | 
					
						
							| 
									
										
										
										
											2010-06-04 22:30:54 +08:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2010-12-10 23:13:21 +08:00
										 |  |  |             # Re-raise, let handler up the stack take care of this.
 | 
					
						
							|  |  |  |             error $error $::errorInfo | 
					
						
							| 
									
										
										
										
											2010-06-04 22:30:54 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-14 23:31:11 +08:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2010-12-10 23:13:21 +08:00
										 |  |  |         if {$okpattern eq "undefined" || $okpattern eq $retval || [string match $okpattern $retval]} { | 
					
						
							|  |  |  |             incr ::num_passed | 
					
						
							| 
									
										
										
										
											2011-07-11 05:25:48 +08:00
										 |  |  |             send_data_packet $::test_server_fd ok $name | 
					
						
							| 
									
										
										
										
											2010-06-04 22:30:54 +08:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2010-12-10 23:13:21 +08:00
										 |  |  |             set msg "Expected '$okpattern' to equal or match '$retval'" | 
					
						
							|  |  |  |             lappend details $msg | 
					
						
							|  |  |  |             lappend ::tests_failed $details | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             incr ::num_failed | 
					
						
							| 
									
										
										
										
											2011-07-11 18:56:00 +08:00
										 |  |  |             send_data_packet $::test_server_fd err [join $details "\n"] | 
					
						
							| 
									
										
										
										
											2010-06-04 22:30:54 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-14 23:31:11 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-12-10 23:13:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-14 23:31:11 +08:00
										 |  |  |     if {$::traceleaks} { | 
					
						
							| 
									
										
										
										
											2010-10-15 21:56:16 +08:00
										 |  |  |         set output [exec leaks redis-server] | 
					
						
							|  |  |  |         if {![string match {*0 leaks*} $output]} { | 
					
						
							| 
									
										
										
										
											2011-07-11 05:25:48 +08:00
										 |  |  |             send_data_packet $::test_server_fd err "Detected a memory leak in test '$name': $output" | 
					
						
							| 
									
										
										
										
											2010-05-14 23:31:11 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |