sl@0
|
1 |
# 2008 April 14
|
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.
|
sl@0
|
12 |
# The focus of this file is in making sure that rolling back
|
sl@0
|
13 |
# a statement journal works correctly.
|
sl@0
|
14 |
#
|
sl@0
|
15 |
# $Id: tempdb.test,v 1.1 2008/04/15 00:02:00 drh Exp $
|
sl@0
|
16 |
|
sl@0
|
17 |
set testdir [file dirname $argv0]
|
sl@0
|
18 |
source $testdir/tester.tcl
|
sl@0
|
19 |
|
sl@0
|
20 |
# Use a temporary database.
|
sl@0
|
21 |
#
|
sl@0
|
22 |
db close
|
sl@0
|
23 |
sqlite3 db {}
|
sl@0
|
24 |
|
sl@0
|
25 |
# Force a statement journal rollback on a database file that
|
sl@0
|
26 |
# has never been opened.
|
sl@0
|
27 |
#
|
sl@0
|
28 |
do_test tempdb-1.1 {
|
sl@0
|
29 |
execsql {
|
sl@0
|
30 |
BEGIN;
|
sl@0
|
31 |
CREATE TABLE t1(x UNIQUE);
|
sl@0
|
32 |
CREATE TABLE t2(y);
|
sl@0
|
33 |
INSERT INTO t2 VALUES('hello');
|
sl@0
|
34 |
INSERT INTO t2 VALUES(NULL);
|
sl@0
|
35 |
}
|
sl@0
|
36 |
# Because of the transaction, the temporary database file
|
sl@0
|
37 |
# has not even been opened yet. The following statement
|
sl@0
|
38 |
# will cause a statement journal rollback on this non-existant
|
sl@0
|
39 |
# file.
|
sl@0
|
40 |
catchsql {
|
sl@0
|
41 |
INSERT INTO t1
|
sl@0
|
42 |
SELECT CASE WHEN y IS NULL THEN test_error('oops', 11) ELSE y END
|
sl@0
|
43 |
FROM t2;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
} {1 oops}
|
sl@0
|
46 |
|
sl@0
|
47 |
# Verify that no writes occurred in t1.
|
sl@0
|
48 |
#
|
sl@0
|
49 |
do_test tempdb-1.2 {
|
sl@0
|
50 |
execsql {
|
sl@0
|
51 |
SELECT * FROM t1
|
sl@0
|
52 |
}
|
sl@0
|
53 |
} {}
|
sl@0
|
54 |
|
sl@0
|
55 |
finish_test
|