First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library.
13 # This file is devoted to testing the sqlite3_next_stmt interface.
15 # $Id: capi3d.test,v 1.2 2008/07/14 15:11:20 drh Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
21 # Create N prepared statements against database connection db
22 # and return a list of all the generated prepared statements.
24 proc make_prepared_statements {N} {
26 for {set i 0} {$i<$N} {incr i} {
27 set sql "SELECT $i FROM sqlite_master WHERE name LIKE '%$i%'"
29 set s [sqlite3_prepare_v2 db $sql -1 notused]
33 set sql [encoding convertto unicode $sql]\x00\x00
34 set s [sqlite3_prepare16 db $sql -1 notused]
36 set s [sqlite3_prepare db $sql -1 notused]
40 set s [sqlite3_prepare db $sql -1 notused]
49 # Scramble the $inlist into a random order.
51 proc scramble {inlist} {
54 lappend y [list [expr {rand()}] $x]
59 lappend outlist [lindex $x 1]
64 # Database initially has no prepared statements.
68 sqlite3_next_stmt db 0
71 # Run the following tests for between 1 and 100 prepared statements.
73 for {set i 1} {$i<=100} {incr i} {
74 set stmtlist [make_prepared_statements $i]
75 do_test capi3d-1.2.$i.1 {
76 set p [sqlite3_next_stmt db 0]
80 set p [sqlite3_next_stmt db $p]
84 do_test capi3-1.2.$i.2 {
85 foreach p [scramble $::stmtlist] {
88 sqlite3_next_stmt db 0