📄 tester.tcl
字号:
# 2001 September 15## The author disclaims copyright to this source code. In place of# a legal notice, here is a blessing:## May you do good and not evil.# May you find forgiveness for yourself and forgive others.# May you share freely, never taking more than you give.##***********************************************************************# This file implements some common TCL routines used for regression# testing the SQLite library## $Id: tester.tcl,v 1.81 2007/05/04 12:05:56 danielk1977 Exp $# Make sure tclsqlite3 was compiled correctly. Abort now with an# error message if not.#if {[sqlite3 -tcl-uses-utf]} { if {"\u1234"=="u1234"} { puts stderr "***** BUILD PROBLEM *****" puts stderr "$argv0 was linked against an older version" puts stderr "of TCL that does not support Unicode, but uses a header" puts stderr "file (\"tcl.h\") from a new TCL version that does support" puts stderr "Unicode. This combination causes internal errors." puts stderr "Recompile using a TCL library and header file that match" puts stderr "and try again.\n**************************" exit 1 }} else { if {"\u1234"!="u1234"} { puts stderr "***** BUILD PROBLEM *****" puts stderr "$argv0 was linked against an newer version" puts stderr "of TCL that supports Unicode, but uses a header file" puts stderr "(\"tcl.h\") from a old TCL version that does not support" puts stderr "Unicode. This combination causes internal errors." puts stderr "Recompile using a TCL library and header file that match" puts stderr "and try again.\n**************************" exit 1 }}set tcl_precision 15set sqlite_pending_byte 0x0010000# Use the pager codec if it is available#if {[sqlite3 -has-codec] && [info command sqlite_orig]==""} { rename sqlite3 sqlite_orig proc sqlite3 {args} { if {[llength $args]==2 && [string index [lindex $args 0] 0]!="-"} { lappend args -key {xyzzy} } uplevel 1 sqlite_orig $args }}# Create a test database#catch {db close}file delete -force test.dbfile delete -force test.db-journalsqlite3 db ./test.dbset ::DB [sqlite3_connection_pointer db]if {[info exists ::SETUP_SQL]} { db eval $::SETUP_SQL}# Abort early if this script has been run before.#if {[info exists nTest]} return# Set the test counters to zero#set nErr 0set nTest 0set skip_test 0set failList {}set maxErr 1000if {![info exists speedTest]} { set speedTest 0}# Invoke the do_test procedure to run a single test #proc do_test {name cmd expected} { global argv nErr nTest skip_test maxErr set ::sqlite_malloc_id $name if {$skip_test} { set skip_test 0 return } if {[llength $argv]==0} { set go 1 } else { set go 0 foreach pattern $argv { if {[string match $pattern $name]} { set go 1 break } } } if {!$go} return incr nTest puts -nonewline $name... flush stdout if {[catch {uplevel #0 "$cmd;\n"} result]} { puts "\nError: $result" incr nErr lappend ::failList $name if {$nErr>$maxErr} {puts "*** Giving up..."; finalize_testing} } elseif {[string compare $result $expected]} { puts "\nExpected: \[$expected\]\n Got: \[$result\]" incr nErr lappend ::failList $name if {$nErr>=$maxErr} {puts "*** Giving up..."; finalize_testing} } else { puts " Ok" } flush stdout}# Run an SQL script. # Return the number of microseconds per statement.#proc speed_trial {name numstmt units sql} { puts -nonewline [format {%-21.21s } $name...] flush stdout set speed [time {sqlite3_exec_nr db $sql}] set tm [lindex $speed 0] set rate [expr {1000000.0*$numstmt/$tm}] set u2 $units/s puts [format {%12d uS %20.5f %s} $tm $rate $u2] global total_time set total_time [expr {$total_time+$tm}]}proc speed_trial_init {name} { global total_time set total_time 0}proc speed_trial_summary {name} { global total_time puts [format {%-21.21s %12d uS TOTAL} $name $total_time]}# The procedure uses the special "sqlite_malloc_stat" command# (which is only available if SQLite is compiled with -DSQLITE_DEBUG=1)# to see how many malloc()s have not been free()ed. The number# of surplus malloc()s is stored in the global variable $::Leak.# If the value in $::Leak grows, it may mean there is a memory leak# in the library.#proc memleak_check {} { if {[info command sqlite_malloc_stat]!=""} { set r [sqlite_malloc_stat] set ::Leak [expr {[lindex $r 0]-[lindex $r 1]}] }}# Run this routine last#proc finish_test {} { finalize_testing}proc finalize_testing {} { global nTest nErr sqlite_open_file_count if {$nErr==0} memleak_check catch {db close} catch {db2 close} catch {db3 close} catch { pp_check_for_leaks } sqlite3 db {} # sqlite3_clear_tsd_memdebug db close if {$::sqlite3_tsd_count} { puts "Thread-specific data leak: $::sqlite3_tsd_count instances" incr nErr } else { puts "Thread-specific data deallocated properly" } incr nTest puts "$nErr errors out of $nTest tests" puts "Failures on these tests: $::failList" if {$nErr>0 && ![working_64bit_int]} { puts "******************************************************************" puts "N.B.: The version of TCL that you used to build this test harness" puts "is defective in that it does not support 64-bit integers. Some or" puts "all of the test failures above might be a result from this defect" puts "in your TCL build." puts "******************************************************************" } if {$sqlite_open_file_count} { puts "$sqlite_open_file_count files were left open" incr nErr } foreach f [glob -nocomplain test.db-*-journal] { file delete -force $f } foreach f [glob -nocomplain test.db-mj*] { file delete -force $f } exit [expr {$nErr>0}]}# A procedure to execute SQL#proc execsql {sql {db db}} { # puts "SQL = $sql" uplevel [list $db eval $sql]}# Execute SQL and catch exceptions.#proc catchsql {sql {db db}} { # puts "SQL = $sql" set r [catch {$db eval $sql} msg] lappend r $msg return $r}# Do an VDBE code dump on the SQL given#proc explain {sql {db db}} { puts "" puts "addr opcode p1 p2 p3 " puts "---- ------------ ------ ------ ---------------" $db eval "explain $sql" {} { puts [format {%-4d %-12.12s %-6d %-6d %s} $addr $opcode $p1 $p2 $p3] }}# Another procedure to execute SQL. This one includes the field# names in the returned list.#proc execsql2 {sql} { set result {} db eval $sql data { foreach f $data(*) { lappend result $f $data($f) } } return $result}# Use the non-callback API to execute multiple SQL statements#proc stepsql {dbptr sql} { set sql [string trim $sql] set r 0 while {[string length $sql]>0} { if {[catch {sqlite3_prepare $dbptr $sql -1 sqltail} vm]} { return [list 1 $vm] } set sql [string trim $sqltail]# while {[sqlite_step $vm N VAL COL]=="SQLITE_ROW"} {# foreach v $VAL {lappend r $v}# } while {[sqlite3_step $vm]=="SQLITE_ROW"} { for {set i 0} {$i<[sqlite3_data_count $vm]} {incr i} { lappend r [sqlite3_column_text $vm $i] } } if {[catch {sqlite3_finalize $vm} errmsg]} { return [list 1 $errmsg] } } return $r}# Delete a file or directory#proc forcedelete {filename} { if {[catch {file delete -force $filename}]} { exec rm -rf $filename }}# Do an integrity check of the entire database#proc integrity_check {name} { ifcapable integrityck { do_test $name { execsql {PRAGMA integrity_check} } {ok} }}# Evaluate a boolean expression of capabilities. If true, execute the# code. Omit the code if false.#proc ifcapable {expr code {else ""} {elsecode ""}} { regsub -all {[a-z_0-9]+} $expr {$::sqlite_options(&)} e2 if ($e2) { set c [catch {uplevel 1 $code} r] } else { set c [catch {uplevel 1 $elsecode} r]
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -