First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
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.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library. The focus
12 # of these tests is the journal mode pragma.
14 # $Id: jrnlmode.test,v 1.6 2008/09/26 21:08:08 drh Exp $
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
19 ifcapable {!pager_pragmas} {
24 #----------------------------------------------------------------------
25 # Test cases jrnlmode-1.X test the PRAGMA logic.
27 do_test jrnlmode-1.0 {
30 PRAGMA main.journal_mode;
31 PRAGMA temp.journal_mode;
33 } [list delete delete delete]
34 do_test jrnlmode-1.1 {
36 PRAGMA journal_mode = persist;
39 do_test jrnlmode-1.2 {
42 PRAGMA main.journal_mode;
43 PRAGMA temp.journal_mode;
45 } [list persist persist persist]
46 do_test jrnlmode-1.4 {
48 PRAGMA journal_mode = off;
51 do_test jrnlmode-1.5 {
54 PRAGMA main.journal_mode;
55 PRAGMA temp.journal_mode;
58 do_test jrnlmode-1.6 {
60 PRAGMA journal_mode = delete;
63 do_test jrnlmode-1.7 {
66 PRAGMA main.journal_mode;
67 PRAGMA temp.journal_mode;
69 } {delete delete delete}
70 do_test jrnlmode-1.7.1 {
72 PRAGMA journal_mode = truncate;
75 do_test jrnlmode-1.7.2 {
78 PRAGMA main.journal_mode;
79 PRAGMA temp.journal_mode;
81 } {truncate truncate truncate}
82 do_test jrnlmode-1.8 {
84 PRAGMA journal_mode = off;
85 PRAGMA journal_mode = invalid;
89 do_test jrnlmode-1.9 {
91 PRAGMA journal_mode = PERSIST;
92 ATTACH ':memory:' as aux1;
95 PRAGMA main.journal_mode;
96 PRAGMA aux1.journal_mode;
99 do_test jrnlmode-1.10 {
101 PRAGMA main.journal_mode = OFF;
104 PRAGMA main.journal_mode;
105 PRAGMA temp.journal_mode;
106 PRAGMA aux1.journal_mode;
108 } {off persist persist}
109 do_test jrnlmode-1.11 {
114 do_test jrnlmode-1.12 {
116 ATTACH ':memory:' as aux2;
119 PRAGMA main.journal_mode;
120 PRAGMA aux1.journal_mode;
121 PRAGMA aux2.journal_mode;
123 } {off persist persist}
124 do_test jrnlmode-1.11 {
126 PRAGMA aux1.journal_mode = DELETE;
129 PRAGMA main.journal_mode;
130 PRAGMA aux1.journal_mode;
131 PRAGMA aux2.journal_mode;
133 } {off delete persist}
134 do_test jrnlmode-1.12 {
136 PRAGMA journal_mode = delete;
139 PRAGMA main.journal_mode;
140 PRAGMA temp.journal_mode;
141 PRAGMA aux1.journal_mode;
142 PRAGMA aux2.journal_mode;
144 } {delete delete delete delete}
145 do_test jrnlmode-1.13 {
147 ATTACH ':memory:' as aux3;
150 PRAGMA main.journal_mode;
151 PRAGMA temp.journal_mode;
152 PRAGMA aux1.journal_mode;
153 PRAGMA aux2.journal_mode;
154 PRAGMA aux3.journal_mode;
156 } {delete delete delete delete delete}
157 do_test jrnlmode-1.14 {
159 PRAGMA journal_mode = TRUNCATE;
162 PRAGMA main.journal_mode;
163 PRAGMA temp.journal_mode;
164 PRAGMA aux1.journal_mode;
165 PRAGMA aux2.journal_mode;
166 PRAGMA aux3.journal_mode;
168 } {truncate truncate truncate truncate truncate}
170 do_test jrnlmode-1.99 {
180 file delete -force test2.db
181 do_test jrnlmode-2.1 {
183 ATTACH 'test2.db' AS aux;
184 PRAGMA main.journal_mode = persist;
185 PRAGMA aux.journal_mode = persist;
186 CREATE TABLE abc(a, b, c);
187 CREATE TABLE aux.def(d, e, f);
191 INSERT INTO abc VALUES(1, 2, 3);
192 INSERT INTO def VALUES(4, 5, 6);
195 list [file exists test.db-journal] [file exists test2.db-journal]
198 do_test jrnlmode-2.2 {
199 file size test.db-journal
202 do_test jrnlmode-2.3 {
208 do_test jrnlmode-2.4 {
209 file size test.db-journal
212 do_test jrnlmode-2.5 {
218 #----------------------------------------------------------------------
219 # Test caes jrnlmode-3.X verify that ticket #3127 has been fixed.
222 file delete -force test2.db
223 file delete -force test.db
226 do_test jrnlmode-3.1 {
228 CREATE TABLE x(n INTEGER);
229 ATTACH 'test2.db' AS a;
230 create table a.x ( n integer );
231 insert into a.x values(1);
232 insert into a.x values (2);
233 insert into a.x values (3);
234 insert into a.x values (4);
238 do_test jrnlmode-3.2 {
239 execsql { PRAGMA journal_mode=off; }
242 INSERT OR IGNORE INTO main.x SELECT * FROM a.x;
248 ifcapable autovacuum&&pragma {
250 file delete -force test.db
252 do_test jrnlmode-4.1 {
254 PRAGMA cache_size = 1;
255 PRAGMA auto_vacuum = 1;
256 CREATE TABLE abc(a, b, c);
258 execsql { PRAGMA page_count }
261 do_test jrnlmode-4.2 {
262 execsql { PRAGMA journal_mode = off }
265 do_test jrnlmode-4.3 {
266 execsql { INSERT INTO abc VALUES(1, 2, randomblob(2000)) }
269 # This will attempt to truncate the database file. Check that this
270 # is not a problem when journal_mode=off.
271 do_test jrnlmode-4.4 {
272 execsql { DELETE FROM abc }
275 integrity_check jrnlmode-4.5
278 #------------------------------------------------------------------------
279 # The following test caes, jrnlmode-5.*, test the journal_size_limit
283 file delete -force test.db test2.db test3.db
286 do_test jrnlmode-5.1 {
287 execsql {pragma page_size=1024}
288 execsql {pragma journal_mode=persist}
291 do_test jrnlmode-5.2 {
292 execsql { PRAGMA journal_size_limit }
294 do_test jrnlmode-5.3 {
296 ATTACH 'test2.db' AS aux;
297 PRAGMA aux.journal_size_limit;
300 do_test jrnlmode-5.4 {
301 execsql { PRAGMA aux.journal_size_limit = 10240 }
303 do_test jrnlmode-5.5 {
304 execsql { PRAGMA main.journal_size_limit = 20480 }
306 do_test jrnlmode-5.6 {
307 execsql { PRAGMA journal_size_limit }
309 do_test jrnlmode-5.7 {
310 execsql { PRAGMA aux.journal_size_limit }
313 do_test jrnlmode-5.8 {
314 execsql { ATTACH 'test3.db' AS aux2 }
317 do_test jrnlmode-5.9 {
319 CREATE TABLE main.t1(a, b, c);
320 CREATE TABLE aux.t2(a, b, c);
321 CREATE TABLE aux2.t3(a, b, c);
324 do_test jrnlmode-5.10 {
326 [file exists test.db-journal] \
327 [file exists test2.db-journal] \
328 [file exists test3.db-journal]
330 do_test jrnlmode-5.11 {
333 INSERT INTO t3 VALUES(randomblob(1000),randomblob(1000),randomblob(1000));
335 SELECT randomblob(1000),randomblob(1000),randomblob(1000) FROM t3;
337 SELECT randomblob(1000),randomblob(1000),randomblob(1000) FROM t3;
339 SELECT randomblob(1000),randomblob(1000),randomblob(1000) FROM t3;
341 SELECT randomblob(1000),randomblob(1000),randomblob(1000) FROM t3;
343 SELECT randomblob(1000),randomblob(1000),randomblob(1000) FROM t3;
344 INSERT INTO t2 SELECT * FROM t3;
345 INSERT INTO t1 SELECT * FROM t2;
349 [file exists test.db-journal] \
350 [file exists test2.db-journal] \
351 [file exists test3.db-journal] \
352 [file size test.db-journal] \
353 [file size test2.db-journal] \
354 [file size test3.db-journal]
357 do_test jrnlmode-5.12 {
360 UPDATE t1 SET a = randomblob(1000);
362 expr {[file size test.db-journal]>30000}
364 do_test jrnlmode-5.13 {
366 file size test.db-journal
369 do_test jrnlmode-5.14 {
372 UPDATE t2 SET a = randomblob(1000);
374 expr {[file size test2.db-journal]>30000}
376 do_test jrnlmode-5.15 {
378 file size test2.db-journal
381 do_test jrnlmode-5.16 {
384 UPDATE t3 SET a = randomblob(1000);
386 set journalsize [file size test3.db-journal]
387 expr {$journalsize>30000}
389 do_test jrnlmode-5.17 {
391 set sz [file size test3.db-journal]
392 expr {$sz>=$journalsize}
395 do_test jrnlmode-5.18 {
397 PRAGMA journal_size_limit = -4;
399 UPDATE t1 SET a = randomblob(1000);
401 set journalsize [file size test.db-journal]
402 expr {$journalsize>30000}
404 do_test jrnlmode-5.19 {
406 set sz [file size test.db-journal]
407 expr {$sz>=$journalsize}