danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 1 | # |
| 2 | # 2007 May 10 |
| 3 | # |
| 4 | # The author disclaims copyright to this source code. In place of |
| 5 | # a legal notice, here is a blessing: |
| 6 | # |
| 7 | # May you do good and not evil. |
| 8 | # May you find forgiveness for yourself and forgive others. |
| 9 | # May you share freely, never taking more than you give. |
| 10 | # |
| 11 | #*********************************************************************** |
| 12 | # |
| 13 | # This file tests malloc failures in concert with fuzzy SQL generation. |
| 14 | # |
drh | 7d10d5a | 2008-08-20 16:35:10 +0000 | [diff] [blame^] | 15 | # $Id: fuzz_malloc.test,v 1.10 2008/08/20 16:35:10 drh Exp $ |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 16 | |
| 17 | set testdir [file dirname $argv0] |
| 18 | source $testdir/tester.tcl |
drh | 9142a83 | 2007-06-15 13:57:19 +0000 | [diff] [blame] | 19 | |
drh | 4753889 | 2007-09-03 15:42:47 +0000 | [diff] [blame] | 20 | ifcapable !memdebug { |
| 21 | finish_test |
| 22 | return |
| 23 | } |
| 24 | |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 25 | source $testdir/malloc_common.tcl |
danielk1977 | 222a757 | 2007-08-25 13:37:48 +0000 | [diff] [blame] | 26 | source $testdir/fuzz_common.tcl |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 27 | |
drh | 44548ec | 2007-06-18 12:22:43 +0000 | [diff] [blame] | 28 | if {[info exists ISQUICK]} { |
| 29 | set ::REPEATS 20 |
| 30 | } elseif {[info exists SOAKTEST]} { |
| 31 | set ::REPEATS 100 |
| 32 | } else { |
| 33 | set ::REPEATS 40 |
| 34 | } |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 35 | |
| 36 | # |
| 37 | # Usage: do_fuzzy_malloc_test <testname> ?<options>? |
| 38 | # |
| 39 | # -template |
danielk1977 | 9afe689 | 2007-05-31 08:20:43 +0000 | [diff] [blame] | 40 | # -sqlprep |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 41 | # -repeats |
| 42 | # |
| 43 | proc do_fuzzy_malloc_test {testname args} { |
| 44 | set ::fuzzyopts(-repeats) $::REPEATS |
danielk1977 | 9afe689 | 2007-05-31 08:20:43 +0000 | [diff] [blame] | 45 | set ::fuzzyopts(-sqlprep) {} |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 46 | array set ::fuzzyopts $args |
| 47 | |
danielk1977 | 7751940 | 2007-08-30 11:48:31 +0000 | [diff] [blame] | 48 | sqlite3_memdebug_fail -1 |
danielk1977 | 9afe689 | 2007-05-31 08:20:43 +0000 | [diff] [blame] | 49 | db close |
| 50 | file delete test.db test.db-journal |
| 51 | sqlite3 db test.db |
| 52 | set ::prep $::fuzzyopts(-sqlprep) |
| 53 | execsql $::prep |
drh | 43b7882 | 2007-06-15 17:03:14 +0000 | [diff] [blame] | 54 | set jj 0 |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 55 | for {set ii 0} {$ii < $::fuzzyopts(-repeats)} {incr ii} { |
drh | 43b7882 | 2007-06-15 17:03:14 +0000 | [diff] [blame] | 56 | expr srand($jj) |
| 57 | incr jj |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 58 | set ::sql [subst $::fuzzyopts(-template)] |
drh | 7d10d5a | 2008-08-20 16:35:10 +0000 | [diff] [blame^] | 59 | # puts fuzyy-sql=\[$::sql\]; flush stdout |
danielk1977 | 9afe689 | 2007-05-31 08:20:43 +0000 | [diff] [blame] | 60 | foreach {rc res} [catchsql "$::sql"] {} |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 61 | if {$rc==0} { |
danielk1977 | 9afe689 | 2007-05-31 08:20:43 +0000 | [diff] [blame] | 62 | do_malloc_test $testname-$ii -sqlbody $::sql -sqlprep $::prep |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 63 | } else { |
| 64 | incr ii -1 |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | #---------------------------------------------------------------- |
| 70 | # Test malloc failure during parsing (and execution) of a fuzzily |
| 71 | # generated expressions. |
| 72 | # |
| 73 | do_fuzzy_malloc_test fuzzy_malloc-1 -template {Select [Expr]} |
danielk1977 | 9afe689 | 2007-05-31 08:20:43 +0000 | [diff] [blame] | 74 | do_fuzzy_malloc_test fuzzy_malloc-2 -template {[Select]} |
| 75 | |
| 76 | set ::SQLPREP { |
| 77 | BEGIN; |
| 78 | CREATE TABLE abc(a, b, c); |
| 79 | CREATE TABLE def(a, b, c); |
| 80 | CREATE TABLE ghi(a, b, c); |
| 81 | INSERT INTO abc VALUES(1.5, 3, 'a short string'); |
| 82 | INSERT INTO def VALUES(NULL, X'ABCDEF', |
| 83 | 'a longer string. Long enough that it doesn''t fit in Mem.zShort'); |
| 84 | INSERT INTO ghi VALUES(zeroblob(1000), 'hello world', -1257900987654321); |
| 85 | COMMIT; |
| 86 | } |
| 87 | set ::TableList [list abc def ghi] |
| 88 | set ::ColumnList [list a b c] |
| 89 | |
| 90 | do_fuzzy_malloc_test fuzzy_malloc-3 \ |
| 91 | -template {[Select]} \ |
| 92 | -sqlprep $::SQLPREP |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 93 | |
danielk1977 | c9cf901 | 2007-05-30 10:36:47 +0000 | [diff] [blame] | 94 | finish_test |