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 schema changes to attached databases.
15 # $Id: attach3.test,v 1.18 2007/10/09 08:29:32 danielk1977 Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
26 # Create tables t1 and t2 in the main database
28 CREATE TABLE t1(a, b);
29 CREATE TABLE t2(c, d);
32 # Create tables t1 and t2 in database file test2.db
33 file delete -force test2.db
34 file delete -force test2.db-journal
37 CREATE TABLE t1(a, b);
38 CREATE TABLE t2(c, d);
42 # Create a table in the auxilary database.
45 ATTACH 'test2.db' AS aux;
50 CREATE TABLE aux.t3(e, f);
55 SELECT * FROM sqlite_master WHERE name = 't3';
60 SELECT * FROM aux.sqlite_master WHERE name = 't3';
62 } "table t3 t3 [expr $AUTOVACUUM?5:4] {CREATE TABLE t3(e, f)}"
65 INSERT INTO t3 VALUES(1, 2);
70 # Create an index on the auxilary database table.
73 CREATE INDEX aux.i1 on t3(e);
78 SELECT * FROM sqlite_master WHERE name = 'i1';
83 SELECT * FROM aux.sqlite_master WHERE name = 'i1';
85 } "index i1 t3 [expr $AUTOVACUUM?6:5] {CREATE INDEX i1 on t3(e)}"
87 # Drop the index on the aux database table.
91 SELECT * FROM aux.sqlite_master WHERE name = 'i1';
96 CREATE INDEX aux.i1 on t3(e);
97 SELECT * FROM aux.sqlite_master WHERE name = 'i1';
99 } "index i1 t3 [expr $AUTOVACUUM?6:5] {CREATE INDEX i1 on t3(e)}"
100 do_test attach3-3.3 {
103 SELECT * FROM aux.sqlite_master WHERE name = 'i1';
107 # Drop tables t1 and t2 in the auxilary database.
108 do_test attach3-4.1 {
111 SELECT name FROM aux.sqlite_master;
114 do_test attach3-4.2 {
115 # This will drop main.t2
118 SELECT name FROM aux.sqlite_master;
121 do_test attach3-4.3 {
124 SELECT name FROM aux.sqlite_master;
128 # Create a view in the auxilary database.
130 do_test attach3-5.1 {
132 CREATE VIEW aux.v1 AS SELECT * FROM t3;
135 do_test attach3-5.2 {
137 SELECT * FROM aux.sqlite_master WHERE name = 'v1';
139 } {view v1 v1 0 {CREATE VIEW v1 AS SELECT * FROM t3}}
140 do_test attach3-5.3 {
142 INSERT INTO aux.t3 VALUES('hello', 'world');
148 do_test attach3-6.1 {
153 do_test attach3-6.2 {
155 SELECT * FROM aux.sqlite_master WHERE name = 'v1';
160 ifcapable {trigger} {
161 # Create a trigger in the auxilary database.
162 do_test attach3-7.1 {
164 CREATE TRIGGER aux.tr1 AFTER INSERT ON t3 BEGIN
165 INSERT INTO t3 VALUES(new.e*2, new.f*2);
169 do_test attach3-7.2 {
172 INSERT INTO t3 VALUES(10, 20);
176 do_test attach3-5.3 {
178 SELECT * FROM aux.sqlite_master WHERE name = 'tr1';
180 } {trigger tr1 t3 0 {CREATE TRIGGER tr1 AFTER INSERT ON t3 BEGIN
181 INSERT INTO t3 VALUES(new.e*2, new.f*2);
185 do_test attach3-8.1 {
187 DROP TRIGGER aux.tr1;
190 do_test attach3-8.2 {
192 SELECT * FROM aux.sqlite_master WHERE name = 'tr1';
197 # Try to trick SQLite into dropping the wrong temp trigger.
198 do_test attach3-9.0 {
200 CREATE TABLE main.t4(a, b, c);
201 CREATE TABLE aux.t4(a, b, c);
202 CREATE TEMP TRIGGER tst_trigger BEFORE INSERT ON aux.t4 BEGIN
203 SELECT 'hello world';
205 SELECT count(*) FROM sqlite_temp_master;
208 do_test attach3-9.1 {
211 SELECT count(*) FROM sqlite_temp_master;
214 do_test attach3-9.2 {
217 SELECT count(*) FROM sqlite_temp_master;
223 # Make sure the aux.sqlite_master table is read-only
224 do_test attach3-10.0 {
226 INSERT INTO aux.sqlite_master VALUES(1, 2, 3, 4, 5);
228 } {1 {table sqlite_master may not be modified}}
230 # Failure to attach leaves us in a workable state.
232 # Symbian OS: '/' in the file name replaced with '\'
233 do_test attach3-11.0 {
235 ATTACH DATABASE '\nodir\nofile.x' AS notadb;
237 } {1 {unable to open database: \nodir\nofile.x}}
238 do_test attach3-11.1 {
240 ATTACH DATABASE ':memory:' AS notadb;
243 do_test attach3-11.2 {
245 DETACH DATABASE notadb;
249 # Return a list of attached databases
253 PRAGMA database_list;
256 foreach {n id file} $x {lappend y $id}
260 ifcapable schema_pragmas&&tempdb {
263 execsql {create temp table dummy(dummy)}
268 do_test attach3-12.1 {
271 do_test attach3-12.2 {
273 ATTACH DATABASE ? AS ?
277 do_test attach3-12.3 {
283 do_test attach3-12.4 {
289 do_test attach3-12.5 {
291 ATTACH DATABASE '' AS ''
295 do_test attach3-12.6 {
301 do_test attach3-12.7 {
303 ATTACH DATABASE '' AS ?
307 do_test attach3-12.8 {
313 do_test attach3-12.9 {
315 ATTACH DATABASE '' AS NULL
319 do_test attach3-12.10 {
325 do_test attach3-12.11 {
329 } {1 {no such database: }}
330 do_test attach3-12.12 {
335 } {1 {database is already in use}}
336 do_test attach3-12.13 {
339 do_test attach3-12.14 {
346 } ;# ifcapable pragma