blob: 53486cdbe0ee8bf362c7ae0f143da3d8153c7f34 [file] [log] [blame]
danielk197704103022009-02-03 16:51:24 +00001# 2008 January 30
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 file is testing the handling of OOM errors by the
13# sqlite3_backup_XXX APIs.
14#
15# $Id: backup_malloc.test,v 1.1 2009/02/03 16:51:25 danielk1977 Exp $
16
17set testdir [file dirname $argv0]
18source $testdir/tester.tcl
19
20source $testdir/malloc_common.tcl
21
22do_malloc_test backup_malloc-1 -tclprep {
23 execsql {
24 PRAGMA cache_size = 10;
25 BEGIN;
26 CREATE TABLE t1(a, b);
27 INSERT INTO t1 VALUES(1, randstr(1000,1000));
28 INSERT INTO t1 SELECT a+ 1, randstr(1000,1000) FROM t1;
29 INSERT INTO t1 SELECT a+ 2, randstr(1000,1000) FROM t1;
30 INSERT INTO t1 SELECT a+ 4, randstr(1000,1000) FROM t1;
31 INSERT INTO t1 SELECT a+ 8, randstr(1000,1000) FROM t1;
32 INSERT INTO t1 SELECT a+16, randstr(1000,1000) FROM t1;
33 INSERT INTO t1 SELECT a+32, randstr(1000,1000) FROM t1;
34 INSERT INTO t1 SELECT a+64, randstr(1000,1000) FROM t1;
35 CREATE INDEX i1 ON t1(b);
36 COMMIT;
37 }
38 sqlite3 db2 test2.db
39 execsql { PRAGMA cache_size = 10 } db2
40} -tclbody {
41
42 # Create a backup object.
43 #
44 set rc [catch {sqlite3_backup B db2 main db main}]
45 if {$rc && [sqlite3_errcode db2] == "SQLITE_NOMEM"} {
46 error "out of memory"
47 }
48
49 # Run the backup process some.
50 #
51 set rc [B step 50]
52 if {$rc == "SQLITE_NOMEM" || $rc == "SQLITE_IOERR_NOMEM"} {
53 error "out of memory"
54 }
55
56 # Update the database.
57 #
58 execsql { UPDATE t1 SET a = a + 1 }
59
60 # Finish doing the backup.
61 #
62 set rc [B step 5000]
63 if {$rc == "SQLITE_NOMEM" || $rc == "SQLITE_IOERR_NOMEM"} {
64 error "out of memory"
65 }
66
67 # Finalize the backup.
68 B finish
69} -cleanup {
70 catch { B finish }
71}
72
73do_malloc_test backup_malloc-1 -tclprep {
74 sqlite3 db2 test2.db
75} -tclbody {
76 set rc [catch {sqlite3_backup B db2 temp db main}]
77 set errcode [sqlite3_errcode db2]
78 if {$rc && ($errcode == "SQLITE_NOMEM" || $errcode == "SQLITE_IOERR_NOMEM")} {
79 error "out of memory"
80 }
81} -cleanup {
82 catch { B finish }
83 db2 close
84}
85
86finish_test