os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/vacuum.test
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 # 2001 September 15
     2 #
     3 # The author disclaims copyright to this source code.  In place of
     4 # a legal notice, here is a blessing:
     5 #
     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.
     9 #
    10 #***********************************************************************
    11 # This file implements regression tests for SQLite library.  The
    12 # focus of this file is testing the VACUUM statement.
    13 #
    14 # $Id: vacuum.test,v 1.41 2008/04/15 02:36:34 drh Exp $
    15 
    16 set testdir [file dirname $argv0]
    17 source $testdir/tester.tcl
    18 
    19 # If the VACUUM statement is disabled in the current build, skip all
    20 # the tests in this file.
    21 #
    22 ifcapable {!vacuum} {
    23   omit_test vacuum.test {Compiled with SQLITE_OMIT_VACUUM}
    24   finish_test
    25   return
    26 }
    27 if $AUTOVACUUM {
    28   omit_test vacuum.test {Auto-vacuum is enabled}
    29   finish_test
    30   return
    31 }
    32 
    33 set fcnt 1
    34 do_test vacuum-1.1 {
    35   execsql {
    36     BEGIN;
    37     CREATE TABLE t1(a INTEGER PRIMARY KEY, b, c);
    38     INSERT INTO t1 VALUES(NULL,randstr(10,100),randstr(5,50));
    39     INSERT INTO t1 VALUES(123456,randstr(10,100),randstr(5,50));
    40     INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
    41     INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
    42     INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
    43     INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
    44     INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
    45     INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
    46     INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
    47     CREATE INDEX i1 ON t1(b,c);
    48     CREATE UNIQUE INDEX i2 ON t1(c,a);
    49     CREATE TABLE t2 AS SELECT * FROM t1;
    50     COMMIT;
    51     DROP TABLE t2;
    52   }
    53   set ::size1 [file size test.db]
    54   set ::cksum [cksum]
    55   expr {$::cksum!=""}
    56 } {1}
    57 do_test vacuum-1.2 {
    58   execsql {
    59     VACUUM;
    60   }
    61   cksum
    62 } $cksum
    63 ifcapable vacuum {
    64   do_test vacuum-1.3 {
    65     expr {[file size test.db]<$::size1}
    66   } {1}
    67 }
    68 do_test vacuum-1.4 {
    69   set sql_script {
    70     BEGIN;
    71     CREATE TABLE t2 AS SELECT * FROM t1;
    72     CREATE TABLE t3 AS SELECT * FROM t1;
    73     CREATE VIEW v1 AS SELECT b, c FROM t3;
    74     CREATE TRIGGER r1 AFTER DELETE ON t2 BEGIN SELECT 1; END;
    75     COMMIT;
    76     DROP TABLE t2;
    77   }
    78   # If the library was compiled to omit view support, comment out the
    79   # create view in the script $sql_script before executing it. Similarly,
    80   # if triggers are not supported, comment out the trigger definition.
    81   ifcapable !view {
    82     regsub {CREATE VIEW} $sql_script {-- CREATE VIEW} sql_script
    83   }
    84   ifcapable !trigger {
    85     regsub {CREATE TRIGGER} $sql_script {-- CREATE TRIGGER} sql_script
    86   }
    87   execsql $sql_script
    88   set ::size1 [file size test.db]
    89   set ::cksum [cksum]
    90   expr {$::cksum!=""}
    91 } {1}
    92 do_test vacuum-1.5 {
    93   execsql {
    94     VACUUM;
    95   }
    96   cksum
    97 } $cksum
    98 
    99 ifcapable vacuum {
   100   do_test vacuum-1.6 {
   101     expr {[file size test.db]<$::size1}
   102   } {1}
   103 }
   104 ifcapable vacuum {
   105   do_test vacuum-2.1 {
   106     catchsql {
   107       BEGIN;
   108       VACUUM;
   109       COMMIT;
   110     }
   111   } {1 {cannot VACUUM from within a transaction}}
   112   catch {db eval COMMIT}
   113 }
   114 do_test vacuum-2.2 {
   115   sqlite3 db2 test.db
   116   execsql {
   117     BEGIN;
   118     CREATE TABLE t4 AS SELECT * FROM t1;
   119     CREATE TABLE t5 AS SELECT * FROM t1;
   120     COMMIT;
   121     DROP TABLE t4;
   122     DROP TABLE t5;
   123   } db2
   124   set ::cksum [cksum db2]
   125   catchsql {
   126     VACUUM
   127   }
   128 } {0 {}}
   129 do_test vacuum-2.3 {
   130   cksum
   131 } $cksum
   132 do_test vacuum-2.4 {
   133   catch {db2 eval {SELECT count(*) FROM sqlite_master}}
   134   cksum db2
   135 } $cksum
   136 
   137 # Make sure the schema cookie is incremented by vacuum.
   138 #
   139 do_test vacuum-2.5 {
   140   execsql {
   141     BEGIN;
   142     CREATE TABLE t6 AS SELECT * FROM t1;
   143     CREATE TABLE t7 AS SELECT * FROM t1;
   144     COMMIT;
   145   }
   146   sqlite3 db3 test.db
   147   execsql {
   148     -- The "SELECT * FROM sqlite_master" statement ensures that this test
   149     -- works when shared-cache is enabled. If shared-cache is enabled, then
   150     -- db3 shares a cache with db2 (but not db - it was opened as 
   151     -- "./test.db").
   152     SELECT * FROM sqlite_master;
   153     SELECT * FROM t7 LIMIT 1
   154   } db3
   155   execsql {
   156     VACUUM;
   157   }
   158   execsql {
   159     INSERT INTO t7 VALUES(1234567890,'hello','world');
   160   } db3
   161   execsql {
   162     SELECT * FROM t7 WHERE a=1234567890
   163   }
   164 } {1234567890 hello world}
   165 integrity_check vacuum-2.6
   166 do_test vacuum-2.7 {
   167   execsql {
   168     SELECT * FROM t7 WHERE a=1234567890
   169   } db3
   170 } {1234567890 hello world}
   171 do_test vacuum-2.8 {
   172   execsql {
   173     INSERT INTO t7 SELECT * FROM t6;
   174     SELECT count(*) FROM t7;
   175   }
   176 } 513
   177 integrity_check vacuum-2.9
   178 do_test vacuum-2.10 {
   179   execsql {
   180     DELETE FROM t7;
   181     SELECT count(*) FROM t7;
   182   } db3
   183 } 0
   184 integrity_check vacuum-2.11
   185 db3 close
   186  
   187 
   188 # Ticket #427.  Make sure VACUUM works when the EMPTY_RESULT_CALLBACKS
   189 # pragma is turned on.
   190 #
   191 do_test vacuum-3.1 {
   192   db close
   193   db2 close
   194   file delete test.db
   195   sqlite3 db test.db
   196   execsql {
   197     PRAGMA empty_result_callbacks=on;
   198     VACUUM;
   199   }
   200 } {}
   201 
   202 # Ticket #464.  Make sure VACUUM works with the sqlite3_prepare() API.
   203 #
   204 do_test vacuum-4.1 {
   205   db close
   206   sqlite3 db test.db; set DB [sqlite3_connection_pointer db]
   207   set VM [sqlite3_prepare $DB {VACUUM} -1 TAIL]
   208   sqlite3_step $VM
   209 } {SQLITE_DONE}
   210 do_test vacuum-4.2 {
   211   sqlite3_finalize $VM
   212 } SQLITE_OK
   213 
   214 # Ticket #515.  VACUUM after deleting and recreating the table that
   215 # a view refers to. Omit this test if the library is not view-enabled.
   216 #
   217 ifcapable view {
   218 do_test vacuum-5.1 {
   219   db close
   220   file delete -force test.db
   221   sqlite3 db test.db
   222   catchsql {
   223     CREATE TABLE Test (TestID int primary key);
   224     INSERT INTO Test VALUES (NULL);
   225     CREATE VIEW viewTest AS SELECT * FROM Test;
   226 
   227     BEGIN;
   228     CREATE TABLE tempTest (TestID int primary key, Test2 int NULL);
   229     INSERT INTO tempTest SELECT TestID, 1 FROM Test;
   230     DROP TABLE Test;
   231     CREATE TABLE Test(TestID int primary key, Test2 int NULL);
   232     INSERT INTO Test SELECT * FROM tempTest;
   233     DROP TABLE tempTest;
   234     COMMIT;
   235     VACUUM;
   236   }
   237 } {0 {}}
   238 do_test vacuum-5.2 {
   239   catchsql {
   240     VACUUM;
   241   }
   242 } {0 {}}
   243 } ;# ifcapable view
   244 
   245 # Ensure vacuum works with complicated tables names.
   246 do_test vacuum-6.1 {
   247   execsql {
   248     CREATE TABLE "abc abc"(a, b, c);
   249     INSERT INTO "abc abc" VALUES(1, 2, 3);
   250     VACUUM;
   251   }
   252 } {}
   253 do_test vacuum-6.2 {
   254   execsql {
   255     select * from "abc abc";
   256   }
   257 } {1 2 3}
   258 
   259 # Also ensure that blobs survive a vacuum.
   260 ifcapable {bloblit} {
   261   do_test vacuum-6.3 {
   262     execsql {
   263       DELETE FROM "abc abc";
   264       INSERT INTO "abc abc" VALUES(X'00112233', NULL, NULL);
   265       VACUUM;
   266     }
   267   } {}
   268   do_test vacuum-6.4 {
   269     execsql {
   270       select count(*) from "abc abc" WHERE a = X'00112233';
   271     }
   272   } {1}
   273 }
   274 
   275 # Check what happens when an in-memory database is vacuumed. The
   276 # [file delete] command covers us in case the library was compiled
   277 # without in-memory database support.
   278 #
   279 file delete -force :memory:
   280 do_test vacuum-7.0 {
   281   sqlite3 db2 :memory:
   282   execsql {
   283     CREATE TABLE t1(t);
   284     VACUUM;
   285   } db2
   286 } {}
   287 db2 close
   288 
   289 # Ticket #873.  VACUUM a database that has ' in its name.
   290 #
   291 do_test vacuum-8.1 {
   292   file delete -force a'z.db
   293   file delete -force a'z.db-journal
   294   sqlite3 db2 a'z.db
   295   execsql {
   296     CREATE TABLE t1(t);
   297     VACUUM;
   298   } db2
   299 } {}
   300 db2 close
   301 
   302 # Ticket #1095:  Vacuum a table that uses AUTOINCREMENT
   303 #
   304 ifcapable {autoinc} {
   305   do_test vacuum-9.1 {
   306     execsql {
   307       DROP TABLE 'abc abc';
   308       CREATE TABLE autoinc(a INTEGER PRIMARY KEY AUTOINCREMENT, b);
   309       INSERT INTO autoinc(b) VALUES('hi');
   310       INSERT INTO autoinc(b) VALUES('there');
   311       DELETE FROM autoinc;
   312     }
   313     set ::cksum [cksum]
   314     expr {$::cksum!=""}
   315   } {1}
   316   do_test vacuum-9.2 {
   317     execsql {
   318       VACUUM;
   319     }
   320     cksum
   321   } $::cksum
   322   do_test vacuum-9.3 {
   323     execsql {
   324       INSERT INTO autoinc(b) VALUES('one');
   325       INSERT INTO autoinc(b) VALUES('two');
   326     }
   327     set ::cksum [cksum]
   328     expr {$::cksum!=""}
   329   } {1}
   330   do_test vacuum-9.4 {
   331     execsql {
   332       VACUUM;
   333     }
   334     cksum
   335   } $::cksum
   336 }
   337 
   338 file delete -force {a'z.db}
   339 
   340 finish_test