sl@0
|
1 |
# 2001 October 12
|
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: autovacuum_ioerr2.test,v 1.7 2008/07/12 14:52:20 drh 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 |
# If this build of the library does not support auto-vacuum, omit this
|
sl@0
|
24 |
# whole file.
|
sl@0
|
25 |
ifcapable {!autovacuum} {
|
sl@0
|
26 |
finish_test
|
sl@0
|
27 |
return
|
sl@0
|
28 |
}
|
sl@0
|
29 |
|
sl@0
|
30 |
do_ioerr_test autovacuum-ioerr2-1 -sqlprep {
|
sl@0
|
31 |
PRAGMA auto_vacuum = 1;
|
sl@0
|
32 |
CREATE TABLE abc(a);
|
sl@0
|
33 |
INSERT INTO abc VALUES(randstr(1500,1500));
|
sl@0
|
34 |
} -sqlbody {
|
sl@0
|
35 |
CREATE TABLE abc2(a);
|
sl@0
|
36 |
BEGIN;
|
sl@0
|
37 |
DELETE FROM abc;
|
sl@0
|
38 |
INSERT INTO abc VALUES(randstr(1500,1500));
|
sl@0
|
39 |
CREATE TABLE abc3(a);
|
sl@0
|
40 |
COMMIT;
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
do_ioerr_test autovacuum-ioerr2-2 -tclprep {
|
sl@0
|
44 |
execsql {
|
sl@0
|
45 |
PRAGMA auto_vacuum = 1;
|
sl@0
|
46 |
PRAGMA cache_size = 10;
|
sl@0
|
47 |
BEGIN;
|
sl@0
|
48 |
CREATE TABLE abc(a);
|
sl@0
|
49 |
INSERT INTO abc VALUES(randstr(1100,1100)); -- Page 4 is overflow
|
sl@0
|
50 |
INSERT INTO abc VALUES(randstr(1100,1100)); -- Page 5 is overflow
|
sl@0
|
51 |
}
|
sl@0
|
52 |
for {set i 0} {$i<150} {incr i} {
|
sl@0
|
53 |
execsql {
|
sl@0
|
54 |
INSERT INTO abc VALUES(randstr(100,100));
|
sl@0
|
55 |
}
|
sl@0
|
56 |
}
|
sl@0
|
57 |
execsql COMMIT
|
sl@0
|
58 |
} -sqlbody {
|
sl@0
|
59 |
BEGIN;
|
sl@0
|
60 |
DELETE FROM abc WHERE length(a)>100;
|
sl@0
|
61 |
UPDATE abc SET a = randstr(90,90);
|
sl@0
|
62 |
CREATE TABLE abc3(a);
|
sl@0
|
63 |
COMMIT;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
do_ioerr_test autovacuum-ioerr2-3 -sqlprep {
|
sl@0
|
67 |
PRAGMA auto_vacuum = 1;
|
sl@0
|
68 |
CREATE TABLE abc(a);
|
sl@0
|
69 |
CREATE TABLE abc2(b);
|
sl@0
|
70 |
} -sqlbody {
|
sl@0
|
71 |
BEGIN;
|
sl@0
|
72 |
INSERT INTO abc2 VALUES(10);
|
sl@0
|
73 |
DROP TABLE abc;
|
sl@0
|
74 |
COMMIT;
|
sl@0
|
75 |
DROP TABLE abc2;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
file delete -force backup.db
|
sl@0
|
79 |
ifcapable subquery {
|
sl@0
|
80 |
do_ioerr_test autovacuum-ioerr2-4 -tclprep {
|
sl@0
|
81 |
if {![file exists backup.db]} {
|
sl@0
|
82 |
sqlite3 dbb backup.db
|
sl@0
|
83 |
execsql {
|
sl@0
|
84 |
PRAGMA auto_vacuum = 1;
|
sl@0
|
85 |
BEGIN;
|
sl@0
|
86 |
CREATE TABLE abc(a);
|
sl@0
|
87 |
INSERT INTO abc VALUES(randstr(1100,1100)); -- Page 4 is overflow
|
sl@0
|
88 |
INSERT INTO abc VALUES(randstr(1100,1100)); -- Page 5 is overflow
|
sl@0
|
89 |
} dbb
|
sl@0
|
90 |
for {set i 0} {$i<2500} {incr i} {
|
sl@0
|
91 |
execsql {
|
sl@0
|
92 |
INSERT INTO abc VALUES(randstr(100,100));
|
sl@0
|
93 |
} dbb
|
sl@0
|
94 |
}
|
sl@0
|
95 |
execsql {
|
sl@0
|
96 |
COMMIT;
|
sl@0
|
97 |
PRAGMA cache_size = 10;
|
sl@0
|
98 |
} dbb
|
sl@0
|
99 |
dbb close
|
sl@0
|
100 |
}
|
sl@0
|
101 |
db close
|
sl@0
|
102 |
file delete -force test.db
|
sl@0
|
103 |
file delete -force test.db-journal
|
sl@0
|
104 |
copy_file backup.db test.db
|
sl@0
|
105 |
set ::DB [sqlite3 db test.db]
|
sl@0
|
106 |
execsql {
|
sl@0
|
107 |
PRAGMA cache_size = 10;
|
sl@0
|
108 |
}
|
sl@0
|
109 |
} -sqlbody {
|
sl@0
|
110 |
BEGIN;
|
sl@0
|
111 |
DELETE FROM abc WHERE oid < 3;
|
sl@0
|
112 |
UPDATE abc SET a = randstr(100,100) WHERE oid > 2300;
|
sl@0
|
113 |
UPDATE abc SET a = randstr(1100,1100) WHERE oid =
|
sl@0
|
114 |
(select max(oid) from abc);
|
sl@0
|
115 |
COMMIT;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
do_ioerr_test autovacuum-ioerr2-1 -sqlprep {
|
sl@0
|
120 |
PRAGMA auto_vacuum = 1;
|
sl@0
|
121 |
CREATE TABLE abc(a);
|
sl@0
|
122 |
INSERT INTO abc VALUES(randstr(1500,1500));
|
sl@0
|
123 |
} -sqlbody {
|
sl@0
|
124 |
CREATE TABLE abc2(a);
|
sl@0
|
125 |
BEGIN;
|
sl@0
|
126 |
DELETE FROM abc;
|
sl@0
|
127 |
INSERT INTO abc VALUES(randstr(1500,1500));
|
sl@0
|
128 |
CREATE TABLE abc3(a);
|
sl@0
|
129 |
COMMIT;
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
finish_test
|