sl@0
|
1 |
# 2005 January 11
|
sl@0
|
2 |
#
|
sl@0
|
3 |
# The author disclaims copyright to this source code. In place of
|
sl@0
|
4 |
# a legal notice, here is a blessing:
|
sl@0
|
5 |
#
|
sl@0
|
6 |
# May you do good and not evil.
|
sl@0
|
7 |
# May you find forgiveness for yourself and forgive others.
|
sl@0
|
8 |
# May you share freely, never taking more than you give.
|
sl@0
|
9 |
#
|
sl@0
|
10 |
#***********************************************************************
|
sl@0
|
11 |
# This file implements regression tests for SQLite library. The
|
sl@0
|
12 |
# focus of this file is testing the sqlite3SafetyOn and sqlite3SafetyOff
|
sl@0
|
13 |
# functions. Those routines are not strictly necessary - they are
|
sl@0
|
14 |
# designed to detect misuse of the library.
|
sl@0
|
15 |
#
|
sl@0
|
16 |
# $Id: safety.test,v 1.4 2008/03/18 13:46:53 drh Exp $
|
sl@0
|
17 |
|
sl@0
|
18 |
set testdir [file dirname $argv0]
|
sl@0
|
19 |
source $testdir/tester.tcl
|
sl@0
|
20 |
|
sl@0
|
21 |
ifcapable !debug {
|
sl@0
|
22 |
puts "Skipping safety tests since SQLITE_DEBUG is off"
|
sl@0
|
23 |
finish_test
|
sl@0
|
24 |
return
|
sl@0
|
25 |
}
|
sl@0
|
26 |
|
sl@0
|
27 |
# Return the UTF-8 representation of the supplied UTF-16 string $str.
|
sl@0
|
28 |
proc utf8 {str} {
|
sl@0
|
29 |
# If $str ends in two 0x00 0x00 bytes, knock these off before
|
sl@0
|
30 |
# converting to UTF-8 using TCL.
|
sl@0
|
31 |
binary scan $str \c* vals
|
sl@0
|
32 |
if {[lindex $vals end]==0 && [lindex $vals end-1]==0} {
|
sl@0
|
33 |
set str [binary format \c* [lrange $vals 0 end-2]]
|
sl@0
|
34 |
}
|
sl@0
|
35 |
|
sl@0
|
36 |
set r [encoding convertfrom unicode $str]
|
sl@0
|
37 |
return $r
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
|
sl@0
|
41 |
do_test safety-1.1 {
|
sl@0
|
42 |
set DB [sqlite3_connection_pointer db]
|
sl@0
|
43 |
db eval {CREATE TABLE t1(a)}
|
sl@0
|
44 |
sqlite_set_magic $DB SQLITE_MAGIC_BUSY
|
sl@0
|
45 |
catchsql {
|
sl@0
|
46 |
SELECT name FROM sqlite_master;
|
sl@0
|
47 |
}
|
sl@0
|
48 |
} {1 {library routine called out of sequence}}
|
sl@0
|
49 |
do_test safety-1.2 {
|
sl@0
|
50 |
sqlite_set_magic $DB SQLITE_MAGIC_OPEN
|
sl@0
|
51 |
catchsql {
|
sl@0
|
52 |
SELECT name FROM sqlite_master
|
sl@0
|
53 |
}
|
sl@0
|
54 |
} {0 t1}
|
sl@0
|
55 |
|
sl@0
|
56 |
do_test safety-2.1 {
|
sl@0
|
57 |
proc safety_on {} "sqlite_set_magic $DB SQLITE_MAGIC_BUSY"
|
sl@0
|
58 |
db function safety_on safety_on
|
sl@0
|
59 |
catchsql {
|
sl@0
|
60 |
SELECT safety_on(), name FROM sqlite_master
|
sl@0
|
61 |
}
|
sl@0
|
62 |
} {1 {library routine called out of sequence}}
|
sl@0
|
63 |
ifcapable {utf16} {
|
sl@0
|
64 |
do_test safety-2.1.1 {
|
sl@0
|
65 |
utf8 [sqlite3_errmsg16 db]
|
sl@0
|
66 |
} {library routine called out of sequence}
|
sl@0
|
67 |
}
|
sl@0
|
68 |
do_test safety-2.2 {
|
sl@0
|
69 |
catchsql {
|
sl@0
|
70 |
SELECT 'hello'
|
sl@0
|
71 |
}
|
sl@0
|
72 |
} {1 {library routine called out of sequence}}
|
sl@0
|
73 |
do_test safety-2.3 {
|
sl@0
|
74 |
sqlite3_close $DB
|
sl@0
|
75 |
} {SQLITE_MISUSE}
|
sl@0
|
76 |
do_test safety-2.4 {
|
sl@0
|
77 |
sqlite_set_magic $DB SQLITE_MAGIC_OPEN
|
sl@0
|
78 |
execsql {
|
sl@0
|
79 |
SELECT name FROM sqlite_master
|
sl@0
|
80 |
}
|
sl@0
|
81 |
} {t1}
|
sl@0
|
82 |
|
sl@0
|
83 |
do_test safety-3.1 {
|
sl@0
|
84 |
set rc [catch {
|
sl@0
|
85 |
db eval {SELECT name FROM sqlite_master} {
|
sl@0
|
86 |
sqlite_set_magic $DB SQLITE_MAGIC_BUSY
|
sl@0
|
87 |
}
|
sl@0
|
88 |
} msg]
|
sl@0
|
89 |
lappend rc $msg
|
sl@0
|
90 |
} {1 {library routine called out of sequence}}
|
sl@0
|
91 |
sqlite_set_magic $DB SQLITE_MAGIC_OPEN
|
sl@0
|
92 |
|
sl@0
|
93 |
finish_test
|