sl@0
|
1 |
# 2007 April 2
|
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 for correct handling of I/O errors
|
sl@0
|
13 |
# such as writes failing because the disk is full.
|
sl@0
|
14 |
#
|
sl@0
|
15 |
# The tests in this file use special facilities that are only
|
sl@0
|
16 |
# available in the SQLite test fixture.
|
sl@0
|
17 |
#
|
sl@0
|
18 |
# $Id: ioerr2.test,v 1.9 2008/08/20 14:49:25 danielk1977 Exp $
|
sl@0
|
19 |
|
sl@0
|
20 |
set testdir [file dirname $argv0]
|
sl@0
|
21 |
source $testdir/tester.tcl
|
sl@0
|
22 |
|
sl@0
|
23 |
ifcapable !integrityck {
|
sl@0
|
24 |
finish_test
|
sl@0
|
25 |
return
|
sl@0
|
26 |
}
|
sl@0
|
27 |
|
sl@0
|
28 |
do_test ioerr2-1.1 {
|
sl@0
|
29 |
execsql {
|
sl@0
|
30 |
PRAGMA cache_size = 10;
|
sl@0
|
31 |
PRAGMA default_cache_size = 10;
|
sl@0
|
32 |
CREATE TABLE t1(a, b, PRIMARY KEY(a, b));
|
sl@0
|
33 |
INSERT INTO t1 VALUES(randstr(400,400),randstr(400,400));
|
sl@0
|
34 |
INSERT INTO t1 SELECT randstr(400,400), randstr(400,400) FROM t1; -- 2
|
sl@0
|
35 |
INSERT INTO t1 SELECT randstr(400,400), randstr(400,400) FROM t1; -- 4
|
sl@0
|
36 |
INSERT INTO t1 SELECT randstr(400,400), randstr(400,400) FROM t1; -- 8
|
sl@0
|
37 |
INSERT INTO t1 SELECT randstr(400,400), randstr(400,400) FROM t1; -- 16
|
sl@0
|
38 |
INSERT INTO t1 SELECT randstr(400,400), randstr(400,400) FROM t1; -- 32
|
sl@0
|
39 |
}
|
sl@0
|
40 |
} {}
|
sl@0
|
41 |
|
sl@0
|
42 |
set ::cksum [execsql {SELECT md5sum(a, b) FROM t1}]
|
sl@0
|
43 |
proc check_db {testname} {
|
sl@0
|
44 |
|
sl@0
|
45 |
# Make sure no I/O errors are simulated in this proc.
|
sl@0
|
46 |
set ::sqlite_io_error_hit 0
|
sl@0
|
47 |
set ::sqlite_io_error_persist 0
|
sl@0
|
48 |
set ::sqlite_io_error_pending 0
|
sl@0
|
49 |
|
sl@0
|
50 |
# Run an integrity-check. If "disk I/O error" is returned, the
|
sl@0
|
51 |
# pager must be in error state. In this case open a new database
|
sl@0
|
52 |
# connection. Otherwise, try a ROLLBACK, in case a transaction
|
sl@0
|
53 |
# is still active.
|
sl@0
|
54 |
set rc [catch {execsql {PRAGMA integrity_check}} msg]
|
sl@0
|
55 |
if {$rc && ($msg eq "disk I/O error" || $msg eq "database is locked")} {
|
sl@0
|
56 |
db close
|
sl@0
|
57 |
sqlite3 db test.db
|
sl@0
|
58 |
set refcnt 0
|
sl@0
|
59 |
} else {
|
sl@0
|
60 |
if {$rc || $msg ne "ok"} {
|
sl@0
|
61 |
error $msg
|
sl@0
|
62 |
}
|
sl@0
|
63 |
catch {execsql ROLLBACK}
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
# Check that the database checksum is still $::cksum, and that
|
sl@0
|
67 |
# the integrity-check passes.
|
sl@0
|
68 |
set ck [execsql {SELECT md5sum(a, b) FROM t1}]
|
sl@0
|
69 |
do_test ${testname}.cksum [list set ck $ck] $::cksum
|
sl@0
|
70 |
integrity_check ${testname}.integrity
|
sl@0
|
71 |
do_test ${testname}.refcnt {
|
sl@0
|
72 |
lindex [sqlite3_pager_refcounts db] 0
|
sl@0
|
73 |
} 0
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
check_db ioerr2-2
|
sl@0
|
77 |
|
sl@0
|
78 |
set sql {
|
sl@0
|
79 |
PRAGMA cache_size = 10;
|
sl@0
|
80 |
PRAGMA default_cache_size = 10;
|
sl@0
|
81 |
BEGIN;
|
sl@0
|
82 |
DELETE FROM t1 WHERE (oid%7)==0;
|
sl@0
|
83 |
INSERT INTO t1 SELECT randstr(400,400), randstr(400,400)
|
sl@0
|
84 |
WHERE (random()%7)==0;
|
sl@0
|
85 |
UPDATE t1 SET a = randstr(400,400), b = randstr(400,400)
|
sl@0
|
86 |
WHERE (random()%7)==0;
|
sl@0
|
87 |
ROLLBACK;
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
foreach bPersist [list 0 1] {
|
sl@0
|
91 |
set ::go 1
|
sl@0
|
92 |
for {set ::N 1} {$::go} {incr ::N} {
|
sl@0
|
93 |
db close
|
sl@0
|
94 |
sqlite3 db test.db
|
sl@0
|
95 |
set ::sqlite_io_error_hit 0
|
sl@0
|
96 |
set ::sqlite_io_error_persist $bPersist
|
sl@0
|
97 |
set ::sqlite_io_error_pending $::N
|
sl@0
|
98 |
|
sl@0
|
99 |
foreach {::go res} [catchsql $sql] {}
|
sl@0
|
100 |
check_db ioerr2-3.$bPersist.$::N
|
sl@0
|
101 |
}
|
sl@0
|
102 |
}
|
sl@0
|
103 |
foreach bPersist [list 0 1] {
|
sl@0
|
104 |
set ::go 1
|
sl@0
|
105 |
for {set ::N 1} {$::go} {incr ::N} {
|
sl@0
|
106 |
set ::sqlite_io_error_hit 0
|
sl@0
|
107 |
set ::sqlite_io_error_persist $bPersist
|
sl@0
|
108 |
set ::sqlite_io_error_pending $::N
|
sl@0
|
109 |
|
sl@0
|
110 |
foreach {::go res} [catchsql $sql] {}
|
sl@0
|
111 |
check_db ioerr2-4.[expr {$bPersist+2}].$::N
|
sl@0
|
112 |
}
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
do_test ioerr2-5 {
|
sl@0
|
116 |
execsql {
|
sl@0
|
117 |
CREATE TABLE t2 AS SELECT * FROM t1;
|
sl@0
|
118 |
PRAGMA temp_store = memory;
|
sl@0
|
119 |
}
|
sl@0
|
120 |
set ::sqlite_io_error_persist 0
|
sl@0
|
121 |
set ::go 1
|
sl@0
|
122 |
set rc [catch {
|
sl@0
|
123 |
for {set ::N 2} {$::N<200} {incr ::N} {
|
sl@0
|
124 |
db eval {SELECT * FROM t1 WHERE rowid IN (1, 5, 10, 15, 20)} {
|
sl@0
|
125 |
set ::sqlite_io_error_hit 0
|
sl@0
|
126 |
set ::sqlite_io_error_pending $::N
|
sl@0
|
127 |
set sql {UPDATE t2 SET b = randstr(400,400)}
|
sl@0
|
128 |
foreach {::go res} [catchsql $sql] {}
|
sl@0
|
129 |
}
|
sl@0
|
130 |
}
|
sl@0
|
131 |
} msg]
|
sl@0
|
132 |
list $rc $msg
|
sl@0
|
133 |
} {1 {callback requested query abort}}
|
sl@0
|
134 |
|
sl@0
|
135 |
finish_test
|