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
12 # focus of this script is testing the ATTACH and DETACH commands
13 # and related functionality.
15 # $Id: attach.test,v 1.49 2008/07/12 14:52:20 drh Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
26 for {set i 2} {$i<=15} {incr i} {
27 file delete -force test$i.db
28 file delete -force test$i.db-journal
34 INSERT INTO t1 VALUES(1,2);
35 INSERT INTO t1 VALUES(3,4);
43 INSERT INTO t2 VALUES(1,'x');
44 INSERT INTO t2 VALUES(2,'y');
50 ATTACH DATABASE 'test2.db' AS two;
69 } {1 {no such table: t2}}
74 } {1 {no such table: two.t2}}
77 ATTACH DATABASE 'test3.db' AS three;
82 SELECT * FROM three.sqlite_master;
87 DETACH DATABASE [three];
92 ATTACH 'test.db' AS db2;
93 ATTACH 'test.db' AS db3;
94 ATTACH 'test.db' AS db4;
95 ATTACH 'test.db' AS db5;
96 ATTACH 'test.db' AS db6;
97 ATTACH 'test.db' AS db7;
98 ATTACH 'test.db' AS db8;
99 ATTACH 'test.db' AS db9;
104 foreach {idx name file} [execsql {PRAGMA database_list} $db] {
105 lappend list $idx $name
109 ifcapable schema_pragmas {
110 do_test attach-1.11b {
112 } {0 main 2 db2 3 db3 4 db4 5 db5 6 db6 7 db7 8 db8 9 db9}
113 } ;# ifcapable schema_pragmas
114 do_test attach-1.12 {
116 ATTACH 'test.db' as db2;
118 } {1 {database db2 is already in use}}
119 do_test attach-1.12.2 {
122 do_test attach-1.13 {
124 ATTACH 'test.db' as db5;
126 } {1 {database db5 is already in use}}
127 do_test attach-1.14 {
129 ATTACH 'test.db' as db9;
131 } {1 {database db9 is already in use}}
132 do_test attach-1.15 {
134 ATTACH 'test.db' as main;
136 } {1 {database main is already in use}}
138 do_test attach-1.16 {
140 ATTACH 'test.db' as temp;
142 } {1 {database temp is already in use}}
144 do_test attach-1.17 {
146 ATTACH 'test.db' as MAIN;
148 } {1 {database MAIN is already in use}}
149 do_test attach-1.18 {
151 ATTACH 'test.db' as db10;
152 ATTACH 'test.db' as db11;
155 do_test attach-1.19 {
157 ATTACH 'test.db' as db12;
159 } {1 {too many attached databases - max 10}}
160 do_test attach-1.19.1 {
163 do_test attach-1.20.1 {
168 ifcapable schema_pragmas {
169 do_test attach-1.20.2 {
171 } {0 main 2 db2 3 db3 4 db4 5 db6 6 db7 7 db8 8 db9 9 db10 10 db11}
172 } ;# ifcapable schema_pragmas
173 integrity_check attach-1.20.3
175 execsql {select * from sqlite_temp_master}
177 do_test attach-1.21 {
179 ATTACH 'test.db' as db12;
182 do_test attach-1.22 {
184 ATTACH 'test.db' as db13;
186 } {1 {too many attached databases - max 10}}
187 do_test attach-1.22.1 {
190 do_test attach-1.23 {
194 } {1 {no such database: db14}}
195 do_test attach-1.24 {
200 do_test attach-1.25 {
204 } {1 {no such database: db12}}
205 do_test attach-1.26 {
209 } {1 {cannot detach database main}}
212 do_test attach-1.27 {
216 } {1 {cannot detach database Temp}}
218 do_test attach-1.27 {
222 } {1 {no such database: Temp}}
225 do_test attach-1.28 {
238 ifcapable schema_pragmas {
240 do_test attach-1.29 {
244 do_test attach-1.29 {
248 } ;# ifcapable schema_pragmas
250 ifcapable {trigger} { # Only do the following tests if triggers are enabled
253 CREATE TABLE tx(x1,x2,y1,y2);
254 CREATE TRIGGER r1 AFTER UPDATE ON t2 FOR EACH ROW BEGIN
255 INSERT INTO tx(x1,x2,y1,y2) VALUES(OLD.x,NEW.x,OLD.y,NEW.y);
262 UPDATE t2 SET x=x+10;
265 } {1 11 x x 2 12 y y}
268 CREATE TABLE tx(x1,x2,y1,y2);
274 ATTACH 'test2.db' AS db2;
279 UPDATE db2.t2 SET x=x+10;
280 SELECT * FROM db2.tx;
282 } {1 11 x x 2 12 y y 11 21 x x 12 22 y y}
285 SELECT * FROM main.tx;
290 SELECT type, name, tbl_name FROM db2.sqlite_master;
292 } {table t2 t2 table tx tx trigger r1 t2}
294 ifcapable schema_pragmas&&tempdb {
297 } {0 main 1 temp 2 db2}
298 } ;# ifcapable schema_pragmas&&tempdb
299 ifcapable schema_pragmas&&!tempdb {
303 } ;# ifcapable schema_pragmas&&!tempdb
307 CREATE INDEX i2 ON t2(x);
308 SELECT * FROM t2 WHERE x>5;
311 do_test attach-2.10 {
313 SELECT type, name, tbl_name FROM sqlite_master;
315 } {table t2 t2 table tx tx trigger r1 t2 index i2 t2}
316 #do_test attach-2.11 {
318 # SELECT * FROM t2 WHERE x>5;
320 #} {1 {database schema has changed}}
321 ifcapable schema_pragmas {
323 do_test attach-2.12 {
325 } {0 main 1 temp 2 db2}
327 do_test attach-2.12 {
331 } ;# ifcapable schema_pragmas
332 do_test attach-2.13 {
334 SELECT * FROM t2 WHERE x>5;
337 do_test attach-2.14 {
339 SELECT type, name, tbl_name FROM sqlite_master;
341 } {table t1 t1 table tx tx}
342 do_test attach-2.15 {
344 SELECT type, name, tbl_name FROM db2.sqlite_master;
346 } {table t2 t2 table tx tx trigger r1 t2 index i2 t2}
347 do_test attach-2.16 {
351 ATTACH 'test2.db' AS db2;
352 SELECT type, name, tbl_name FROM db2.sqlite_master;
354 } {table t2 t2 table tx tx trigger r1 t2 index i2 t2}
355 } ;# End of ifcapable {trigger}
367 # If we are testing a version of the code that lacks trigger support,
368 # adjust the database contents so that they are the same if triggers
370 ifcapable {!trigger} {
373 INSERT INTO t2 VALUES(21, 'x');
374 INSERT INTO t2 VALUES(22, 'y');
375 CREATE TABLE tx(x1,x2,y1,y2);
376 INSERT INTO tx VALUES(1, 11, 'x', 'x');
377 INSERT INTO tx VALUES(2, 12, 'y', 'y');
378 INSERT INTO tx VALUES(11, 21, 'x', 'x');
379 INSERT INTO tx VALUES(12, 22, 'y', 'y');
380 CREATE INDEX i2 ON t2(x);
388 } {1 {no such table: t2}}
391 ATTACH DATABASE 'test2.db' AS db2;
396 # Even though 'db' has started a transaction, it should not yet have
397 # a lock on test2.db so 'db2' should be readable.
405 # Reading from test2.db from db within a transaction should not
406 # prevent test2.db from being read by db2.
408 execsql {SELECT * FROM t2}
414 # Making a change to test2.db through db causes test2.db to get
415 # a reserved lock. It should still be accessible through db2.
418 UPDATE t2 SET x=x+1 WHERE x=50;
427 execsql {SELECT * FROM t2} db2
430 # Start transactions on both db and db2. Once again, just because
431 # we make a change to test2.db using db2, only a RESERVED lock is
432 # obtained, so test2.db should still be readable using db.
437 execsql {UPDATE t2 SET x=0 WHERE 0} db2
438 catchsql {SELECT * FROM t2}
441 # It is also still accessible from db2.
443 catchsql {SELECT * FROM t2} db2
446 do_test attach-3.10 {
447 execsql {SELECT * FROM t1}
450 do_test attach-3.11 {
451 catchsql {UPDATE t1 SET a=a+1}
453 do_test attach-3.12 {
454 execsql {SELECT * FROM t1}
457 # db2 has a RESERVED lock on test2.db, so db cannot write to any tables
459 do_test attach-3.13 {
460 catchsql {UPDATE t2 SET x=x+1 WHERE x=50}
461 } {1 {database is locked}}
463 # Change for version 3. Transaction is no longer rolled back
464 # for a locked database.
467 # db is able to reread its schema because db2 still only holds a
469 do_test attach-3.14 {
470 catchsql {SELECT * FROM t1}
472 do_test attach-3.15 {
474 execsql {SELECT * FROM t1}
483 CREATE TABLE t3(x,y);
484 CREATE UNIQUE INDEX t3i1 ON t3(x);
485 INSERT INTO t3 VALUES(1,2);
491 CREATE TABLE t3(a,b);
492 CREATE UNIQUE INDEX t3i1b ON t3(a);
493 INSERT INTO t3 VALUES(9,10);
499 ATTACH DATABASE 'test2.db' AS db2;
500 SELECT * FROM db2.t3;
505 SELECT * FROM main.t3;
510 INSERT INTO db2.t3 VALUES(9,10);
511 SELECT * FROM db2.t3;
517 ifcapable {trigger} {
521 CREATE TRIGGER t3r3 AFTER INSERT ON t3 BEGIN
522 INSERT INTO t4 VALUES('db2.' || NEW.x);
524 INSERT INTO t3 VALUES(6,7);
531 CREATE TRIGGER t3r3 AFTER INSERT ON t3 BEGIN
532 INSERT INTO t4 VALUES('main.' || NEW.a);
534 INSERT INTO main.t3 VALUES(11,12);
535 SELECT * FROM main.t4;
539 ifcapable {!trigger} {
540 # When we do not have trigger support, set up the table like they
541 # would have been had triggers been there. The tests that follow need
545 INSERT INTO t3 VALUES(6,7);
546 INSERT INTO t4 VALUES('db2.6');
547 INSERT INTO t4 VALUES('db2.13');
551 INSERT INTO main.t3 VALUES(11,12);
552 INSERT INTO t4 VALUES('main.11');
557 # This one is tricky. On the UNION ALL select, we have to make sure
558 # the schema for both main and db2 is valid before starting to execute
559 # the first query of the UNION ALL. If we wait to test the validity of
560 # the schema for main until after the first query has run, that test will
561 # fail and the query will abort but we will have already output some
562 # results. When the query is retried, the results will be repeated.
567 ATTACH DATABASE 'test2.db' AS db2;
568 INSERT INTO db2.t3 VALUES(13,14);
569 SELECT * FROM db2.t4 UNION ALL SELECT * FROM main.t4;
571 } {db2.6 db2.13 main.11}
574 ifcapable {!trigger} {execsql {INSERT INTO main.t4 VALUES('main.15')}}
576 INSERT INTO main.t3 VALUES(15,16);
577 SELECT * FROM db2.t4 UNION ALL SELECT * FROM main.t4;
579 } {db2.6 db2.13 main.11 main.15}
580 } ;# ifcapable compound
582 ifcapable !compound {
583 ifcapable {!trigger} {execsql {INSERT INTO main.t4 VALUES('main.15')}}
585 ATTACH DATABASE 'test2.db' AS db2;
586 INSERT INTO db2.t3 VALUES(13,14);
587 INSERT INTO main.t3 VALUES(15,16);
589 } ;# ifcapable !compound
592 do_test attach-4.10 {
597 CREATE VIEW v3 AS SELECT x*100+y FROM t3;
601 do_test attach-4.11 {
603 CREATE VIEW v3 AS SELECT a*100+b FROM t3;
607 do_test attach-4.12 {
609 ATTACH DATABASE 'test2.db' AS db2;
610 SELECT * FROM db2.v3;
613 do_test attach-4.13 {
615 SELECT * FROM main.v3;
620 # Tests for the sqliteFix...() routines in attach.c
622 ifcapable {trigger} {
627 file delete -force test2.db
630 ATTACH DATABASE 'test.db' AS orig;
631 CREATE TRIGGER r1 AFTER INSERT ON orig.t1 BEGIN
635 } {1 {trigger r1 cannot reference objects in database orig}}
638 CREATE TABLE t5(x,y);
639 CREATE TRIGGER r5 AFTER INSERT ON t5 BEGIN
647 CREATE TRIGGER r5 AFTER INSERT ON t5 BEGIN
648 SELECT 'no-op' FROM orig.t1;
651 } {1 {trigger r5 cannot reference objects in database orig}}
655 CREATE TEMP TABLE t6(p,q,r);
656 CREATE TRIGGER r5 AFTER INSERT ON t5 BEGIN
657 SELECT 'no-op' FROM temp.t6;
660 } {1 {trigger r5 cannot reference objects in database temp}}
665 CREATE TRIGGER r5 AFTER INSERT ON t5 BEGIN
666 SELECT 'no-op' || (SELECT * FROM temp.t6);
669 } {1 {trigger r5 cannot reference objects in database temp}}
672 CREATE TRIGGER r5 AFTER INSERT ON t5 BEGIN
673 SELECT 'no-op' FROM t1 WHERE x<(SELECT min(x) FROM temp.t6);
676 } {1 {trigger r5 cannot reference objects in database temp}}
679 CREATE TRIGGER r5 AFTER INSERT ON t5 BEGIN
680 SELECT 'no-op' FROM t1 GROUP BY 1 HAVING x<(SELECT min(x) FROM temp.t6);
683 } {1 {trigger r5 cannot reference objects in database temp}}
686 CREATE TRIGGER r5 AFTER INSERT ON t5 BEGIN
687 SELECT max(1,x,(SELECT min(x) FROM temp.t6)) FROM t1;
690 } {1 {trigger r5 cannot reference objects in database temp}}
693 CREATE TRIGGER r5 AFTER INSERT ON t5 BEGIN
694 INSERT INTO t1 VALUES((SELECT min(x) FROM temp.t6),5);
697 } {1 {trigger r5 cannot reference objects in database temp}}
700 CREATE TRIGGER r5 AFTER INSERT ON t5 BEGIN
701 DELETE FROM t1 WHERE x<(SELECT min(x) FROM temp.t6);
704 } {1 {trigger r5 cannot reference objects in database temp}}
708 # Check to make sure we get a sensible error if unable to open
709 # the file that we are trying to attach.
713 ATTACH DATABASE 'no-such-file' AS nosuch;
716 if {$tcl_platform(platform)=="unix"} {
718 sqlite3 dbx cannot-read
719 dbx eval {CREATE TABLE t1(a,b,c)}
721 file attributes cannot-read -permission 0000
722 if {[file writable cannot-read]} {
723 puts "\n**** Tests do not work when run as root ****"
724 file delete -force cannot-read
728 ATTACH DATABASE 'cannot-read' AS noread;
730 } {1 {unable to open database: cannot-read}}
731 do_test attach-6.2.2 {
734 file delete -force cannot-read
737 # Check the error message if we try to access a database that has
741 CREATE TABLE no_such_db.t1(a, b, c);
743 } {1 {unknown database no_such_db}}
744 for {set i 2} {$i<=15} {incr i} {
748 file delete -force test2.db
749 file delete -force no-such-file
753 file delete -force test.db test.db-journal
756 DETACH RAISE ( IGNORE ) IN ( SELECT "AAAAAA" . * ORDER BY
757 REGISTER LIMIT "AAAAAA" . "AAAAAA" OFFSET RAISE ( IGNORE ) NOT NULL )
759 } {1 {invalid name: "RAISE ( IGNORE ) IN ( SELECT "AAAAAA" . * ORDER BY
760 REGISTER LIMIT "AAAAAA" . "AAAAAA" OFFSET RAISE ( IGNORE ) NOT NULL )"}}
763 # Create a malformed file (a file that is not a valid database)
764 # and try to attach it
767 set fd [open test2.db w]
768 puts $fd "This file is not a valid SQLite database"
771 ATTACH 'test2.db' AS t2;
773 } {1 {file is encrypted or is not a database}}
777 file delete -force test2.db
780 db2 eval {CREATE TABLE t1(x); BEGIN EXCLUSIVE}
782 ATTACH 'test2.db' AS t2;
784 } {1 {database is locked}}
789 file delete -force test2.db