author | sl@SLION-WIN7.fritz.box |
Fri, 15 Jun 2012 03:10:57 +0200 | |
changeset 0 | bde4ae8d615e |
permissions | -rw-r--r-- |
sl@0 | 1 |
# 2002 November 30 |
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 script testing the ability of SQLite to handle database |
sl@0 | 13 |
# files larger than 4GB. |
sl@0 | 14 |
# |
sl@0 | 15 |
# $Id: bigfile.test,v 1.10 2007/08/18 10:59:21 danielk1977 Exp $ |
sl@0 | 16 |
# |
sl@0 | 17 |
|
sl@0 | 18 |
set testdir [file dirname $argv0] |
sl@0 | 19 |
source $testdir/tester.tcl |
sl@0 | 20 |
|
sl@0 | 21 |
# If SQLITE_DISABLE_LFS is defined, omit this file. |
sl@0 | 22 |
ifcapable !lfs { |
sl@0 | 23 |
finish_test |
sl@0 | 24 |
return |
sl@0 | 25 |
} |
sl@0 | 26 |
|
sl@0 | 27 |
# These tests only work for Tcl version 8.4 and later. Prior to 8.4, |
sl@0 | 28 |
# Tcl was unable to handle large files. |
sl@0 | 29 |
# |
sl@0 | 30 |
scan $::tcl_version %f vx |
sl@0 | 31 |
if {$vx<8.4} return |
sl@0 | 32 |
|
sl@0 | 33 |
# Mac OS X does not handle large files efficiently. So skip this test |
sl@0 | 34 |
# on that platform. |
sl@0 | 35 |
if {$tcl_platform(os)=="Darwin"} return |
sl@0 | 36 |
|
sl@0 | 37 |
# This is the md5 checksum of all the data in table t1 as created |
sl@0 | 38 |
# by the first test. We will use this number to make sure that data |
sl@0 | 39 |
# never changes. |
sl@0 | 40 |
# |
sl@0 | 41 |
set MAGIC_SUM {593f1efcfdbe698c28b4b1b693f7e4cf} |
sl@0 | 42 |
|
sl@0 | 43 |
do_test bigfile-1.1 { |
sl@0 | 44 |
execsql { |
sl@0 | 45 |
BEGIN; |
sl@0 | 46 |
CREATE TABLE t1(x); |
sl@0 | 47 |
INSERT INTO t1 VALUES('abcdefghijklmnopqrstuvwxyz'); |
sl@0 | 48 |
INSERT INTO t1 SELECT rowid || ' ' || x FROM t1; |
sl@0 | 49 |
INSERT INTO t1 SELECT rowid || ' ' || x FROM t1; |
sl@0 | 50 |
INSERT INTO t1 SELECT rowid || ' ' || x FROM t1; |
sl@0 | 51 |
INSERT INTO t1 SELECT rowid || ' ' || x FROM t1; |
sl@0 | 52 |
INSERT INTO t1 SELECT rowid || ' ' || x FROM t1; |
sl@0 | 53 |
INSERT INTO t1 SELECT rowid || ' ' || x FROM t1; |
sl@0 | 54 |
INSERT INTO t1 SELECT rowid || ' ' || x FROM t1; |
sl@0 | 55 |
COMMIT; |
sl@0 | 56 |
} |
sl@0 | 57 |
execsql { |
sl@0 | 58 |
SELECT md5sum(x) FROM t1; |
sl@0 | 59 |
} |
sl@0 | 60 |
} $::MAGIC_SUM |
sl@0 | 61 |
|
sl@0 | 62 |
# Try to create a large file - a file that is larger than 2^32 bytes. |
sl@0 | 63 |
# If this fails, it means that the system being tested does not support |
sl@0 | 64 |
# large files. So skip all of the remaining tests in this file. |
sl@0 | 65 |
# |
sl@0 | 66 |
db close |
sl@0 | 67 |
if {[catch {fake_big_file 4096 test.db} msg]} { |
sl@0 | 68 |
puts "**** Unable to create a file larger than 4096 MB. *****" |
sl@0 | 69 |
puts "$msg" |
sl@0 | 70 |
finish_test |
sl@0 | 71 |
return |
sl@0 | 72 |
} |
sl@0 | 73 |
|
sl@0 | 74 |
do_test bigfile-1.2 { |
sl@0 | 75 |
sqlite3 db test.db |
sl@0 | 76 |
execsql { |
sl@0 | 77 |
SELECT md5sum(x) FROM t1; |
sl@0 | 78 |
} |
sl@0 | 79 |
} $::MAGIC_SUM |
sl@0 | 80 |
|
sl@0 | 81 |
# The previous test may fail on some systems because they are unable |
sl@0 | 82 |
# to handle large files. If that is so, then skip all of the following |
sl@0 | 83 |
# tests. We will know the above test failed because the "db" command |
sl@0 | 84 |
# does not exist. |
sl@0 | 85 |
# |
sl@0 | 86 |
if {[llength [info command db]]>0} { |
sl@0 | 87 |
|
sl@0 | 88 |
do_test bigfile-1.3 { |
sl@0 | 89 |
execsql { |
sl@0 | 90 |
CREATE TABLE t2 AS SELECT * FROM t1; |
sl@0 | 91 |
SELECT md5sum(x) FROM t2; |
sl@0 | 92 |
} |
sl@0 | 93 |
} $::MAGIC_SUM |
sl@0 | 94 |
do_test bigfile-1.4 { |
sl@0 | 95 |
db close |
sl@0 | 96 |
sqlite3 db test.db |
sl@0 | 97 |
execsql { |
sl@0 | 98 |
SELECT md5sum(x) FROM t1; |
sl@0 | 99 |
} |
sl@0 | 100 |
} $::MAGIC_SUM |
sl@0 | 101 |
do_test bigfile-1.5 { |
sl@0 | 102 |
execsql { |
sl@0 | 103 |
SELECT md5sum(x) FROM t2; |
sl@0 | 104 |
} |
sl@0 | 105 |
} $::MAGIC_SUM |
sl@0 | 106 |
|
sl@0 | 107 |
db close |
sl@0 | 108 |
if {[catch {fake_big_file 8192 test.db}]} { |
sl@0 | 109 |
puts "**** Unable to create a file larger than 8192 MB. *****" |
sl@0 | 110 |
finish_test |
sl@0 | 111 |
return |
sl@0 | 112 |
} |
sl@0 | 113 |
|
sl@0 | 114 |
do_test bigfile-1.6 { |
sl@0 | 115 |
sqlite3 db test.db |
sl@0 | 116 |
execsql { |
sl@0 | 117 |
SELECT md5sum(x) FROM t1; |
sl@0 | 118 |
} |
sl@0 | 119 |
} $::MAGIC_SUM |
sl@0 | 120 |
do_test bigfile-1.7 { |
sl@0 | 121 |
execsql { |
sl@0 | 122 |
CREATE TABLE t3 AS SELECT * FROM t1; |
sl@0 | 123 |
SELECT md5sum(x) FROM t3; |
sl@0 | 124 |
} |
sl@0 | 125 |
} $::MAGIC_SUM |
sl@0 | 126 |
do_test bigfile-1.8 { |
sl@0 | 127 |
db close |
sl@0 | 128 |
sqlite3 db test.db |
sl@0 | 129 |
execsql { |
sl@0 | 130 |
SELECT md5sum(x) FROM t1; |
sl@0 | 131 |
} |
sl@0 | 132 |
} $::MAGIC_SUM |
sl@0 | 133 |
do_test bigfile-1.9 { |
sl@0 | 134 |
execsql { |
sl@0 | 135 |
SELECT md5sum(x) FROM t2; |
sl@0 | 136 |
} |
sl@0 | 137 |
} $::MAGIC_SUM |
sl@0 | 138 |
do_test bigfile-1.10 { |
sl@0 | 139 |
execsql { |
sl@0 | 140 |
SELECT md5sum(x) FROM t3; |
sl@0 | 141 |
} |
sl@0 | 142 |
} $::MAGIC_SUM |
sl@0 | 143 |
|
sl@0 | 144 |
db close |
sl@0 | 145 |
if {[catch {fake_big_file 16384 test.db}]} { |
sl@0 | 146 |
puts "**** Unable to create a file larger than 16384 MB. *****" |
sl@0 | 147 |
finish_test |
sl@0 | 148 |
return |
sl@0 | 149 |
} |
sl@0 | 150 |
|
sl@0 | 151 |
do_test bigfile-1.11 { |
sl@0 | 152 |
sqlite3 db test.db |
sl@0 | 153 |
execsql { |
sl@0 | 154 |
SELECT md5sum(x) FROM t1; |
sl@0 | 155 |
} |
sl@0 | 156 |
} $::MAGIC_SUM |
sl@0 | 157 |
do_test bigfile-1.12 { |
sl@0 | 158 |
execsql { |
sl@0 | 159 |
CREATE TABLE t4 AS SELECT * FROM t1; |
sl@0 | 160 |
SELECT md5sum(x) FROM t4; |
sl@0 | 161 |
} |
sl@0 | 162 |
} $::MAGIC_SUM |
sl@0 | 163 |
do_test bigfile-1.13 { |
sl@0 | 164 |
db close |
sl@0 | 165 |
sqlite3 db test.db |
sl@0 | 166 |
execsql { |
sl@0 | 167 |
SELECT md5sum(x) FROM t1; |
sl@0 | 168 |
} |
sl@0 | 169 |
} $::MAGIC_SUM |
sl@0 | 170 |
do_test bigfile-1.14 { |
sl@0 | 171 |
execsql { |
sl@0 | 172 |
SELECT md5sum(x) FROM t2; |
sl@0 | 173 |
} |
sl@0 | 174 |
} $::MAGIC_SUM |
sl@0 | 175 |
do_test bigfile-1.15 { |
sl@0 | 176 |
execsql { |
sl@0 | 177 |
SELECT md5sum(x) FROM t3; |
sl@0 | 178 |
} |
sl@0 | 179 |
} $::MAGIC_SUM |
sl@0 | 180 |
do_test bigfile-1.16 { |
sl@0 | 181 |
execsql { |
sl@0 | 182 |
SELECT md5sum(x) FROM t3; |
sl@0 | 183 |
} |
sl@0 | 184 |
} $::MAGIC_SUM |
sl@0 | 185 |
do_test bigfile-1.17 { |
sl@0 | 186 |
execsql { |
sl@0 | 187 |
SELECT md5sum(x) FROM t4; |
sl@0 | 188 |
} |
sl@0 | 189 |
} $::MAGIC_SUM |
sl@0 | 190 |
|
sl@0 | 191 |
} ;# End of the "if( db command exists )" |
sl@0 | 192 |
|
sl@0 | 193 |
finish_test |