blob: 2d78807cc0de15ae16e864fb357343ba93d42a06 [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#
drh47538892007-09-03 15:42:47 +000015# $Id: fuzz_malloc.test,v 1.9 2007/09/03 15:42:48 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
drh47538892007-09-03 15:42:47 +000020ifcapable !memdebug {
21 finish_test
22 return
23}
24
danielk1977c9cf9012007-05-30 10:36:47 +000025source $testdir/malloc_common.tcl
danielk1977222a7572007-08-25 13:37:48 +000026source $testdir/fuzz_common.tcl
danielk1977c9cf9012007-05-30 10:36:47 +000027
drh44548ec2007-06-18 12:22:43 +000028if {[info exists ISQUICK]} {
29 set ::REPEATS 20
30} elseif {[info exists SOAKTEST]} {
31 set ::REPEATS 100
32} else {
33 set ::REPEATS 40
34}
danielk1977c9cf9012007-05-30 10:36:47 +000035
36#
37# Usage: do_fuzzy_malloc_test <testname> ?<options>?
38#
39# -template
danielk19779afe6892007-05-31 08:20:43 +000040# -sqlprep
danielk1977c9cf9012007-05-30 10:36:47 +000041# -repeats
42#
43proc do_fuzzy_malloc_test {testname args} {
44 set ::fuzzyopts(-repeats) $::REPEATS
danielk19779afe6892007-05-31 08:20:43 +000045 set ::fuzzyopts(-sqlprep) {}
danielk1977c9cf9012007-05-30 10:36:47 +000046 array set ::fuzzyopts $args
47
danielk197777519402007-08-30 11:48:31 +000048 sqlite3_memdebug_fail -1
danielk19779afe6892007-05-31 08:20:43 +000049 db close
50 file delete test.db test.db-journal
51 sqlite3 db test.db
52 set ::prep $::fuzzyopts(-sqlprep)
53 execsql $::prep
drh43b78822007-06-15 17:03:14 +000054 set jj 0
danielk1977c9cf9012007-05-30 10:36:47 +000055 for {set ii 0} {$ii < $::fuzzyopts(-repeats)} {incr ii} {
drh43b78822007-06-15 17:03:14 +000056 expr srand($jj)
57 incr jj
danielk1977c9cf9012007-05-30 10:36:47 +000058 set ::sql [subst $::fuzzyopts(-template)]
danielk19779afe6892007-05-31 08:20:43 +000059 foreach {rc res} [catchsql "$::sql"] {}
danielk1977c9cf9012007-05-30 10:36:47 +000060 if {$rc==0} {
danielk19779afe6892007-05-31 08:20:43 +000061 do_malloc_test $testname-$ii -sqlbody $::sql -sqlprep $::prep
danielk1977c9cf9012007-05-30 10:36:47 +000062 } else {
63 incr ii -1
64 }
65 }
66}
67
68#----------------------------------------------------------------
69# Test malloc failure during parsing (and execution) of a fuzzily
70# generated expressions.
71#
72do_fuzzy_malloc_test fuzzy_malloc-1 -template {Select [Expr]}
danielk19779afe6892007-05-31 08:20:43 +000073do_fuzzy_malloc_test fuzzy_malloc-2 -template {[Select]}
74
75set ::SQLPREP {
76 BEGIN;
77 CREATE TABLE abc(a, b, c);
78 CREATE TABLE def(a, b, c);
79 CREATE TABLE ghi(a, b, c);
80 INSERT INTO abc VALUES(1.5, 3, 'a short string');
81 INSERT INTO def VALUES(NULL, X'ABCDEF',
82 'a longer string. Long enough that it doesn''t fit in Mem.zShort');
83 INSERT INTO ghi VALUES(zeroblob(1000), 'hello world', -1257900987654321);
84 COMMIT;
85}
86set ::TableList [list abc def ghi]
87set ::ColumnList [list a b c]
88
89do_fuzzy_malloc_test fuzzy_malloc-3 \
90 -template {[Select]} \
91 -sqlprep $::SQLPREP
danielk1977c9cf9012007-05-30 10:36:47 +000092
danielk1977c9cf9012007-05-30 10:36:47 +000093finish_test