First public contribution.
3 # Portions Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiaries. All rights reserved.
5 # The author disclaims copyright to this source code. In place of
6 # a legal notice, here is a blessing:
8 # May you do good and not evil.
9 # May you find forgiveness for yourself and forgive others.
10 # May you share freely, never taking more than you give.
12 #***********************************************************************
13 # This file implements regression tests for SQLite library.
15 # $Id: misc7.test,v 1.24 2008/08/22 13:57:39 pweilbacher Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
20 do_test misc7-1-misuse {
32 # Try to open a directory:
33 # Symbian OS: '/' in the file name replaced with '\\'
41 } {1 {unable to open database file}}
43 # Try to open a file with a directory where its journal file should be.
44 # Symbian OS: '/' in the file name replaced with '\\'
47 file mkdir mydir-journal
50 CREATE TABLE abc(a, b, c);
52 } {1 {unable to open database file}}
55 #--------------------------------------------------------------------
56 # The following tests, misc7-6.* test the libraries behaviour when
57 # it cannot open a file. To force this condition, we use up all the
58 # file-descriptors before running sqlite. This probably only works
62 proc use_up_files {} {
65 while 1 { lappend ret [open test.db] }
70 proc do_fileopen_test {prefix sql} {
71 set fd_list [use_up_files]
77 do_test ${prefix}.${::n} {
82 if {$rc == 0} {set ::go 0}
84 expr {$rc == 0 || ($rc == 1 && [string first unable $msg]==0)}
87 close [lindex $fd_list 0]
88 set fd_list [lrange $fd_list 1 end]
97 execsql { CREATE TABLE abc(a PRIMARY KEY, b, c); }
100 if {$tcl_platform(platform)!="windows" && $tcl_platform(platform)!="symbian"} {
101 do_fileopen_test misc7-6.1 {
103 INSERT INTO abc VALUES(1, 2, 3);
104 INSERT INTO abc VALUES(2, 3, 4);
105 INSERT INTO abc SELECT a+2, b, c FROM abc;
109 do_fileopen_test misc7-6.2 {
110 PRAGMA temp.cache_size = 1000;
115 # End of tests for out-of-file-descriptors condition.
116 #--------------------------------------------------------------------
121 INSERT INTO abc VALUES(1, 2, 3);
122 INSERT INTO abc VALUES(2, 3, 4);
123 INSERT INTO abc SELECT a+2, b, c FROM abc;
127 #--------------------------------------------------------------------
128 # Test that the sqlite3_busy_timeout call seems to delay approximately
129 # the right amount of time.
133 sqlite3_busy_timeout [sqlite3_connection_pointer db] 2000
138 # Now db2 has an exclusive lock on the database file, and db has
139 # a busy-timeout of 2000 milliseconds. So check that trying to
140 # access the database using connection db delays for at least 1500 ms.
143 set result [catchsql {
144 SELECT * FROM sqlite_master;
147 set delay [lindex $tm 0] ;# In microseconds
148 lappend result [expr {$delay>1500000 && $delay<4000000}]
149 } {1 {database is locked} 1}
152 #--------------------------------------------------------------------
153 # Test that nothing goes horribly wrong when attaching a database
154 # after the omit_readlock pragma has been exercised.
157 file delete -force test2.db
158 file delete -force test2.db-journal
160 PRAGMA omit_readlock = 1;
161 ATTACH 'test2.db' AS aux;
162 CREATE TABLE aux.hello(world);
163 SELECT name FROM aux.sqlite_master;
172 # Test the UTF-16 version of the "out of memory" message (used when
173 # malloc fails during sqlite3_open() ).
177 encoding convertfrom unicode [sqlite3_errmsg16 0x00000000]
184 FROM (SELECT name+1 AS one FROM sqlite_master LIMIT 1 OFFSET 1)
185 WHERE one LIKE 'hello%';
189 #--------------------------------------------------------------------
190 # Improve coverage for vtab code.
193 # Run some debug code to improve reported coverage
196 # set sqlite_where_trace 1
198 register_echo_module [sqlite3_connection_pointer db]
200 CREATE VIRTUAL TABLE t1 USING echo(abc);
201 SELECT a FROM t1 WHERE a = 1 ORDER BY b;
204 set sqlite_where_trace 0
206 # Specify an ORDER BY clause that cannot be indexed.
209 SELECT t1.a, t2.a FROM t1, t1 AS t2 ORDER BY 2 LIMIT 1;
213 # The whole point of this is to test an error code other than
214 # SQLITE_NOMEM from the vtab xBestIndex callback.
216 do_ioerr_test misc7-12 -tclprep {
218 register_echo_module [sqlite3_connection_pointer db2]
220 CREATE TABLE abc(a PRIMARY KEY, b, c);
221 INSERT INTO abc VALUES(1, 2, 3);
222 CREATE VIRTUAL TABLE t1 USING echo(abc);
226 register_echo_module [sqlite3_connection_pointer db]
227 execsql {SELECT * FROM t1 WHERE a = 1;}
230 # The case where the virtual table module returns a very large number
231 # as the cost of a scan (greater than SQLITE_BIG_DOUBLE in the code).
235 register_echo_module [sqlite3_connection_pointer db]
236 set ::echo_module_cost 2.0e+99
237 execsql {SELECT * FROM t1 WHERE a = 1;}
239 unset ::echo_module_cost
243 file delete -force test.db
244 file delete -force test.db-journal
250 CREATE TABLE abc(a PRIMARY KEY, b, c);
253 EXPLAIN QUERY PLAN SELECT * FROM abc AS t2 WHERE rowid = 1;
255 } {0 0 {TABLE abc AS t2 USING PRIMARY KEY}}
258 EXPLAIN QUERY PLAN SELECT * FROM abc AS t2 WHERE a = 1;
260 } {0 0 {TABLE abc AS t2 WITH INDEX sqlite_autoindex_abc_1}}
263 EXPLAIN QUERY PLAN SELECT * FROM abc AS t2 ORDER BY a;
265 } {0 0 {TABLE abc AS t2 WITH INDEX sqlite_autoindex_abc_1 ORDER BY}}
269 file delete -force test.db
270 file delete -force test.db-journal
273 #--------------------------------------------------------------------
274 # This is all to force the pager_remove_from_stmt_list() function
275 # (inside pager.c) to remove a pager from the middle of the
280 PRAGMA cache_size = 10;
282 CREATE TABLE abc(a PRIMARY KEY, b, c);
284 VALUES(randstr(100,100), randstr(100,100), randstr(100,100));
285 INSERT INTO abc SELECT
286 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
287 INSERT INTO abc SELECT
288 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
289 INSERT INTO abc SELECT
290 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
291 INSERT INTO abc SELECT
292 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
293 INSERT INTO abc SELECT
294 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
295 INSERT INTO abc SELECT
296 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
297 INSERT INTO abc SELECT
298 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
299 INSERT INTO abc SELECT
300 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
303 expr {[file size test.db]>10240}
307 DELETE FROM abc WHERE rowid > 12;
308 INSERT INTO abc SELECT
309 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
314 file delete -force test.db
315 file delete -force test.db-journal
318 do_ioerr_test misc7-16 -sqlprep {
319 PRAGMA cache_size = 10;
320 PRAGMA default_cache_size = 10;
321 CREATE TABLE t3(a, b, UNIQUE(a, b));
322 INSERT INTO t3 VALUES( randstr(100, 100), randstr(100, 100) );
323 INSERT INTO t3 SELECT randstr(100, 100), randstr(100, 100) FROM t3;
324 INSERT INTO t3 SELECT randstr(100, 100), randstr(100, 100) FROM t3;
325 INSERT INTO t3 SELECT randstr(100, 100), randstr(100, 100) FROM t3;
326 INSERT INTO t3 SELECT randstr(100, 100), randstr(100, 100) FROM t3;
327 INSERT INTO t3 SELECT randstr(100, 100), randstr(100, 100) FROM t3;
329 SET b = 'hello world'
330 WHERE rowid >= (SELECT max(rowid)-1 FROM t3);
332 set rc [catch {db eval {
334 PRAGMA cache_size = 10;
335 INSERT INTO t3 VALUES( randstr(100, 100), randstr(100, 100) );
340 if {!$rc || ($rc && [string first "columns" $msg]==0)} {
351 SELECT count(*) FROM t3;
355 set sqlite_pager_n_sort_bucket 4
358 PRAGMA integrity_check;
360 PRAGMA integrity_check;
363 set sqlite_pager_n_sort_bucket 0
365 #----------------------------------------------------------------------
366 # Test the situation where a hot-journal is discovered but write-access
367 # to it is denied. This should return SQLITE_BUSY.
369 # These tests do not work on windows due to restrictions in the
370 # windows file system.
372 # TODO: Not clear why this test is crashing tclsqlite3.exe
374 if {$tcl_platform(platform)!="windows" && $tcl_platform(platform)!="symbian" && $tcl_platform(platform)!="os2"} {
376 # Some network filesystems (ex: AFP) do not support setting read-only
377 # permissions. Only run these tests if full unix permission setting
378 # capabilities are supported.
380 file attributes test.db -permissions rw-r--r--
381 if {[file attributes test.db -permissions]==0644} {
386 DELETE FROM t3 WHERE (oid%3)==0;
388 copy_file test.db bak.db
389 copy_file test.db-journal bak.db-journal
395 copy_file bak.db test.db
396 copy_file bak.db-journal test.db-journal
399 catch {file attributes test.db-journal -permissions r--------}
400 catch {file attributes test.db-journal -readonly 1}
402 SELECT count(*) FROM t3;
404 } {1 {database is locked}}
406 # Note that the -readonly flag must be cleared before the -permissions
407 # are set. Otherwise, when using tcl 8.5 on mac, the fact that the
408 # -readonly flag is set causes the attempt to set the permissions
410 catch {file attributes test.db-journal -readonly 0}
411 catch {file attributes test.db-journal -permissions rw-------}
413 SELECT count(*) FROM t3;
417 set ::pending_byte_page [expr ($::sqlite_pending_byte / 1024) + 1]
420 pragma writable_schema = true;
422 SET rootpage = $pending_byte_page
423 WHERE type = 'table' AND name = 't3';
426 SELECT rootpage FROM sqlite_master WHERE type = 'table' AND name = 't3';
428 } $::pending_byte_page
434 SELECT count(*) FROM t3;
436 } {1 {database disk image is malformed}}
444 CREATE TABLE table_1 (col_10);
445 CREATE TABLE table_2 (
446 col_1, col_2, col_3, col_4, col_5,
447 col_6, col_7, col_8, col_9, col_10
451 (SELECT table_1.col_10 AS col_10 FROM table_1) a,
452 (SELECT table_1.col_10, table_2.col_9 AS qcol_9
453 FROM table_1, table_2
454 GROUP BY table_1.col_10, qcol_9);
458 # Testing boundary conditions on sqlite3_status()
464 sqlite3_status 1000 0
468 # sqlite3_global_recover() is a no-op. But we might as well test it
469 # if only to get the test coverage.
472 sqlite3_global_recover
477 file delete -force test.db