blob: 30cdc50aee27d282911f525e824cc01d05ad6dc7 [file] [log] [blame]
danielk1977c9cf9012007-05-30 10:36:47 +00001#
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#
drh44548ec2007-06-18 12:22:43 +000015# $Id: fuzz_malloc.test,v 1.5 2007/06/18 12:22:43 drh Exp $
danielk1977c9cf9012007-05-30 10:36:47 +000016
17set testdir [file dirname $argv0]
18source $testdir/tester.tcl
drh9142a832007-06-15 13:57:19 +000019
20# Only run these tests if memory debugging is turned on.
21#
22if {[info command sqlite_malloc_stat]==""} {
23 puts "Skipping fuzz_malloc tests: not compiled with -DSQLITE_MEMDEBUG=1"
24 finish_test
25 return
26}
27
danielk1977c9cf9012007-05-30 10:36:47 +000028source $testdir/fuzz_common.tcl
29source $testdir/malloc_common.tcl
30
drh44548ec2007-06-18 12:22:43 +000031if {[info exists ISQUICK]} {
32 set ::REPEATS 20
33} elseif {[info exists SOAKTEST]} {
34 set ::REPEATS 100
35} else {
36 set ::REPEATS 40
37}
danielk1977c9cf9012007-05-30 10:36:47 +000038
39#
40# Usage: do_fuzzy_malloc_test <testname> ?<options>?
41#
42# -template
danielk19779afe6892007-05-31 08:20:43 +000043# -sqlprep
danielk1977c9cf9012007-05-30 10:36:47 +000044# -repeats
45#
46proc do_fuzzy_malloc_test {testname args} {
47 set ::fuzzyopts(-repeats) $::REPEATS
danielk19779afe6892007-05-31 08:20:43 +000048 set ::fuzzyopts(-sqlprep) {}
danielk1977c9cf9012007-05-30 10:36:47 +000049 array set ::fuzzyopts $args
50
danielk19779afe6892007-05-31 08:20:43 +000051 sqlite_malloc_fail 0
52 db close
53 file delete test.db test.db-journal
54 sqlite3 db test.db
55 set ::prep $::fuzzyopts(-sqlprep)
56 execsql $::prep
drh43b78822007-06-15 17:03:14 +000057 set jj 0
danielk1977c9cf9012007-05-30 10:36:47 +000058 for {set ii 0} {$ii < $::fuzzyopts(-repeats)} {incr ii} {
drh43b78822007-06-15 17:03:14 +000059 expr srand($jj)
60 incr jj
danielk1977c9cf9012007-05-30 10:36:47 +000061 set ::sql [subst $::fuzzyopts(-template)]
danielk19779afe6892007-05-31 08:20:43 +000062 foreach {rc res} [catchsql "$::sql"] {}
danielk1977c9cf9012007-05-30 10:36:47 +000063 if {$rc==0} {
danielk19779afe6892007-05-31 08:20:43 +000064 do_malloc_test $testname-$ii -sqlbody $::sql -sqlprep $::prep
danielk1977c9cf9012007-05-30 10:36:47 +000065 } else {
66 incr ii -1
67 }
68 }
69}
70
71#----------------------------------------------------------------
72# Test malloc failure during parsing (and execution) of a fuzzily
73# generated expressions.
74#
75do_fuzzy_malloc_test fuzzy_malloc-1 -template {Select [Expr]}
danielk19779afe6892007-05-31 08:20:43 +000076do_fuzzy_malloc_test fuzzy_malloc-2 -template {[Select]}
77
78set ::SQLPREP {
79 BEGIN;
80 CREATE TABLE abc(a, b, c);
81 CREATE TABLE def(a, b, c);
82 CREATE TABLE ghi(a, b, c);
83 INSERT INTO abc VALUES(1.5, 3, 'a short string');
84 INSERT INTO def VALUES(NULL, X'ABCDEF',
85 'a longer string. Long enough that it doesn''t fit in Mem.zShort');
86 INSERT INTO ghi VALUES(zeroblob(1000), 'hello world', -1257900987654321);
87 COMMIT;
88}
89set ::TableList [list abc def ghi]
90set ::ColumnList [list a b c]
91
92do_fuzzy_malloc_test fuzzy_malloc-3 \
93 -template {[Select]} \
94 -sqlprep $::SQLPREP
danielk1977c9cf9012007-05-30 10:36:47 +000095
96sqlite_malloc_fail 0
97finish_test