os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/incrvacuum2.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 # 2007 May 04
     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 incremental vacuum feature.
    13 #
    14 # $Id: incrvacuum2.test,v 1.5 2008/05/07 07:13:16 danielk1977 Exp $
    15 
    16 set testdir [file dirname $argv0]
    17 source $testdir/tester.tcl
    18 
    19 # If this build of the library does not support auto-vacuum, omit this
    20 # whole file.
    21 ifcapable {!autovacuum || !pragma} {
    22   finish_test
    23   return
    24 }
    25 
    26 # If the OMIT_INCRBLOB symbol was defined at compile time, there
    27 # is no zeroblob() function available. So create a similar
    28 # function here using Tcl. It doesn't return a blob, but it returns
    29 # data of the required length, which is good enough for this
    30 # test file.
    31 ifcapable !incrblob {
    32   proc zeroblob {n} { string repeat 0 $n }
    33   db function zeroblob zeroblob
    34 }
    35 
    36 
    37 # Create a database in incremental vacuum mode that has many
    38 # pages on the freelist.
    39 #
    40 do_test incrvacuum2-1.1 {
    41   execsql {
    42     PRAGMA page_size=1024;
    43     PRAGMA auto_vacuum=incremental;
    44     CREATE TABLE t1(x);
    45     INSERT INTO t1 VALUES(zeroblob(30000));
    46     DELETE FROM t1;
    47   }
    48   file size test.db
    49 } {32768}
    50 
    51 # Vacuum off a single page.
    52 #
    53 do_test incrvacuum2-1.2 {
    54   execsql {
    55     PRAGMA incremental_vacuum(1);
    56   }
    57   file size test.db
    58 } {31744}
    59 
    60 # Vacuum off five pages
    61 #
    62 do_test incrvacuum2-1.3 {
    63   execsql {
    64     PRAGMA incremental_vacuum(5);
    65   }
    66   file size test.db
    67 } {26624}
    68 
    69 # Vacuum off all the rest
    70 #
    71 do_test incrvacuum2-1.4 {
    72   execsql {
    73     PRAGMA incremental_vacuum(1000);
    74   }
    75   file size test.db
    76 } {3072}
    77 
    78 # Make sure incremental vacuum works on attached databases.
    79 #
    80 ifcapable attach {
    81   do_test incrvacuum2-2.1 {
    82     file delete -force test2.db test2.db-journal
    83     execsql {
    84       ATTACH DATABASE 'test2.db' AS aux;
    85       PRAGMA aux.auto_vacuum=incremental;
    86       CREATE TABLE aux.t2(x);
    87       INSERT INTO t2 VALUES(zeroblob(30000));
    88       INSERT INTO t1 SELECT * FROM t2;
    89       DELETE FROM t2;
    90       DELETE FROM t1;
    91     }
    92     list [file size test.db] [file size test2.db]
    93   } {32768 32768}
    94   do_test incrvacuum2-2.2 {
    95     execsql {
    96       PRAGMA aux.incremental_vacuum(1)
    97     }
    98     list [file size test.db] [file size test2.db]
    99   } {32768 31744}
   100   do_test incrvacuum2-2.3 {
   101     execsql {
   102       PRAGMA aux.incremental_vacuum(5)
   103     }
   104     list [file size test.db] [file size test2.db]
   105   } {32768 26624}
   106   do_test incrvacuum2-2.4 {
   107     execsql {
   108       PRAGMA main.incremental_vacuum(5)
   109     }
   110     list [file size test.db] [file size test2.db]
   111   } {27648 26624}
   112   do_test incrvacuum2-2.5 {
   113     execsql {
   114       PRAGMA aux.incremental_vacuum
   115     }
   116     list [file size test.db] [file size test2.db]
   117   } {27648 3072}
   118   do_test incrvacuum2-2.6 {
   119     execsql {
   120       PRAGMA incremental_vacuum(1)
   121     }
   122     list [file size test.db] [file size test2.db]
   123   } {26624 3072}
   124 }
   125 
   126 do_test incrvacuum2-3.1 {
   127   execsql {
   128     PRAGMA auto_vacuum = 'full';
   129     BEGIN;
   130     CREATE TABLE abc(a);
   131     INSERT INTO abc VALUES(randstr(1500,1500));
   132     COMMIT;
   133   }
   134 } {}
   135 do_test incrvacuum2-3.2 {
   136   execsql {
   137     BEGIN;
   138     DELETE FROM abc;
   139     PRAGMA incremental_vacuum;
   140     COMMIT;
   141   }
   142 } {}
   143 
   144 integrity_check incremental2-3.3
   145 
   146 finish_test