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. The
12 # focus of this file is testing the sqlite3SafetyOn and sqlite3SafetyOff
13 # functions. Those routines are not strictly necessary - they are
14 # designed to detect misuse of the library.
16 # $Id: safety.test,v 1.4 2008/03/18 13:46:53 drh Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
22 puts "Skipping safety tests since SQLITE_DEBUG is off"
27 # Return the UTF-8 representation of the supplied UTF-16 string $str.
29 # If $str ends in two 0x00 0x00 bytes, knock these off before
30 # converting to UTF-8 using TCL.
31 binary scan $str \c* vals
32 if {[lindex $vals end]==0 && [lindex $vals end-1]==0} {
33 set str [binary format \c* [lrange $vals 0 end-2]]
36 set r [encoding convertfrom unicode $str]
42 set DB [sqlite3_connection_pointer db]
43 db eval {CREATE TABLE t1(a)}
44 sqlite_set_magic $DB SQLITE_MAGIC_BUSY
46 SELECT name FROM sqlite_master;
48 } {1 {library routine called out of sequence}}
50 sqlite_set_magic $DB SQLITE_MAGIC_OPEN
52 SELECT name FROM sqlite_master
57 proc safety_on {} "sqlite_set_magic $DB SQLITE_MAGIC_BUSY"
58 db function safety_on safety_on
60 SELECT safety_on(), name FROM sqlite_master
62 } {1 {library routine called out of sequence}}
64 do_test safety-2.1.1 {
65 utf8 [sqlite3_errmsg16 db]
66 } {library routine called out of sequence}
72 } {1 {library routine called out of sequence}}
77 sqlite_set_magic $DB SQLITE_MAGIC_OPEN
79 SELECT name FROM sqlite_master
85 db eval {SELECT name FROM sqlite_master} {
86 sqlite_set_magic $DB SQLITE_MAGIC_BUSY
90 } {1 {library routine called out of sequence}}
91 sqlite_set_magic $DB SQLITE_MAGIC_OPEN