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
12 # focus of this script is testing the ATTACH and DETACH commands
13 # and related functionality.
15 # $Id: attach2.test,v 1.38 2007/12/13 21:54:11 drh Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
28 # Databases test.db and test2.db contain identical schemas. Make
29 # sure we can attach test2.db from test.db.
34 CREATE INDEX x1 ON t1(a);
37 forcedelete test2.db-journal
41 CREATE INDEX x1 ON t1(a);
44 ATTACH 'test2.db' AS t2;
52 foreach {idx name file} [execsql {PRAGMA database_list} $db] {
53 lappend list $idx $name
59 # lock test2.db then try to attach it. This is no longer an error because
60 # db2 just RESERVES the database. It does not obtain a write-lock until
63 db2 eval {UPDATE t1 SET a = 0 WHERE 0}
65 ATTACH 'test2.db' AS t2;
68 ifcapable schema_pragmas {
70 # make sure test2.db did get attached.
73 } ;# ifcapable schema_pragmas
77 # Make sure we can read test2.db from db
79 SELECT name FROM t2.sqlite_master;
83 # lock test2.db and try to read from it. This should still work because
84 # the lock is only a RESERVED lock which does not prevent reading.
87 db2 eval {UPDATE t1 SET a = 0 WHERE 0}
89 SELECT name FROM t2.sqlite_master;
93 # but we can still read from test1.db even though test2.db is locked.
95 SELECT name FROM main.sqlite_master;
99 # start a transaction on test.db even though test2.db is locked.
102 INSERT INTO t1 VALUES(8,9);
105 do_test attach2-2.9 {
110 do_test attach2-2.10 {
111 # now try to write to test2.db. the write should fail
113 INSERT INTO t2.t1 VALUES(1,2);
115 } {1 {database is locked}}
116 do_test attach2-2.11 {
117 # when the write failed in the previous test, the transaction should
120 # Update for version 3: A transaction is no longer rolled back if a
121 # database is found to be busy.
128 do_test attach2-2.12 {
132 } {1 {cannot commit - no transaction is active}}
134 # Ticket #574: Make sure it works using the non-callback API
136 do_test attach2-3.1 {
137 set DB [sqlite3_connection_pointer db]
138 set rc [catch {sqlite3_prepare $DB "ATTACH 'test2.db' AS t2" -1 TAIL} VM]
139 if {$rc} {lappend rc $VM}
144 do_test attach2-3.2 {
145 set rc [catch {sqlite3_prepare $DB "DETACH t2" -1 TAIL} VM]
146 if {$rc} {lappend rc $VM}
153 for {set i 2} {$i<=15} {incr i} {
157 # A procedure to verify the status of locks on a database.
159 proc lock_status {testnum db expected_result} {
160 # If the database was compiled with OMIT_TEMPDB set, then
161 # the lock_status list will not contain an entry for the temp
162 # db. But the test code doesn't know this, so its easiest
163 # to filter it out of the $expected_result list here.
165 set expected_result [concat \
166 [lrange $expected_result 0 1] \
167 [lrange $expected_result 4 end] \
170 do_test attach2-$testnum [subst {
171 $db cache flush ;# The lock_status pragma should not be cached
172 execsql {PRAGMA lock_status} $db
175 set sqlite_os_trace 0
177 # Tests attach2-4.* test that read-locks work correctly with attached
179 do_test attach2-4.1 {
182 execsql {ATTACH 'test2.db' as file2}
183 execsql {ATTACH 'test2.db' as file2} db2
186 lock_status 4.1.1 db {main unlocked temp closed file2 unlocked}
187 lock_status 4.1.2 db2 {main unlocked temp closed file2 unlocked}
189 do_test attach2-4.2 {
190 # Handle 'db' read-locks test.db
192 execsql {SELECT * FROM t1}
198 lock_status 4.2.1 db {main shared temp closed file2 unlocked}
199 lock_status 4.2.2 db2 {main unlocked temp closed file2 unlocked}
201 do_test attach2-4.3 {
202 # The read lock held by db does not prevent db2 from reading test.db
203 execsql {SELECT * FROM t1} db2
206 lock_status 4.3.1 db {main shared temp closed file2 unlocked}
207 lock_status 4.3.2 db2 {main unlocked temp closed file2 unlocked}
209 do_test attach2-4.4 {
210 # db is holding a read lock on test.db, so we should not be able
211 # to commit a write to test.db from db2
213 INSERT INTO t1 VALUES(1, 2)
215 } {1 {database is locked}}
217 lock_status 4.4.1 db {main shared temp closed file2 unlocked}
218 lock_status 4.4.2 db2 {main unlocked temp closed file2 unlocked}
220 # We have to make sure that the cache_size and the soft_heap_limit
221 # are large enough to hold the entire change in memory. If either
222 # is set too small, then changes will spill to the database, forcing
223 # a reserved lock to promote to exclusive. That will mess up our
226 set soft_limit [sqlite3_soft_heap_limit 0]
229 do_test attach2-4.5 {
230 # Handle 'db2' reserves file2.
232 execsql {INSERT INTO file2.t1 VALUES(1, 2)} db2
235 # db2 - reserved(file2)
238 lock_status 4.5.1 db {main shared temp closed file2 unlocked}
239 lock_status 4.5.2 db2 {main unlocked temp closed file2 reserved}
241 do_test attach2-4.6.1 {
242 # Reads are allowed against a reserved database.
244 SELECT * FROM file2.t1;
247 # db - shared(main), shared(file2)
248 # db2 - reserved(file2)
251 lock_status 4.6.1.1 db {main shared temp closed file2 shared}
252 lock_status 4.6.1.2 db2 {main unlocked temp closed file2 reserved}
254 do_test attach2-4.6.2 {
255 # Writes against a reserved database are not allowed.
257 UPDATE file2.t1 SET a=0;
259 } {1 {database is locked}}
261 lock_status 4.6.2.1 db {main shared temp closed file2 shared}
262 lock_status 4.6.2.2 db2 {main unlocked temp closed file2 reserved}
264 do_test attach2-4.7 {
265 # Ensure handle 'db' retains the lock on the main file after
266 # failing to obtain a write-lock on file2.
268 INSERT INTO t1 VALUES(1, 2)
272 lock_status 4.7.1 db {main shared temp closed file2 shared}
273 lock_status 4.7.2 db2 {main reserved temp closed file2 reserved}
275 do_test attach2-4.8 {
276 # We should still be able to read test.db from db2
277 execsql {SELECT * FROM t1} db2
280 lock_status 4.8.1 db {main shared temp closed file2 shared}
281 lock_status 4.8.2 db2 {main reserved temp closed file2 reserved}
283 do_test attach2-4.9 {
284 # Try to upgrade the handle 'db' lock.
286 INSERT INTO t1 VALUES(1, 2)
288 } {1 {database is locked}}
290 lock_status 4.9.1 db {main shared temp closed file2 shared}
291 lock_status 4.9.2 db2 {main reserved temp closed file2 reserved}
293 do_test attach2-4.10 {
294 # We cannot commit db2 while db is holding a read-lock
295 catchsql {COMMIT} db2
296 } {1 {database is locked}}
298 lock_status 4.10.1 db {main shared temp closed file2 shared}
299 lock_status 4.10.2 db2 {main pending temp closed file2 reserved}
301 set sqlite_os_trace 0
302 do_test attach2-4.11 {
303 # db is able to commit.
307 lock_status 4.11.1 db {main unlocked temp closed file2 unlocked}
308 lock_status 4.11.2 db2 {main pending temp closed file2 reserved}
310 do_test attach2-4.12 {
311 # Now we can commit db2
312 catchsql {COMMIT} db2
315 lock_status 4.12.1 db {main unlocked temp closed file2 unlocked}
316 lock_status 4.12.2 db2 {main unlocked temp closed file2 unlocked}
318 do_test attach2-4.13 {
319 execsql {SELECT * FROM file2.t1}
321 do_test attach2-4.14 {
322 execsql {INSERT INTO t1 VALUES(1, 2)}
324 do_test attach2-4.15 {
325 execsql {SELECT * FROM t1} db2
331 sqlite3_soft_heap_limit $soft_limit
333 # These tests - attach2-5.* - check that the master journal file is deleted
334 # correctly when a multi-file transaction is committed or rolled back.
336 # Update: It's not actually created if a rollback occurs, so that test
337 # doesn't really prove too much.
338 foreach f [glob test.db*] {forcedelete $f}
339 do_test attach2-5.1 {
342 ATTACH 'test.db2' AS aux;
345 do_test attach2-5.2 {
348 CREATE TABLE tbl(a, b, c);
349 CREATE TABLE aux.tbl(a, b, c);
353 do_test attach2-5.3 {
354 lsort [glob test.db*]
356 do_test attach2-5.4 {
364 do_test attach2-5.5 {
365 lsort [glob test.db*]
368 # Check that a database cannot be ATTACHed or DETACHed during a transaction.
369 do_test attach2-6.1 {
374 do_test attach2-6.2 {
376 ATTACH 'test3.db' as aux2;
381 # As of version 3.21.0: it is ok to DETACH from within a transaction
383 do_test attach2-6.3 {