mirror of
				https://github.com/sqlite/sqlite.git
				synced 2025-11-03 16:53:36 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			106 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Tcl
		
	
	
	
	
	
			
		
		
	
	
			106 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Tcl
		
	
	
	
	
	
# Copyright (c) 1999, 2000 D. Richard Hipp
 | 
						|
#
 | 
						|
# This program is free software; you can redistribute it and/or
 | 
						|
# modify it under the terms of the GNU General Public
 | 
						|
# License as published by the Free Software Foundation; either
 | 
						|
# version 2 of the License, or (at your option) any later version.
 | 
						|
#
 | 
						|
# This program is distributed in the hope that it will be useful,
 | 
						|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
						|
# General Public License for more details.
 | 
						|
# 
 | 
						|
# You should have received a copy of the GNU General Public
 | 
						|
# License along with this library; if not, write to the
 | 
						|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 | 
						|
# Boston, MA  02111-1307, USA.
 | 
						|
#
 | 
						|
# Author contact information:
 | 
						|
#   drh@hwaci.com
 | 
						|
#   http://www.hwaci.com/drh/
 | 
						|
#
 | 
						|
#***********************************************************************
 | 
						|
# This file implements some common TCL routines used for regression
 | 
						|
# testing the SQLite library
 | 
						|
#
 | 
						|
# $Id: tester.tcl,v 1.5 2000/06/08 13:36:41 drh Exp $
 | 
						|
 | 
						|
# Create a test database
 | 
						|
#
 | 
						|
file delete -force testdb
 | 
						|
file mkdir testdb
 | 
						|
sqlite db testdb
 | 
						|
 | 
						|
# Abort early if this script has been run before.
 | 
						|
#
 | 
						|
if {[info exists nTest]} return
 | 
						|
 | 
						|
# Set the test counters to zero
 | 
						|
#
 | 
						|
set nErr 0
 | 
						|
set nTest 0
 | 
						|
 | 
						|
# Invoke the do_test procedure to run a single test 
 | 
						|
#
 | 
						|
proc do_test {name cmd expected} {
 | 
						|
  global argv nErr nTest
 | 
						|
  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
 | 
						|
  } elseif {[string compare $result $expected]} {
 | 
						|
    puts "\nExpected: \[$expected\]\n     Got: \[$result\]"
 | 
						|
    incr nErr
 | 
						|
  } else {
 | 
						|
    puts " Ok"
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
# Run this routine last
 | 
						|
#
 | 
						|
proc finish_test {} {
 | 
						|
  global nTest nErr
 | 
						|
  catch {db close}
 | 
						|
  puts "$nErr errors out of $nTest tests"
 | 
						|
  exit $nErr
 | 
						|
}
 | 
						|
 | 
						|
# A procedure to execute SQL
 | 
						|
#
 | 
						|
proc execsql {sql} {
 | 
						|
  set result {}
 | 
						|
  db eval $sql data {
 | 
						|
    foreach f $data(*) {
 | 
						|
      lappend result $data($f)
 | 
						|
    }
 | 
						|
  }
 | 
						|
  return $result
 | 
						|
}
 | 
						|
 | 
						|
# 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
 | 
						|
}
 |