os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/mallocC.test
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
# 2007 Aug 13
sl@0
     2
#
sl@0
     3
# The author disclaims copyright to this source code.  In place of
sl@0
     4
# a legal notice, here is a blessing:
sl@0
     5
#
sl@0
     6
#    May you do good and not evil.
sl@0
     7
#    May you find forgiveness for yourself and forgive others.
sl@0
     8
#    May you share freely, never taking more than you give.
sl@0
     9
#
sl@0
    10
#***********************************************************************
sl@0
    11
# 
sl@0
    12
# This file tests aspects of the malloc failure while parsing
sl@0
    13
# CREATE TABLE statements in auto_vacuum mode.
sl@0
    14
#
sl@0
    15
# $Id: mallocC.test,v 1.9 2008/02/18 22:24:58 drh Exp $
sl@0
    16
sl@0
    17
set testdir [file dirname $argv0]
sl@0
    18
source $testdir/tester.tcl
sl@0
    19
source $testdir/malloc_common.tcl
sl@0
    20
sl@0
    21
# Only run these tests if memory debugging is turned on.
sl@0
    22
#
sl@0
    23
if {!$MEMDEBUG} {
sl@0
    24
   puts "Skipping mallocC tests: not compiled with -DSQLITE_MEMDEBUG..."
sl@0
    25
   finish_test
sl@0
    26
   return
sl@0
    27
}
sl@0
    28
sl@0
    29
proc do_mallocC_test {tn args} {
sl@0
    30
  array set ::mallocopts $args
sl@0
    31
  #set sum [allcksum db]
sl@0
    32
sl@0
    33
  for {set ::n 1} {true} {incr ::n} {
sl@0
    34
sl@0
    35
    # Run the SQL. Malloc number $::n is set to fail. A malloc() failure
sl@0
    36
    # may or may not be reported.
sl@0
    37
    sqlite3_memdebug_fail $::n -repeat 1
sl@0
    38
    do_test mallocC-$tn.$::n.1 {
sl@0
    39
      set res [catchsql [string trim $::mallocopts(-sql)]]
sl@0
    40
      set rc [expr { 
sl@0
    41
        0==[string compare $res {1 {out of memory}}] ||
sl@0
    42
        [db errorcode] == 3082 ||
sl@0
    43
        0==[lindex $res 0]
sl@0
    44
      }]
sl@0
    45
      if {$rc!=1} {
sl@0
    46
        puts "Error: $res"
sl@0
    47
      }
sl@0
    48
      set rc
sl@0
    49
    } {1}
sl@0
    50
sl@0
    51
    # If $::n is greater than the number of malloc() calls required to
sl@0
    52
    # execute the SQL, then this test is finished. Break out of the loop.
sl@0
    53
    set nFail [sqlite3_memdebug_fail -1]
sl@0
    54
    if {$nFail==0} {
sl@0
    55
      break
sl@0
    56
    }
sl@0
    57
sl@0
    58
    # Recover from the malloc failure.
sl@0
    59
    #
sl@0
    60
    # Update: The new malloc() failure handling means that a transaction may
sl@0
    61
    # still be active even if a malloc() has failed. But when these tests were
sl@0
    62
    # written this was not the case. So do a manual ROLLBACK here so that the
sl@0
    63
    # tests pass.
sl@0
    64
    do_test mallocC-$tn.$::n.2 {
sl@0
    65
      catch {
sl@0
    66
        execsql {
sl@0
    67
          ROLLBACK;
sl@0
    68
        }
sl@0
    69
      }
sl@0
    70
      expr 0
sl@0
    71
    } {0}
sl@0
    72
sl@0
    73
    # Checksum the database.
sl@0
    74
    #do_test mallocC-$tn.$::n.3 {
sl@0
    75
    #  allcksum db
sl@0
    76
    #} $sum
sl@0
    77
sl@0
    78
    #integrity_check mallocC-$tn.$::n.4
sl@0
    79
  if {$::nErr>1} return
sl@0
    80
  }
sl@0
    81
  unset ::mallocopts
sl@0
    82
}
sl@0
    83
sl@0
    84
sqlite3_extended_result_codes db 1
sl@0
    85
sl@0
    86
execsql {
sl@0
    87
  PRAGMA auto_vacuum=1;
sl@0
    88
  CREATE TABLE t0(a, b, c);
sl@0
    89
}
sl@0
    90
do_mallocC_test 1 -sql {
sl@0
    91
  BEGIN;
sl@0
    92
  -- Allocate 32 new root pages. This will exercise the 'extract specific 
sl@0
    93
  -- page from the freelist' code when in auto-vacuum mode (see the
sl@0
    94
  -- allocatePage() routine in btree.c).
sl@0
    95
  CREATE TABLE t1(a UNIQUE, b UNIQUE, c UNIQUE);
sl@0
    96
  CREATE TABLE t2(a UNIQUE, b UNIQUE, c UNIQUE);
sl@0
    97
  CREATE TABLE t3(a UNIQUE, b UNIQUE, c UNIQUE);
sl@0
    98
  CREATE TABLE t4(a UNIQUE, b UNIQUE, c UNIQUE);
sl@0
    99
  CREATE TABLE t5(a UNIQUE, b UNIQUE, c UNIQUE);
sl@0
   100
  CREATE TABLE t6(a UNIQUE, b UNIQUE, c UNIQUE);
sl@0
   101
  CREATE TABLE t7(a UNIQUE, b UNIQUE, c UNIQUE);
sl@0
   102
  CREATE TABLE t8(a UNIQUE, b UNIQUE, c UNIQUE);
sl@0
   103
sl@0
   104
  ROLLBACK;
sl@0
   105
}
sl@0
   106
sl@0
   107
finish_test