drh | 85c23c6 | 2005-08-20 03:03:04 +0000 | [diff] [blame] | 1 | # 2005 September 19 |
| 2 | # |
| 3 | # The author disclaims copyright to this source code. In place of |
| 4 | # a legal notice, here is a blessing: |
| 5 | # |
| 6 | # May you do good and not evil. |
| 7 | # May you find forgiveness for yourself and forgive others. |
| 8 | # May you share freely, never taking more than you give. |
| 9 | # |
| 10 | #************************************************************************* |
| 11 | # This file implements regression tests for SQLite library. The |
| 12 | # focus of this script is testing the ATTACH statement and |
| 13 | # specifically out-of-memory conditions within that command. |
| 14 | # |
danielk1977 | d207d80 | 2008-10-22 10:45:37 +0000 | [diff] [blame] | 15 | # $Id: attachmalloc.test,v 1.10 2008/10/22 10:45:38 danielk1977 Exp $ |
drh | 85c23c6 | 2005-08-20 03:03:04 +0000 | [diff] [blame] | 16 | # |
| 17 | |
| 18 | set testdir [file dirname $argv0] |
| 19 | source $testdir/tester.tcl |
| 20 | |
danielk1977 | 5a8f937 | 2007-10-09 08:29:32 +0000 | [diff] [blame] | 21 | ifcapable !memdebug||!attach { |
drh | da57895 | 2007-08-27 23:48:23 +0000 | [diff] [blame] | 22 | finish_test |
| 23 | return |
| 24 | } |
| 25 | |
danielk1977 | 222a757 | 2007-08-25 13:37:48 +0000 | [diff] [blame] | 26 | source $testdir/malloc_common.tcl |
drh | 85c23c6 | 2005-08-20 03:03:04 +0000 | [diff] [blame] | 27 | |
| 28 | do_malloc_test attachmalloc-1 -tclprep { |
shaneh | f922d71 | 2010-11-04 20:46:09 +0000 | [diff] [blame] | 29 | catch { db close } |
drh | 85c23c6 | 2005-08-20 03:03:04 +0000 | [diff] [blame] | 30 | for {set i 2} {$i<=4} {incr i} { |
shaneh | f922d71 | 2010-11-04 20:46:09 +0000 | [diff] [blame] | 31 | catch { db$i close } |
mistachkin | fda06be | 2011-08-02 00:57:34 +0000 | [diff] [blame^] | 32 | forcedelete test$i.db |
| 33 | forcedelete test$i.db-journal |
drh | 85c23c6 | 2005-08-20 03:03:04 +0000 | [diff] [blame] | 34 | } |
| 35 | } -tclbody { |
| 36 | if {[catch {sqlite3 db test.db}]} { |
| 37 | error "out of memory" |
| 38 | } |
drh | e9d1c72 | 2008-08-04 20:13:26 +0000 | [diff] [blame] | 39 | sqlite3_db_config_lookaside db 0 0 0 |
danielk1977 | ae72d98 | 2007-10-03 08:46:44 +0000 | [diff] [blame] | 40 | sqlite3_extended_result_codes db 1 |
drh | 85c23c6 | 2005-08-20 03:03:04 +0000 | [diff] [blame] | 41 | } -sqlbody { |
| 42 | ATTACH 'test2.db' AS two; |
| 43 | CREATE TABLE two.t1(x); |
| 44 | ATTACH 'test3.db' AS three; |
| 45 | CREATE TABLE three.t1(x); |
| 46 | ATTACH 'test4.db' AS four; |
| 47 | CREATE TABLE four.t1(x); |
| 48 | } |
| 49 | |
danielk1977 | d207d80 | 2008-10-22 10:45:37 +0000 | [diff] [blame] | 50 | do_malloc_test attachmalloc-2 -tclprep { |
mistachkin | fda06be | 2011-08-02 00:57:34 +0000 | [diff] [blame^] | 51 | forcedelete test2.db |
| 52 | forcedelete test2.db-journal |
danielk1977 | d207d80 | 2008-10-22 10:45:37 +0000 | [diff] [blame] | 53 | sqlite3 db2 test2.db |
| 54 | db2 eval { |
| 55 | CREATE TABLE t1(a, b, c); |
| 56 | CREATE INDEX i1 ON t1(a, b); |
| 57 | } |
| 58 | db2 close |
| 59 | } -sqlbody { |
| 60 | CREATE TABLE t1(d, e, f); |
| 61 | ATTACH 'test2.db' AS db1; |
| 62 | } |
| 63 | |
dan | 39547b4 | 2010-02-23 11:05:26 +0000 | [diff] [blame] | 64 | set enable_shared_cache [sqlite3_enable_shared_cache 1] |
shaneh | f922d71 | 2010-11-04 20:46:09 +0000 | [diff] [blame] | 65 | sqlite3 dbaux test3.db |
dan | 39547b4 | 2010-02-23 11:05:26 +0000 | [diff] [blame] | 66 | dbaux eval {SELECT * FROM sqlite_master} |
| 67 | do_malloc_test attachmalloc-3 -sqlbody { |
| 68 | SELECT * FROM sqlite_master; |
shaneh | f922d71 | 2010-11-04 20:46:09 +0000 | [diff] [blame] | 69 | ATTACH 'test3.db' AS three; |
dan | 39547b4 | 2010-02-23 11:05:26 +0000 | [diff] [blame] | 70 | } -cleanup { |
shaneh | f922d71 | 2010-11-04 20:46:09 +0000 | [diff] [blame] | 71 | db eval { DETACH three } |
dan | 39547b4 | 2010-02-23 11:05:26 +0000 | [diff] [blame] | 72 | } |
| 73 | dbaux close |
| 74 | sqlite3_enable_shared_cache $enable_shared_cache |
| 75 | |
| 76 | |
drh | 85c23c6 | 2005-08-20 03:03:04 +0000 | [diff] [blame] | 77 | finish_test |