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 script is extension loading.
14 # $Id: loadext.test,v 1.15 2008/08/22 13:57:39 pweilbacher Exp $
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
24 # The name of the test extension varies by operating system.
26 if {$::tcl_platform(platform) eq "windows" || $::tcl_platform(platform) eq "os2"} {
27 set testextension ./testloadext.dll
29 set testextension ./libtestloadext.so
31 set gcc_shared -shared
32 if {$::tcl_platform(os) eq "Darwin"} {
33 set gcc_shared -dynamiclib
36 # The error messages tested by this file are operating system dependent
37 # (because they are returned by sqlite3OsDlError()). For now, they only
38 # work with UNIX (and probably only certain kinds of UNIX).
40 # When a shared-object cannot be opened because it does not exist, the
41 # format of the message returned is:
43 # [format $dlerror_nosuchfile <shared-object-name>]
45 # When a shared-object cannot be opened because it consists of the 4
46 # characters "blah" only, we expect the error message to be:
48 # [format $dlerror_notadll <shared-object-name>]
50 # When a symbol cannot be found within an open shared-object, the error
53 # [format $dlerror_nosymbol <shared-object-name> <symbol-name>]
55 # The exact error messages are not important. The important bit is
56 # that SQLite is correctly copying the message from xDlError().
58 set dlerror_nosuchfile \
59 {%s: cannot open shared object file: No such file or directory}
60 set dlerror_notadll {%s: file too short}
61 set dlerror_nosymbol {%s: undefined symbol: %s}
63 if {$::tcl_platform(os) eq "Darwin"} {
64 set dlerror_nosuchfile {dlopen(%s, 10): image not found}
65 set dlerror_notadll {dlopen(%1$s, 10): no suitable image found. Did find:
67 set dlerror_nosymbol {dlsym(XXX, %2$s): symbol not found}
70 # Make sure the test extension actually exists. If it does not
71 # exist, try to create it. If unable to create it, then skip this
74 if {![file exists $testextension]} {
75 set srcdir [file dir $testdir]/src
76 set testextsrc $srcdir/test_loadext.c
78 exec gcc $gcc_shared -Wall -I$srcdir -I. -g $testextsrc -o $testextension
80 puts "Skipping loadext tests: Test extension not built..."
87 # Test that loading the extension produces the expected results - adding
88 # the half() function to the specified database handle.
94 } {1 {no such function: half}}
96 db enable_load_extension 1
97 sqlite3_load_extension db $testextension testloadext_init
103 # Test that a second database connection (db2) can load the extension also.
105 do_test loadext-1.3 {
107 sqlite3_enable_load_extension db2 1
111 } {1 {no such function: half}}
112 do_test loadext-1.4 {
113 sqlite3_load_extension db2 $testextension testloadext_init
119 # Close the first database connection. Then check that the second database
120 # can still use the half() function without a problem.
122 do_test loadext-1.5 {
131 sqlite3_enable_load_extension db 1
133 # Try to load an extension for which the file does not exist.
135 do_test loadext-2.1 {
136 file delete -force ${testextension}xx
138 sqlite3_load_extension db "${testextension}xx"
141 } [list 1 [format $dlerror_nosuchfile ${testextension}xx]]
143 # Try to load an extension for which the file is not a shared object
145 do_test loadext-2.2 {
146 set fd [open "${testextension}xx" w]
150 sqlite3_load_extension db "${testextension}xx"
153 } [list 1 [format $dlerror_notadll ${testextension}xx]]
155 # Try to load an extension for which the file is present but the
156 # entry point is not.
158 do_test loadext-2.3 {
160 sqlite3_load_extension db $testextension icecream
162 if {$::tcl_platform(os) eq "Darwin"} {
163 regsub {0x[1234567890abcdefABCDEF]*} $msg XXX msg
166 } [list 1 [format $dlerror_nosymbol $testextension icecream]]
168 # Try to load an extension for which the entry point fails (returns non-zero)
170 do_test loadext-2.4 {
172 sqlite3_load_extension db $testextension testbrokenext_init
175 } {1 {error during initialization: broken!}}
177 ############################################################################
178 # Tests for the load_extension() SQL function
183 sqlite3_enable_load_extension db 1
184 do_test loadext-3.1 {
188 } {1 {no such function: half}}
189 do_test loadext-3.2 {
191 SELECT load_extension($::testextension)
193 if {$::tcl_platform(os) eq "Darwin"} {
194 regsub {0x[1234567890abcdefABCDEF]*} $res XXX res
197 } [list 1 [format $dlerror_nosymbol $testextension sqlite3_extension_init]]
198 do_test loadext-3.3 {
200 SELECT load_extension($::testextension,'testloadext_init')
203 do_test loadext-3.4 {
208 do_test loadext-3.5 {
210 SELECT sqlite3_status('MEMORY_USED') AS mused
212 puts -nonewline " (memory_used=$mused) "
215 do_test loadext-3.6 {
217 SELECT sqlite3_status('MEMORY_USED_X') AS mused
219 } {1 {unknown status property: MEMORY_USED_X}}
220 do_test loadext-3.7 {
222 SELECT sqlite3_status(4.53) AS mused
224 } {1 {unknown status type}}
225 do_test loadext-3.8 {
227 SELECT sqlite3_status(23) AS mused
229 } {1 {sqlite3_status(23,...) returns 21}}
232 # Make sure the extension loading mechanism will not work unless it
233 # is explicitly enabled.
237 do_test loadext-4.1 {
239 SELECT load_extension($::testextension,'testloadext_init')
241 } {1 {not authorized}}
242 do_test loadext-4.2 {
243 sqlite3_enable_load_extension db 1
245 SELECT load_extension($::testextension,'testloadext_init')
249 do_test loadext-4.3 {
250 sqlite3_enable_load_extension db 0
252 SELECT load_extension($::testextension,'testloadext_init')
254 } {1 {not authorized}}
256 source $testdir/malloc_common.tcl
259 # Malloc failure in sqlite3_auto_extension and sqlite3_load_extension
261 do_malloc_test loadext-5 -tclprep {
262 sqlite3_reset_auto_extension
264 if {[autoinstall_test_functions]==7} {error "out of memory"}
266 do_malloc_test loadext-6 -tclbody {
267 db enable_load_extension 1
268 sqlite3_load_extension db $::testextension testloadext_init
270 autoinstall_test_functions