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