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 implements tests for the "sqlite3_trace()" API.
15 # $Id: trace.test,v 1.7 2008/01/12 21:35:57 drh Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
27 set rc [catch {db trace 1 2 3} msg]
29 } {1 {wrong # args: should be "db trace ?CALLBACK?"}}
31 lappend ::stmtlist [string trim $cmd]
40 INSERT INTO t1 VALUES(1,2);
46 } {{CREATE TABLE t1(a,b);} {INSERT INTO t1 VALUES(1,2);} {SELECT * FROM t1;}}
52 # If we prepare a statement and execute it multiple times, the trace
53 # happens on each execution.
56 sqlite3 db test.db; set DB [sqlite3_connection_pointer db]
58 set STMT [sqlite3_prepare $DB {INSERT INTO t1 VALUES(2,3)} -1 TAIL]
67 } {INSERT INTO t1 VALUES(2,3)}
76 } {INSERT INTO t1 VALUES(2,3)}
78 execsql {SELECT * FROM t1}
83 catch {sqlite3_finalize $STMT}
85 # Similar tests, but this time for profiling.
88 set rc [catch {db profile 1 2 3} msg]
90 } {1 {wrong # args: should be "db profile ?CALLBACK?"}}
92 proc profile_proc {cmd tm} {
93 lappend ::stmtlist [string trim $cmd]
97 db profile profile_proc
102 CREATE TABLE t2(a,b);
103 INSERT INTO t2 VALUES(1,2);
109 } {{CREATE TABLE t2(a,b);} {INSERT INTO t2 VALUES(1,2);} {SELECT * FROM t2;}}
115 # If we prepare a statement and execute it multiple times, the profile
116 # happens on each execution.
119 sqlite3 db test.db; set DB [sqlite3_connection_pointer db]
121 set STMT [sqlite3_prepare $DB {INSERT INTO t2 VALUES(2,3)} -1 TAIL]
123 proc profile_proc {sql tm} {
130 } {INSERT INTO t2 VALUES(2,3)}
139 } {INSERT INTO t2 VALUES(2,3)}
141 execsql {SELECT * FROM t1}
146 catch {sqlite3_finalize $STMT}
152 CREATE TRIGGER r1t1 AFTER UPDATE ON t1 BEGIN
153 UPDATE t2 SET a=new.a WHERE rowid=new.rowid;
155 CREATE TRIGGER r1t2 AFTER UPDATE ON t2 BEGIN
160 proc trace_proc cmd {
161 lappend ::TRACE_OUT [string trim $cmd]
167 } {{UPDATE t1 SET a=a+1;} {-- TRIGGER r1t1} {-- TRIGGER r1t2} {-- TRIGGER r1t1} {-- TRIGGER r1t2} {-- TRIGGER r1t1} {-- TRIGGER r1t2}}