os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/altermalloc.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
# 2005 September 19
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
# This file implements regression tests for SQLite library.  The
sl@0
    12
# focus of this script is testing the ALTER TABLE statement and
sl@0
    13
# specifically out-of-memory conditions within that command.
sl@0
    14
#
sl@0
    15
# $Id: altermalloc.test,v 1.9 2008/08/04 20:13:27 drh Exp $
sl@0
    16
#
sl@0
    17
sl@0
    18
set testdir [file dirname $argv0]
sl@0
    19
source $testdir/tester.tcl
sl@0
    20
sl@0
    21
# If SQLITE_OMIT_ALTERTABLE is defined, omit this file.
sl@0
    22
ifcapable !altertable||!memdebug {
sl@0
    23
  finish_test
sl@0
    24
  return
sl@0
    25
}
sl@0
    26
sl@0
    27
source $testdir/malloc_common.tcl
sl@0
    28
sl@0
    29
do_malloc_test altermalloc-1 -tclprep {
sl@0
    30
  db close
sl@0
    31
} -tclbody {
sl@0
    32
  if {[catch {sqlite3 db test.db}]} {
sl@0
    33
    error "out of memory"
sl@0
    34
  }
sl@0
    35
  sqlite3_db_config_lookaside db 0 0 0
sl@0
    36
  sqlite3_extended_result_codes db 1
sl@0
    37
} -sqlbody {
sl@0
    38
  CREATE TABLE t1(a int);
sl@0
    39
  ALTER TABLE t1 ADD COLUMN b INTEGER DEFAULT NULL;
sl@0
    40
  ALTER TABLE t1 ADD COLUMN c TEXT DEFAULT 'default-text';
sl@0
    41
  ALTER TABLE t1 RENAME TO t2;
sl@0
    42
}
sl@0
    43
sl@0
    44
# Test malloc() failure on an ALTER TABLE on a virtual table.
sl@0
    45
#
sl@0
    46
ifcapable vtab {
sl@0
    47
  do_malloc_test altermalloc-vtab -tclprep {
sl@0
    48
    sqlite3 db2 test.db 
sl@0
    49
    sqlite3_db_config_lookaside db2 0 0 0
sl@0
    50
    sqlite3_extended_result_codes db2 1
sl@0
    51
    register_echo_module [sqlite3_connection_pointer db2]
sl@0
    52
    db2 eval {
sl@0
    53
      CREATE TABLE t1(a, b VARCHAR, c INTEGER);
sl@0
    54
      CREATE VIRTUAL TABLE t1echo USING echo(t1);
sl@0
    55
    }
sl@0
    56
    db2 close
sl@0
    57
sl@0
    58
    register_echo_module [sqlite3_connection_pointer db]
sl@0
    59
  } -tclbody {
sl@0
    60
    set rc [catch {db eval { ALTER TABLE t1echo RENAME TO t1_echo }} msg]
sl@0
    61
    if {$msg eq "vtable constructor failed: t1echo"} {
sl@0
    62
      set msg "out of memory"
sl@0
    63
    }
sl@0
    64
    if {$rc} {
sl@0
    65
      error $msg
sl@0
    66
    }
sl@0
    67
  }
sl@0
    68
}
sl@0
    69
sl@0
    70
finish_test