blob: 4868c12ac0456ef036392a274525f28be31643c6 [file] [log] [blame]
danielk1977a713f2c2007-03-29 12:19:11 +00001# 2006 September 4
2#
3# The author disclaims copyright to this source code. In place of
4# a legal notice, here is a blessing:
5#
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.
9#
10#***********************************************************************
11# This file implements regression tests for SQLite library.
12#
drhe64ca7b2009-07-16 18:21:17 +000013# $Id: misc7.test,v 1.29 2009/07/16 18:21:18 drh Exp $
danielk1977a713f2c2007-03-29 12:19:11 +000014
15set testdir [file dirname $argv0]
16source $testdir/tester.tcl
17
drh01495b92008-01-23 12:52:40 +000018do_test misc7-1-misuse {
19 c_misuse_test
20} {}
danielk1977a713f2c2007-03-29 12:19:11 +000021
22do_test misc7-2 {
23 c_realloc_test
24} {}
25
26do_test misc7-3 {
27 c_collation_test
28} {}
29
danielk197769b637b2007-03-29 17:07:52 +000030# Try to open a directory:
31#
32do_test misc7-4 {
mistachkinfda06be2011-08-02 00:57:34 +000033 delete_file mydir
danielk197769b637b2007-03-29 17:07:52 +000034 file mkdir mydir
35 set rc [catch {
36 sqlite3 db2 ./mydir
37 } msg]
38 list $rc $msg
39} {1 {unable to open database file}}
40
drh85b623f2007-12-13 21:54:09 +000041# Try to open a file with a directory where its journal file should be.
danielk197769b637b2007-03-29 17:07:52 +000042#
43do_test misc7-5 {
mistachkinfda06be2011-08-02 00:57:34 +000044 delete_file mydir
danielk197769b637b2007-03-29 17:07:52 +000045 file mkdir mydir-journal
46 sqlite3 db2 ./mydir
47 catchsql {
48 CREATE TABLE abc(a, b, c);
49 } db2
50} {1 {unable to open database file}}
51db2 close
52
53#--------------------------------------------------------------------
54# The following tests, misc7-6.* test the libraries behaviour when
55# it cannot open a file. To force this condition, we use up all the
56# file-descriptors before running sqlite. This probably only works
57# on unix.
58#
59
60proc use_up_files {} {
61 set ret [list]
62 catch {
63 while 1 { lappend ret [open test.db] }
64 }
65 return $ret
66}
67
danielk197795b289b2007-03-30 17:11:12 +000068proc do_fileopen_test {prefix sql} {
69 set fd_list [use_up_files]
70 set ::go 1
71 set ::n 1
72 set ::sql $sql
73 while {$::go} {
74 catch {db close}
75 do_test ${prefix}.${::n} {
76 set rc [catch {
77 sqlite db test.db
78 db eval $::sql
79 } msg]
80 if {$rc == 0} {set ::go 0}
81
82 expr {$rc == 0 || ($rc == 1 && [string first unable $msg]==0)}
83 } 1
84
85 close [lindex $fd_list 0]
86 set fd_list [lrange $fd_list 1 end]
87 incr ::n
88 }
89 foreach fd $fd_list {
90 close $fd
91 }
92 db close
93}
94
danielk197769b637b2007-03-29 17:07:52 +000095execsql { CREATE TABLE abc(a PRIMARY KEY, b, c); }
96db close
danielk197769b637b2007-03-29 17:07:52 +000097
drh0b3d55d2007-04-25 15:42:25 +000098if {$tcl_platform(platform)!="windows"} {
99 do_fileopen_test misc7-6.1 {
100 BEGIN;
101 INSERT INTO abc VALUES(1, 2, 3);
102 INSERT INTO abc VALUES(2, 3, 4);
103 INSERT INTO abc SELECT a+2, b, c FROM abc;
104 COMMIT;
105 }
106
107 do_fileopen_test misc7-6.2 {
108 PRAGMA temp.cache_size = 1000;
109 }
danielk197769b637b2007-03-29 17:07:52 +0000110}
danielk197795b289b2007-03-30 17:11:12 +0000111
danielk1977b5584c02007-03-30 07:10:50 +0000112#
113# End of tests for out-of-file-descriptors condition.
114#--------------------------------------------------------------------
115
drh073d3ef2007-03-30 13:01:32 +0000116sqlite3 db test.db
drh0b3d55d2007-04-25 15:42:25 +0000117execsql {
118 DELETE FROM abc;
119 INSERT INTO abc VALUES(1, 2, 3);
120 INSERT INTO abc VALUES(2, 3, 4);
121 INSERT INTO abc SELECT a+2, b, c FROM abc;
122}
123
124
danielk1977b5584c02007-03-30 07:10:50 +0000125#--------------------------------------------------------------------
126# Test that the sqlite3_busy_timeout call seems to delay approximately
127# the right amount of time.
128#
danielk197795b289b2007-03-30 17:11:12 +0000129do_test misc7-7.0 {
danielk1977b5584c02007-03-30 07:10:50 +0000130 sqlite3 db2 test.db
danielk1977b5584c02007-03-30 07:10:50 +0000131 sqlite3_busy_timeout [sqlite3_connection_pointer db] 2000
132 execsql {
133 BEGIN EXCLUSIVE;
134 } db2
135
136 # Now db2 has an exclusive lock on the database file, and db has
137 # a busy-timeout of 2000 milliseconds. So check that trying to
138 # access the database using connection db delays for at least 1500 ms.
139 #
drh073d3ef2007-03-30 13:01:32 +0000140 set tm [time {
141 set result [catchsql {
142 SELECT * FROM sqlite_master;
143 } db]
144 }]
145 set delay [lindex $tm 0] ;# In microseconds
drh0b3d55d2007-04-25 15:42:25 +0000146 lappend result [expr {$delay>1500000 && $delay<4000000}]
drh073d3ef2007-03-30 13:01:32 +0000147} {1 {database is locked} 1}
danielk1977b5584c02007-03-30 07:10:50 +0000148db2 close
149
150#--------------------------------------------------------------------
151# Test that nothing goes horribly wrong when attaching a database
152# after the omit_readlock pragma has been exercised.
153#
drh33f111d2012-01-17 15:29:14 +0000154# Note: The PRAGMA omit_readlock was an early hack to disable the
155# fcntl() calls for read-only databases so that read-only databases could
156# be read on broken NFS systems. That pragma has now been removed.
157# (Use the unix-none VFS as a replacement, if needed.) But these tests
158# do not really depend on omit_readlock, so we left them in place.
159#
danielk1977935ed5e2007-03-30 09:13:13 +0000160do_test misc7-7.1 {
mistachkinfda06be2011-08-02 00:57:34 +0000161 forcedelete test2.db
162 forcedelete test2.db-journal
danielk1977b5584c02007-03-30 07:10:50 +0000163 execsql {
164 PRAGMA omit_readlock = 1;
165 ATTACH 'test2.db' AS aux;
166 CREATE TABLE aux.hello(world);
167 SELECT name FROM aux.sqlite_master;
168 }
169} {hello}
danielk1977935ed5e2007-03-30 09:13:13 +0000170do_test misc7-7.2 {
171 execsql {
172 DETACH aux;
173 }
174} {}
danielk19770371f1b2009-01-09 17:11:04 +0000175do_test misc7-7.3 {
176 db close
177 sqlite3 db test.db -readonly 1
178 execsql {
179 PRAGMA omit_readlock = 1;
180 ATTACH 'test2.db' AS aux;
181 SELECT name FROM aux.sqlite_master;
182 SELECT name FROM aux.sqlite_master;
183 }
184} {hello hello}
185do_test misc7-7.3 {
186 db close
187 sqlite3 db test.db
188 set ::DB [sqlite3_connection_pointer db]
189 list
190} {}
danielk1977b5584c02007-03-30 07:10:50 +0000191
danielk197724168722007-04-02 05:07:47 +0000192# Test the UTF-16 version of the "out of memory" message (used when
193# malloc fails during sqlite3_open() ).
danielk1977b5584c02007-03-30 07:10:50 +0000194#
195ifcapable utf16 {
196 do_test misc7-8 {
197 encoding convertfrom unicode [sqlite3_errmsg16 0x00000000]
198 } {out of memory}
199}
200
danielk1977935ed5e2007-03-30 09:13:13 +0000201do_test misc7-9 {
202 execsql {
203 SELECT *
204 FROM (SELECT name+1 AS one FROM sqlite_master LIMIT 1 OFFSET 1)
205 WHERE one LIKE 'hello%';
206 }
207} {}
danielk1977b5584c02007-03-30 07:10:50 +0000208
danielk1977935ed5e2007-03-30 09:13:13 +0000209#--------------------------------------------------------------------
danielk1977780b1d92007-03-30 14:56:34 +0000210# Improve coverage for vtab code.
danielk1977935ed5e2007-03-30 09:13:13 +0000211#
212ifcapable vtab {
danielk1977780b1d92007-03-30 14:56:34 +0000213 # Run some debug code to improve reported coverage
214 #
215
216 # set sqlite_where_trace 1
danielk1977935ed5e2007-03-30 09:13:13 +0000217 do_test misc7-10 {
218 register_echo_module [sqlite3_connection_pointer db]
danielk1977935ed5e2007-03-30 09:13:13 +0000219 execsql {
220 CREATE VIRTUAL TABLE t1 USING echo(abc);
221 SELECT a FROM t1 WHERE a = 1 ORDER BY b;
222 }
223 } {1}
danielk1977780b1d92007-03-30 14:56:34 +0000224 set sqlite_where_trace 0
225
226 # Specify an ORDER BY clause that cannot be indexed.
227 do_test misc7-11 {
228 execsql {
229 SELECT t1.a, t2.a FROM t1, t1 AS t2 ORDER BY 2 LIMIT 1;
230 }
231 } {1 1}
232
233 # The whole point of this is to test an error code other than
234 # SQLITE_NOMEM from the vtab xBestIndex callback.
235 #
236 do_ioerr_test misc7-12 -tclprep {
237 sqlite3 db2 test.db
238 register_echo_module [sqlite3_connection_pointer db2]
239 db2 eval {
240 CREATE TABLE abc(a PRIMARY KEY, b, c);
241 INSERT INTO abc VALUES(1, 2, 3);
242 CREATE VIRTUAL TABLE t1 USING echo(abc);
243 }
244 db2 close
245 } -tclbody {
246 register_echo_module [sqlite3_connection_pointer db]
247 execsql {SELECT * FROM t1 WHERE a = 1;}
248 }
249
250 # The case where the virtual table module returns a very large number
251 # as the cost of a scan (greater than SQLITE_BIG_DOUBLE in the code).
252 #
253 do_test misc7-13 {
254 sqlite3 db test.db
255 register_echo_module [sqlite3_connection_pointer db]
256 set ::echo_module_cost 2.0e+99
257 execsql {SELECT * FROM t1 WHERE a = 1;}
258 } {1 2 3}
259 unset ::echo_module_cost
danielk1977935ed5e2007-03-30 09:13:13 +0000260}
danielk197769b637b2007-03-29 17:07:52 +0000261
danielk197795b289b2007-03-30 17:11:12 +0000262db close
mistachkinfda06be2011-08-02 00:57:34 +0000263forcedelete test.db
264forcedelete test.db-journal
danielk197795b289b2007-03-30 17:11:12 +0000265sqlite3 db test.db
266
267ifcapable explain {
dan659816e2010-12-02 06:08:53 +0000268 do_execsql_test misc7-14.1 {
269 CREATE TABLE abc(a PRIMARY KEY, b, c);
270 EXPLAIN QUERY PLAN SELECT * FROM abc AS t2 WHERE rowid = 1;
271 } {
272 0 0 0 {SEARCH TABLE abc AS t2 USING INTEGER PRIMARY KEY (rowid=?) (~1 rows)}
273 }
274 do_execsql_test misc7-14.2 {
275 EXPLAIN QUERY PLAN SELECT * FROM abc AS t2 WHERE a = 1;
276 } {0 0 0
277 {SEARCH TABLE abc AS t2 USING INDEX sqlite_autoindex_abc_1 (a=?) (~1 rows)}
278 }
279 do_execsql_test misc7-14.3 {
280 EXPLAIN QUERY PLAN SELECT * FROM abc AS t2 ORDER BY a;
281 } {0 0 0
282 {SCAN TABLE abc AS t2 USING INDEX sqlite_autoindex_abc_1 (~1000000 rows)}
283 }
danielk197795b289b2007-03-30 17:11:12 +0000284}
danielk1977780b1d92007-03-30 14:56:34 +0000285
danielk197735469472007-03-30 18:21:52 +0000286db close
mistachkinfda06be2011-08-02 00:57:34 +0000287forcedelete test.db
288forcedelete test.db-journal
danielk197735469472007-03-30 18:21:52 +0000289sqlite3 db test.db
290
291#--------------------------------------------------------------------
292# This is all to force the pager_remove_from_stmt_list() function
293# (inside pager.c) to remove a pager from the middle of the
294# statement-list.
295#
296do_test misc7-15.1 {
297 execsql {
298 PRAGMA cache_size = 10;
299 BEGIN;
300 CREATE TABLE abc(a PRIMARY KEY, b, c);
301 INSERT INTO abc
302 VALUES(randstr(100,100), randstr(100,100), randstr(100,100));
303 INSERT INTO abc SELECT
304 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
305 INSERT INTO abc SELECT
306 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
307 INSERT INTO abc SELECT
308 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
309 INSERT INTO abc SELECT
310 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
311 INSERT INTO abc SELECT
312 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
313 INSERT INTO abc SELECT
314 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
315 INSERT INTO abc SELECT
316 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
317 INSERT INTO abc SELECT
318 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
319 COMMIT;
320 }
321 expr {[file size test.db]>10240}
322} {1}
323do_test misc7-15.2 {
324 execsql {
325 DELETE FROM abc WHERE rowid > 12;
326 INSERT INTO abc SELECT
327 randstr(100,100), randstr(100,100), randstr(100,100) FROM abc;
328 }
329} {}
330
danielk1977393f0682007-03-31 10:00:48 +0000331db close
mistachkinfda06be2011-08-02 00:57:34 +0000332forcedelete test.db
333forcedelete test.db-journal
danielk1977393f0682007-03-31 10:00:48 +0000334sqlite3 db test.db
335
336do_ioerr_test misc7-16 -sqlprep {
337 PRAGMA cache_size = 10;
338 PRAGMA default_cache_size = 10;
339 CREATE TABLE t3(a, b, UNIQUE(a, b));
340 INSERT INTO t3 VALUES( randstr(100, 100), randstr(100, 100) );
341 INSERT INTO t3 SELECT randstr(100, 100), randstr(100, 100) FROM t3;
342 INSERT INTO t3 SELECT randstr(100, 100), randstr(100, 100) FROM t3;
343 INSERT INTO t3 SELECT randstr(100, 100), randstr(100, 100) FROM t3;
344 INSERT INTO t3 SELECT randstr(100, 100), randstr(100, 100) FROM t3;
345 INSERT INTO t3 SELECT randstr(100, 100), randstr(100, 100) FROM t3;
346 UPDATE t3
347 SET b = 'hello world'
348 WHERE rowid >= (SELECT max(rowid)-1 FROM t3);
349} -tclbody {
350 set rc [catch {db eval {
351 BEGIN;
352 PRAGMA cache_size = 10;
353 INSERT INTO t3 VALUES( randstr(100, 100), randstr(100, 100) );
354 UPDATE t3 SET a = b;
355 COMMIT;
356 }} msg]
357
358 if {!$rc || ($rc && [string first "columns" $msg]==0)} {
359 set msg
360 } else {
361 error $msg
362 }
363}
364
danielk197724168722007-04-02 05:07:47 +0000365sqlite3 db test.db
danielk197708d31a22007-04-02 11:08:58 +0000366
367do_test misc7-16.X {
368 execsql {
369 SELECT count(*) FROM t3;
370 }
371} {32}
372
danielk197708d31a22007-04-02 11:08:58 +0000373#----------------------------------------------------------------------
374# Test the situation where a hot-journal is discovered but write-access
375# to it is denied. This should return SQLITE_BUSY.
376#
drh0b3d55d2007-04-25 15:42:25 +0000377# These tests do not work on windows due to restrictions in the
378# windows file system.
379#
mistachkinf1c6bc52012-06-21 15:09:20 +0000380if {$tcl_platform(platform)!="windows"} {
danielk197708d31a22007-04-02 11:08:58 +0000381
drh17fe6c12008-03-15 14:53:04 +0000382 # Some network filesystems (ex: AFP) do not support setting read-only
383 # permissions. Only run these tests if full unix permission setting
384 # capabilities are supported.
385 #
386 file attributes test.db -permissions rw-r--r--
387 if {[file attributes test.db -permissions]==0644} {
danielk197708d31a22007-04-02 11:08:58 +0000388
drh17fe6c12008-03-15 14:53:04 +0000389 do_test misc7-17.1 {
390 execsql {
391 BEGIN;
392 DELETE FROM t3 WHERE (oid%3)==0;
393 }
mistachkinfda06be2011-08-02 00:57:34 +0000394 forcecopy test.db bak.db
395 forcecopy test.db-journal bak.db-journal
drh17fe6c12008-03-15 14:53:04 +0000396 execsql {
397 COMMIT;
398 }
399
400 db close
mistachkinfda06be2011-08-02 00:57:34 +0000401 forcecopy bak.db test.db
402 forcecopy bak.db-journal test.db-journal
drh17fe6c12008-03-15 14:53:04 +0000403 sqlite3 db test.db
404
405 catch {file attributes test.db-journal -permissions r--------}
406 catch {file attributes test.db-journal -readonly 1}
407 catchsql {
408 SELECT count(*) FROM t3;
409 }
drh99dfe5e2008-10-30 15:03:15 +0000410 } {1 {unable to open database file}}
drh17fe6c12008-03-15 14:53:04 +0000411 do_test misc7-17.2 {
412 # Note that the -readonly flag must be cleared before the -permissions
413 # are set. Otherwise, when using tcl 8.5 on mac, the fact that the
414 # -readonly flag is set causes the attempt to set the permissions
415 # to fail.
416 catch {file attributes test.db-journal -readonly 0}
417 catch {file attributes test.db-journal -permissions rw-------}
418 catchsql {
419 SELECT count(*) FROM t3;
420 }
421 } {0 32}
422
danielk19778e3e8812009-02-10 05:45:41 +0000423 # sqlite3_test_control_pending_page [expr ($::sqlite_pending_byte / 1024) + 1]
424 set ::pending_byte_page [expr ($::sqlite_pending_byte / 1024) + 1]
425 sqlite3_test_control_pending_byte $::sqlite_pending_byte
drh17fe6c12008-03-15 14:53:04 +0000426 do_test misc7-17.3 {
427 db eval {
428 pragma writable_schema = true;
429 UPDATE sqlite_master
430 SET rootpage = $pending_byte_page
431 WHERE type = 'table' AND name = 't3';
432 }
433 execsql {
434 SELECT rootpage FROM sqlite_master WHERE type = 'table' AND name = 't3';
435 }
436 } $::pending_byte_page
437
438 do_test misc7-17.4 {
439 db close
440 sqlite3 db test.db
441 catchsql {
442 SELECT count(*) FROM t3;
443 }
444 } {1 {database disk image is malformed}}
danielk197708d31a22007-04-02 11:08:58 +0000445 }
drh0b3d55d2007-04-25 15:42:25 +0000446}
danielk1977ead8e3f2007-04-02 12:28:27 +0000447
drh6bd00bf2007-06-27 23:52:18 +0000448# Ticket #2470
449#
450do_test misc7-18.1 {
451 execsql {
452 CREATE TABLE table_1 (col_10);
453 CREATE TABLE table_2 (
454 col_1, col_2, col_3, col_4, col_5,
455 col_6, col_7, col_8, col_9, col_10
456 );
drh8278ce72008-07-11 13:53:54 +0000457 SELECT a.col_10
drh6bd00bf2007-06-27 23:52:18 +0000458 FROM
drh8278ce72008-07-11 13:53:54 +0000459 (SELECT table_1.col_10 AS col_10 FROM table_1) a,
drh6bd00bf2007-06-27 23:52:18 +0000460 (SELECT table_1.col_10, table_2.col_9 AS qcol_9
461 FROM table_1, table_2
462 GROUP BY table_1.col_10, qcol_9);
463 }
464} {}
465
drhaf005fb2008-07-09 16:51:51 +0000466# Testing boundary conditions on sqlite3_status()
467#
468do_test misc7-19.1 {
469 sqlite3_status -1 0
470} {21 0 0}
471do_test misc7-19.2 {
472 sqlite3_status 1000 0
473} {21 0 0}
474
475
drhe2a7c6e2008-08-01 15:06:30 +0000476# sqlite3_global_recover() is a no-op. But we might as well test it
477# if only to get the test coverage.
478#
479do_test misc7-20.1 {
480 sqlite3_global_recover
481} {SQLITE_OK}
482
danielk19770371f1b2009-01-09 17:11:04 +0000483# Try to open a really long file name.
484#
485do_test misc7-21.1 {
mistachkinf8a78462012-03-08 20:00:36 +0000486 set zFile [file join [get_pwd] "[string repeat abcde 104].db"]
danielk19770371f1b2009-01-09 17:11:04 +0000487 set rc [catch {sqlite3 db2 $zFile} msg]
488 list $rc $msg
489} {1 {unable to open database file}}
490
drhaf005fb2008-07-09 16:51:51 +0000491
danielk1977ead8e3f2007-04-02 12:28:27 +0000492db close
mistachkinfda06be2011-08-02 00:57:34 +0000493forcedelete test.db
danielk197708d31a22007-04-02 11:08:58 +0000494
danielk1977a713f2c2007-03-29 12:19:11 +0000495finish_test