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 #***********************************************************************
12 # This file contains tests for the RBU module. More specifically, it
13 # contains tests to ensure that the sqlite3rbu_vacuum() API works as
17 source [file join [file dirname [info script]] rbu_common.tcl]
18 if_no_rbu_support { finish_test ; return }
20 foreach {step} {0 1} {
22 s state.db t test.db-vacuum n {}
24 set ::testprefix rbuvacuum2-$step$ttt
26 #-------------------------------------------------------------------------
27 # Test that a database that contains fts3 tables can be vacuumed.
32 CREATE VIRTUAL TABLE t1 USING fts3(z, y);
33 INSERT INTO t1 VALUES('fix this issue', 'at some point');
36 do_rbu_vacuum_test 1.2 $step $state
40 } {{fix this issue} {at some point}}
43 SELECT rowid FROM t1 WHERE t1 MATCH 'fix';
47 INSERT INTO t1 VALUES('a b c', 'd e f');
48 INSERT INTO t1 VALUES('l h i', 'd e f');
49 DELETE FROM t1 WHERE docid = 2;
50 INSERT INTO t1 VALUES('a b c', 'x y z');
53 do_rbu_vacuum_test 1.6 $step $state
55 INSERT INTO t1(t1) VALUES('integrity-check');
58 {fix this issue} {at some point}
64 #-------------------------------------------------------------------------
65 # Test that a database that contains fts5 tables can be vacuumed.
70 CREATE VIRTUAL TABLE t1 USING fts5(z, y);
71 INSERT INTO t1 VALUES('fix this issue', 'at some point');
74 do_rbu_vacuum_test 2.2 $step $state
78 } {{fix this issue} {at some point}}
81 SELECT rowid FROM t1 ('fix');
85 INSERT INTO t1 VALUES('a b c', 'd e f');
86 INSERT INTO t1 VALUES('l h i', 'd e f');
87 DELETE FROM t1 WHERE rowid = 2;
88 INSERT INTO t1 VALUES('a b c', 'x y z');
91 do_rbu_vacuum_test 2.6 $step $state
93 INSERT INTO t1(t1) VALUES('integrity-check');
96 {fix this issue} {at some point}
102 #-------------------------------------------------------------------------
103 # Test that a database that contains an rtree table can be vacuumed.
107 do_execsql_test 3.1 {
108 CREATE VIRTUAL TABLE rt USING rtree(id, x1, x2);
109 INSERT INTO rt VALUES(1, 45, 55);
110 INSERT INTO rt VALUES(2, 50, 60);
111 INSERT INTO rt VALUES(3, 55, 65);
114 do_rbu_vacuum_test 3.2 $step $state
116 do_execsql_test 3.3 {
118 } {1 45.0 55.0 2 50.0 60.0 3 55.0 65.0}
120 do_execsql_test 3.4.1 {
121 SELECT rowid FROM rt WHERE x2>51 AND x1 < 51
123 do_execsql_test 3.4.2 {
124 SELECT rowid FROM rt WHERE x2>59 AND x1 < 59
127 do_rbu_vacuum_test 3.5 $step $state
129 do_execsql_test 3.6.1 {
130 SELECT rowid FROM rt WHERE x2>51 AND x1 < 51
132 do_execsql_test 3.6.2 {
133 SELECT rowid FROM rt WHERE x2>59 AND x1 < 59
139 do_execsql_test 4.1 {
140 CREATE TABLE t1(a, b, c);
141 INSERT INTO t1 VALUES(1, 2, 3);
142 CREATE VIEW v1 AS SELECT * FROM t1;
143 CREATE TRIGGER tr1 AFTER INSERT ON t1 BEGIN SELECT 1; END;
146 do_execsql_test 4.2 {
147 SELECT * FROM sqlite_master;
149 table t1 t1 2 {CREATE TABLE t1(a, b, c)}
150 view v1 v1 0 {CREATE VIEW v1 AS SELECT * FROM t1}
151 trigger tr1 t1 0 {CREATE TRIGGER tr1 AFTER INSERT ON t1 BEGIN SELECT 1; END}
154 do_rbu_vacuum_test 4.3 $step $state
155 do_execsql_test 4.4 {
156 SELECT * FROM sqlite_master;
158 table t1 t1 2 {CREATE TABLE t1(a, b, c)}
159 view v1 v1 0 {CREATE VIEW v1 AS SELECT * FROM t1}
160 trigger tr1 t1 0 {CREATE TRIGGER tr1 AFTER INSERT ON t1 BEGIN SELECT 1; END}
166 #-------------------------------------------------------------------------
167 # Test that passing a NULL value as the second argument to
168 # sqlite3rbu_vacuum() causes it to:
170 # * Use <database>-vacuum as the state db, and
171 # * Set the state db permissions to the same as those on the db file.
174 if {$::tcl_platform(platform)=="unix"} {
178 do_execsql_test 5.0 {
179 CREATE TABLE t1(a, b);
180 INSERT INTO t1 VALUES(1, 2);
181 INSERT INTO t1 VALUES(3, 4);
182 INSERT INTO t1 VALUES(5, 6);
183 INSERT INTO t1 VALUES(7, 8);
193 forcedelete test.db-vacuum
196 file attributes test.db -permissions $perm
197 sqlite3rbu_vacuum rbu test.db
201 do_test 5.$tn.2 { file exists test.db-vacuum } 1
202 # The result pattern might be 00xxx or 0oxxx depending on which
203 # version of TCL is being used. So make perm2 into a regexp that
205 regsub {^00} $perm {0.} perm2
206 do_test 5.$tn.3 { file attributes test.db-vacuum -permissions} /$perm2/
211 #-------------------------------------------------------------------------
212 # Test the outcome of some other connection running a checkpoint while
213 # the incremental checkpoint is suspended.
216 do_execsql_test 6.0 {
217 CREATE TABLE t1(a INTEGER PRIMARY KEY, b, c);
218 CREATE INDEX i1b ON t1(b);
219 CREATE INDEX i1c ON t1(c);
220 INSERT INTO t1 VALUES(1, 2, 3);
221 INSERT INTO t1 VALUES(4, 5, 6);
226 sqlite3rbu_vacuum rbu test.db test.db2
227 while {[rbu state]!="checkpoint"} { rbu step }
232 execsql { SELECT 1 FROM sqlite_master LIMIT 1 }
233 execsql { PRAGMA wal_checkpoint }
234 execsql { SELECT 1 FROM sqlite_master LIMIT 1 }
238 sqlite3rbu_vacuum rbu test.db test.db2
239 while {[rbu step]!="SQLITE_DONE"} { rbu step }
241 execsql { PRAGMA integrity_check }
245 sqlite3rbu_vacuum rbu test.db test.db-vactmp
246 list [catch { rbu close } msg] $msg