sl@0
|
1 |
# 2005 March 15
|
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 |
#
|
sl@0
|
13 |
# This file implements tests to make sure that leftover journals from
|
sl@0
|
14 |
# prior databases do not try to rollback into new databases.
|
sl@0
|
15 |
#
|
sl@0
|
16 |
# $Id: journal1.test,v 1.2 2005/03/20 22:54:56 drh Exp $
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
set testdir [file dirname $argv0]
|
sl@0
|
20 |
source $testdir/tester.tcl
|
sl@0
|
21 |
|
sl@0
|
22 |
# These tests will not work on windows because windows uses
|
sl@0
|
23 |
# manditory file locking which breaks the file copy command.
|
sl@0
|
24 |
#
|
sl@0
|
25 |
if {$tcl_platform(platform)=="windows"} {
|
sl@0
|
26 |
finish_test
|
sl@0
|
27 |
return
|
sl@0
|
28 |
}
|
sl@0
|
29 |
|
sl@0
|
30 |
# Create a smaple database
|
sl@0
|
31 |
#
|
sl@0
|
32 |
do_test journal1-1.1 {
|
sl@0
|
33 |
execsql {
|
sl@0
|
34 |
CREATE TABLE t1(a,b);
|
sl@0
|
35 |
INSERT INTO t1 VALUES(1,randstr(10,400));
|
sl@0
|
36 |
INSERT INTO t1 VALUES(2,randstr(10,400));
|
sl@0
|
37 |
INSERT INTO t1 SELECT a+2, a||b FROM t1;
|
sl@0
|
38 |
INSERT INTO t1 SELECT a+4, a||b FROM t1;
|
sl@0
|
39 |
SELECT count(*) FROM t1;
|
sl@0
|
40 |
}
|
sl@0
|
41 |
} 8
|
sl@0
|
42 |
|
sl@0
|
43 |
# Make changes to the database and save the journal file.
|
sl@0
|
44 |
# Then delete the database. Replace the the journal file
|
sl@0
|
45 |
# and try to create a new database with the same name. The
|
sl@0
|
46 |
# old journal should not attempt to rollback into the new
|
sl@0
|
47 |
# database.
|
sl@0
|
48 |
#
|
sl@0
|
49 |
do_test journal1-1.2 {
|
sl@0
|
50 |
execsql {
|
sl@0
|
51 |
BEGIN;
|
sl@0
|
52 |
DELETE FROM t1;
|
sl@0
|
53 |
}
|
sl@0
|
54 |
file copy -force test.db-journal test.db-journal-bu
|
sl@0
|
55 |
execsql {
|
sl@0
|
56 |
ROLLBACK;
|
sl@0
|
57 |
}
|
sl@0
|
58 |
db close
|
sl@0
|
59 |
file delete test.db
|
sl@0
|
60 |
file copy test.db-journal-bu test.db-journal
|
sl@0
|
61 |
sqlite3 db test.db
|
sl@0
|
62 |
catchsql {
|
sl@0
|
63 |
SELECT * FROM sqlite_master
|
sl@0
|
64 |
}
|
sl@0
|
65 |
} {0 {}}
|
sl@0
|
66 |
|
sl@0
|
67 |
finish_test
|