sqlcipher/test/index5.test

81 lines
1.7 KiB
Plaintext
Raw Normal View History

2012-11-15 23:45:58 +00:00
# 2012 August 6
#
# The author disclaims copyright to this source code. In place of
# a legal notice, here is a blessing:
#
# May you do good and not evil.
# May you find forgiveness for yourself and forgive others.
# May you share freely, never taking more than you give.
#
#***********************************************************************
#
set testdir [file dirname $argv0]
source $testdir/tester.tcl
set ::testprefix index5
do_test 1.1 {
2015-03-20 14:04:26 +00:00
if {[permutation]=="memsubsys1"} {
execsql { PRAGMA auto_vacuum = 0; }
}
2012-11-15 23:45:58 +00:00
execsql {
PRAGMA page_size = 1024;
CREATE TABLE t1(x);
BEGIN;
}
for {set i 0} {$i < 100000} {incr i} {
execsql { INSERT INTO t1 VALUES(randstr(100,100)) }
}
execsql COMMIT
execsql {
CREATE INDEX i1 ON t1(x);
DROP INDEX I1;
PRAGMA main.page_size;
}
} {1024}
db close
testvfs tvfs
tvfs filter xWrite
tvfs script write_cb
2013-05-21 20:38:11 +00:00
proc write_cb {xCall file handle iOfst args} {
2012-11-15 23:45:58 +00:00
if {[file tail $file]=="test.db"} {
2015-03-20 14:04:26 +00:00
lappend ::write_list [expr $iOfst/1024 + 1]
2012-11-15 23:45:58 +00:00
}
}
do_test 1.2 {
sqlite3 db test.db -vfs tvfs
set ::write_list [list]
execsql { CREATE INDEX i1 ON t1(x) }
} {}
do_test 1.3 {
set nForward 0
set nBackward 0
set nNoncont 0
set iPrev [lindex $::write_list 0]
for {set i 1} {$i < [llength $::write_list]} {incr i} {
set iNext [lindex $::write_list $i]
if {$iNext==($iPrev+1)} {
incr nForward
} elseif {$iNext==($iPrev-1)} {
incr nBackward
} else {
incr nNoncont
}
set iPrev $iNext
}
2016-02-23 15:07:39 +00:00
if {0} {
puts -nonewline \
" (forward=$nForward, back=$nBackward, noncontiguous=$nNoncont)"
}
2012-11-15 23:45:58 +00:00
2013-05-21 20:38:11 +00:00
expr {$nForward > 2*($nBackward + $nNoncont)}
2012-11-15 23:45:58 +00:00
} {1}
db close
tvfs delete
finish_test