First public contribution.
3 # Portions Copyright (c) 2007-2008 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. The
14 # focus of this file is testing for correct handling of I/O errors
15 # such as writes failing because the disk is full.
17 # The tests in this file use special facilities that are only
18 # available in the SQLite test fixture.
20 # $Id: ioerr.test,v 1.41 2008/07/12 14:52:20 drh Exp $
22 set testdir [file dirname $argv0]
23 source $testdir/tester.tcl
25 # If SQLITE_DEFAULT_AUTOVACUUM is set to true, then a simulated IO error
26 # on the 8th IO operation in the SQL script below doesn't report an error.
28 # This is because the 8th IO call attempts to read page 2 of the database
29 # file when the file on disk is only 1 page. The pager layer detects that
30 # this has happened and suppresses the error returned by the OS layer.
32 do_ioerr_test ioerr-1 -erc 1 -ckrefcount 1 -sqlprep {
33 SELECT * FROM sqlite_master;
35 CREATE TABLE t1(a,b,c);
36 SELECT * FROM sqlite_master;
38 INSERT INTO t1 VALUES(1,2,3);
39 INSERT INTO t1 VALUES(4,5,6);
43 INSERT INTO t1 VALUES(1,2,3);
44 INSERT INTO t1 VALUES(4,5,6);
47 DELETE FROM t1 WHERE a<100;
48 } -exclude [expr [string match [execsql {pragma auto_vacuum}] 1] ? 4 : 0]
50 # Test for IO errors during a VACUUM.
52 # The first IO call is excluded from the test. This call attempts to read
53 # the file-header of the temporary database used by VACUUM. Since the
54 # database doesn't exist at that point, the IO error is not detected.
56 # Additionally, if auto-vacuum is enabled, the 12th IO error is not
57 # detected. Same reason as the 8th in the test case above.
60 do_ioerr_test ioerr-2 -cksum true -ckrefcount true -sqlprep {
62 CREATE TABLE t1(a, b, c);
63 INSERT INTO t1 VALUES(1, randstr(50,50), randstr(50,50));
64 INSERT INTO t1 SELECT a+2, b||'-'||rowid, c||'-'||rowid FROM t1;
65 INSERT INTO t1 SELECT a+4, b||'-'||rowid, c||'-'||rowid FROM t1;
66 INSERT INTO t1 SELECT a+8, b||'-'||rowid, c||'-'||rowid FROM t1;
67 INSERT INTO t1 SELECT a+16, b||'-'||rowid, c||'-'||rowid FROM t1;
68 INSERT INTO t1 SELECT a+32, b||'-'||rowid, c||'-'||rowid FROM t1;
69 INSERT INTO t1 SELECT a+64, b||'-'||rowid, c||'-'||rowid FROM t1;
70 INSERT INTO t1 SELECT a+128, b||'-'||rowid, c||'-'||rowid FROM t1;
71 INSERT INTO t1 VALUES(1, randstr(600,600), randstr(600,600));
72 CREATE TABLE t2 AS SELECT * FROM t1;
73 CREATE TABLE t3 AS SELECT * FROM t1;
79 1 [expr [string match [execsql {pragma auto_vacuum}] 1]?9:-1]]
82 do_ioerr_test ioerr-3 -ckrefcount true -tclprep {
84 PRAGMA cache_size = 10;
87 INSERT INTO abc VALUES(randstr(1500,1500)); -- Page 4 is overflow
89 for {set i 0} {$i<150} {incr i} {
91 INSERT INTO abc VALUES(randstr(100,100));
98 DELETE FROM abc WHERE length(a)>100;
99 UPDATE abc SET a = randstr(90,90);
101 CREATE TABLE abc3(a);
104 # Test IO errors that can occur retrieving a record header that flows over
105 # onto an overflow page.
106 do_ioerr_test ioerr-4 -ckrefcount true -tclprep {
107 set sql "CREATE TABLE abc(a1"
108 for {set i 2} {$i<1300} {incr i} {
113 execsql {INSERT INTO abc (a1) VALUES(NULL)}
119 # Test IO errors that may occur during a multi-file commit.
121 # Tests 8 and 17 are excluded when auto-vacuum is enabled for the same
122 # reason as in test cases ioerr-1.XXX
125 if {[string match [execsql {pragma auto_vacuum}] 1]} {
128 do_ioerr_test ioerr-5 -restoreprng 0 -ckrefcount true -sqlprep {
129 ATTACH 'test2.db' AS test2;
132 CREATE TABLE t1(a,b,c);
133 CREATE TABLE test2.t2(a,b,c);
138 # Test IO errors when replaying two hot journals from a 2-file
139 # transaction. This test only runs on UNIX.
140 ifcapable crashtest&&attach {
141 if {![catch {sqlite3 -has_codec} r] && !$r} {
142 do_ioerr_test ioerr-6 -ckrefcount true -tclprep {
144 ATTACH 'test2.db' as aux;
145 CREATE TABLE tx(a, b);
146 CREATE TABLE aux.ty(a, b);
148 set rc [crashsql -delay 2 -file test2.db-journal {
149 ATTACH 'test2.db' as aux;
150 PRAGMA cache_size = 10;
152 CREATE TABLE aux.t2(a, b, c);
153 CREATE TABLE t1(a, b, c);
156 if {$rc!="1 {child process exited abnormally}"} {
157 error "Wrong error message: $rc"
160 SELECT * FROM sqlite_master;
161 SELECT * FROM aux.sqlite_master;
166 # Test handling of IO errors that occur while rolling back hot journal
169 # These tests can't be run on windows because the windows version of
170 # SQLite holds a mandatory exclusive lock on journal files it has open.
172 if {$tcl_platform(platform)!="windows" && $tcl_platform(platform)!="symbian"} {
173 do_ioerr_test ioerr-7 -tclprep {
177 PRAGMA synchronous = 0;
178 CREATE TABLE t1(a, b);
179 INSERT INTO t1 VALUES(1, 2);
181 INSERT INTO t1 VALUES(3, 4);
183 copy_file test2.db test.db
184 copy_file test2.db-journal test.db-journal
194 # For test coverage: Cause an I/O failure while trying to read a
195 # short field (one that fits into a Mem buffer without mallocing
198 do_ioerr_test ioerr-8 -ckrefcount true -tclprep {
200 CREATE TABLE t1(a,b,c);
201 INSERT INTO t1 VALUES(randstr(200,200), randstr(1000,1000), 2);
209 # For test coverage: Cause an IO error whilst reading the master-journal
210 # name from a journal file.
211 if {$tcl_platform(platform)=="unix"} {
212 do_ioerr_test ioerr-9 -ckrefcount true -tclprep {
214 CREATE TABLE t1(a,b,c);
215 INSERT INTO t1 VALUES(randstr(200,200), randstr(1000,1000), 2);
217 INSERT INTO t1 VALUES(randstr(200,200), randstr(1000,1000), 2);
219 copy_file test.db-journal test2.db-journal
223 copy_file test2.db-journal test.db-journal
224 set f [open test.db-journal a]
225 fconfigure $f -encoding binary
226 puts -nonewline $f "hello"
227 puts -nonewline $f "\x00\x00\x00\x05\x01\x02\x03\x04"
228 puts -nonewline $f "\xd9\xd5\x05\xf9\x20\xa1\x63\xd7"
235 # For test coverage: Cause an IO error during statement playback (i.e.
237 do_ioerr_test ioerr-10 -ckrefcount true -tclprep {
240 CREATE TABLE t1(a PRIMARY KEY, b);
242 for {set i 0} {$i < 500} {incr i} {
243 execsql {INSERT INTO t1 VALUES(:i, 'hello world');}
252 INSERT INTO t1 VALUES('abc', 123);
253 INSERT INTO t1 VALUES('def', 123);
254 INSERT INTO t1 VALUES('ghi', 123);
255 INSERT INTO t1 SELECT (a+500)%900, 'good string' FROM t1;
258 if {$msg != "column a is not unique"} {
263 # Assertion fault bug reported by alex dimitrov.
265 do_ioerr_test ioerr-11 -ckrefcount true -erc 1 -sqlprep {
266 CREATE TABLE A(Id INTEGER, Name TEXT);
267 INSERT INTO A(Id, Name) VALUES(1, 'Name');
269 UPDATE A SET Id = 2, Name = 'Name2' WHERE Id = 1;
272 # Test that an io error encountered in a sync() caused by a call to
273 # sqlite3_release_memory() is handled Ok. Only try this if
274 # memory-management is enabled.
276 ifcapable memorymanage {
277 do_ioerr_test memmanage-ioerr1 -ckrefcount true -sqlprep {
279 CREATE TABLE t1(a, b, c);
280 INSERT INTO t1 VALUES(randstr(50,50), randstr(100,100), randstr(10,10));
281 INSERT INTO t1 SELECT randstr(50,50), randstr(9,9), randstr(90,90) FROM t1;
282 INSERT INTO t1 SELECT randstr(50,50), randstr(9,9), randstr(90,90) FROM t1;
283 INSERT INTO t1 SELECT randstr(50,50), randstr(9,9), randstr(90,90) FROM t1;
284 INSERT INTO t1 SELECT randstr(50,50), randstr(9,9), randstr(90,90) FROM t1;
285 INSERT INTO t1 SELECT randstr(50,50), randstr(9,9), randstr(90,90) FROM t1;
287 sqlite3_release_memory
293 ifcapable pager_pragmas&&autovacuum {
294 do_ioerr_test ioerr-12 -ckrefcount true -erc 1 -sqlprep {
295 PRAGMA page_size = 512;
296 PRAGMA auto_vacuum = incremental;
298 INSERT INTO t1 VALUES( randomblob(1 * (512-4)) );
299 INSERT INTO t1 VALUES( randomblob(110 * (512-4)) );
300 INSERT INTO t1 VALUES( randomblob(2 * (512-4)) );
301 INSERT INTO t1 VALUES( randomblob(110 * (512-4)) );
302 INSERT INTO t1 VALUES( randomblob(3 * (512-4)) );
303 DELETE FROM t1 WHERE rowid = 3;
304 PRAGMA incremental_vacuum = 2;
305 DELETE FROM t1 WHERE rowid = 1;
307 PRAGMA incremental_vacuum = 1;
311 # Usually, after a new page is allocated from the end of the file, it does
312 # not need to be written to the journal. The exception is when the new page
313 # shares its sector with an existing page that does need to be journalled.
314 # This test case provokes this condition to test for the sake of coverage
315 # that an IO error while journalling the coresident page is handled correctly.
317 sqlite3_simulate_device -char {} -sectorsize 2048
318 do_ioerr_test ioerr-12 -ckrefcount true -erc 1 -tclprep {
320 sqlite3 db test.db -vfs devsym
322 # Create a test database. Page 2 is the root page of table t1. The only
323 # row inserted into t1 has an overflow page - page 3. Page 3 will be
324 # coresident on the 2048 byte sector with the next page to be allocated.
326 db eval { PRAGMA page_size = 1024 }
327 db eval { CREATE TABLE t1(x) }
328 db eval { INSERT INTO t1 VALUES(randomblob(1100)); }
330 db eval { INSERT INTO t1 VALUES(randomblob(2000)); }
332 sqlite3_simulate_device -char {} -sectorsize 0
335 do_ioerr_test ioerr-13 -ckrefcount true -erc 1 -sqlprep {
336 PRAGMA auto_vacuum = incremental;
339 INSERT INTO t2 VALUES(randomblob(1500));
340 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
341 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
342 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
343 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
344 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
345 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
346 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
347 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
348 INSERT INTO t1 VALUES(randomblob(20));
349 INSERT INTO t1 SELECT x FROM t1;
350 INSERT INTO t1 SELECT x FROM t1;
351 INSERT INTO t1 SELECT x FROM t1;
352 INSERT INTO t1 SELECT x FROM t1;
353 INSERT INTO t1 SELECT x FROM t1;
354 INSERT INTO t1 SELECT x FROM t1; /* 64 entries in t1 */
355 INSERT INTO t1 SELECT x FROM t1 LIMIT 14; /* 78 entries in t1 */
356 DELETE FROM t2 WHERE rowid = 3;
358 -- This statement uses the balance_quick() optimization. The new page
359 -- is appended to the database file. But the overflow page used by
360 -- the new record will be positioned near the start of the database
361 -- file, in the gap left by the "DELETE FROM t2 WHERE rowid=3" statement
364 -- The point of this is that the statement wil need to update two pointer
365 -- map pages. Which introduces another opportunity for an IO error.
367 INSERT INTO t1 VALUES(randomblob(2000));
370 do_ioerr_test ioerr-14 -ckrefcount true -erc 1 -sqlprep {
371 PRAGMA auto_vacuum = incremental;
374 INSERT INTO t2 VALUES(randomblob(1500));
375 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
376 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
377 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
378 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
379 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
380 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
381 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
382 INSERT INTO t2 SELECT randomblob(1500) FROM t2;
384 -- This statement inserts a row into t1 with an overflow page at the
385 -- end of the file. A long way from its parent (the root of t1).
386 INSERT INTO t1 VALUES(randomblob(1500));
387 DELETE FROM t2 WHERE rowid<10;
389 -- This transaction will cause the root-page of table t1 to divide
390 -- (by calling balance_deeper()). When it does, the "parent" page of the
391 -- overflow page inserted in the -sqlprep block above will change and
392 -- the corresponding pointer map page be updated. This test case attempts
393 -- to cause an IO error during the pointer map page update.
396 INSERT INTO t1 VALUES(randomblob(100));
397 INSERT INTO t1 VALUES(randomblob(100));
398 INSERT INTO t1 VALUES(randomblob(100));
399 INSERT INTO t1 VALUES(randomblob(100));
400 INSERT INTO t1 VALUES(randomblob(100));
401 INSERT INTO t1 VALUES(randomblob(100));
402 INSERT INTO t1 VALUES(randomblob(100));
403 INSERT INTO t1 VALUES(randomblob(100));
404 INSERT INTO t1 VALUES(randomblob(100));
405 INSERT INTO t1 VALUES(randomblob(100));