1# 2010 October 27 2# 3# May you do good and not evil. 4# May you find forgiveness for yourself and forgive others. 5# May you share freely, never taking more than you give. 6# 7#*********************************************************************** 8# Test that the FTS3 extension does not crash when it encounters a 9# corrupt data structure on disk. 10# 11 12 13set testdir [file dirname $argv0] 14source $testdir/tester.tcl 15 16# If SQLITE_ENABLE_FTS3 is not defined, omit this file. 17ifcapable !fts3 { finish_test ; return } 18 19set ::testprefix fts3corrupt3 20 21#------------------------------------------------------------------------- 22# Test that fts3 does not choke on an oversized varint. 23# 24do_execsql_test 1.0 { 25 PRAGMA page_size = 512; 26 CREATE VIRTUAL TABLE t1 USING fts3; 27 BEGIN; 28 INSERT INTO t1 VALUES('one'); 29 INSERT INTO t1 VALUES('one'); 30 INSERT INTO t1 VALUES('one'); 31 COMMIT; 32} 33do_execsql_test 1.1 { 34 SELECT quote(root) from t1_segdir; 35} {X'00036F6E6509010200010200010200'} 36do_execsql_test 1.2 { 37 UPDATE t1_segdir SET root = X'00036F6E650EFFFFFFFFFFFFFFFFFFFFFFFF0200'; 38} 39do_catchsql_test 1.3 { 40 SELECT rowid FROM t1 WHERE t1 MATCH 'one' 41} {0 -1} 42 43#------------------------------------------------------------------------- 44# Interior node with the prefix or suffix count of an entry set to a 45# negative value. 46# 47set doc1 [string repeat "x " 600] 48set doc2 [string repeat "y " 600] 49set doc3 [string repeat "z " 600] 50 51do_execsql_test 2.0 { 52 CREATE VIRTUAL TABLE t2 USING fts3; 53 BEGIN; 54 INSERT INTO t2 VALUES($doc1); 55 INSERT INTO t2 VALUES($doc2); 56 INSERT INTO t2 VALUES($doc3); 57 COMMIT; 58} 59do_execsql_test 2.1 { 60 SELECT quote(root) from t2_segdir; 61} {X'0101017900017A'} 62 63 64 65finish_test 66