sl@0
|
1 |
# 2007 April 24
|
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 SQLite treats a database
|
sl@0
|
14 |
# as readonly if its write version is set to high.
|
sl@0
|
15 |
#
|
sl@0
|
16 |
# $Id: rdonly.test,v 1.2 2008/07/08 10:19:58 danielk1977 Exp $
|
sl@0
|
17 |
|
sl@0
|
18 |
set testdir [file dirname $argv0]
|
sl@0
|
19 |
source $testdir/tester.tcl
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
# Create a database.
|
sl@0
|
23 |
#
|
sl@0
|
24 |
do_test rdonly-1.1 {
|
sl@0
|
25 |
execsql {
|
sl@0
|
26 |
CREATE TABLE t1(x);
|
sl@0
|
27 |
INSERT INTO t1 VALUES(1);
|
sl@0
|
28 |
SELECT * FROM t1;
|
sl@0
|
29 |
}
|
sl@0
|
30 |
} {1}
|
sl@0
|
31 |
|
sl@0
|
32 |
# Changes the write version from 1 to 2. Verify that the database
|
sl@0
|
33 |
# can be read but not written.
|
sl@0
|
34 |
#
|
sl@0
|
35 |
do_test rdonly-1.2 {
|
sl@0
|
36 |
db close
|
sl@0
|
37 |
hexio_get_int [hexio_read test.db 18 1]
|
sl@0
|
38 |
} 1
|
sl@0
|
39 |
do_test rdonly-1.3 {
|
sl@0
|
40 |
hexio_write test.db 18 02
|
sl@0
|
41 |
sqlite3 db test.db
|
sl@0
|
42 |
execsql {
|
sl@0
|
43 |
SELECT * FROM t1;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
} {1}
|
sl@0
|
46 |
do_test rdonly-1.4 {
|
sl@0
|
47 |
catchsql {
|
sl@0
|
48 |
INSERT INTO t1 VALUES(2)
|
sl@0
|
49 |
}
|
sl@0
|
50 |
} {1 {attempt to write a readonly database}}
|
sl@0
|
51 |
|
sl@0
|
52 |
# Change the write version back to 1. Verify that the database
|
sl@0
|
53 |
# is read-write again.
|
sl@0
|
54 |
#
|
sl@0
|
55 |
do_test rdonly-1.5 {
|
sl@0
|
56 |
db close
|
sl@0
|
57 |
hexio_write test.db 18 01
|
sl@0
|
58 |
sqlite3 db test.db
|
sl@0
|
59 |
catchsql {
|
sl@0
|
60 |
INSERT INTO t1 VALUES(2);
|
sl@0
|
61 |
SELECT * FROM t1;
|
sl@0
|
62 |
}
|
sl@0
|
63 |
} {0 {1 2}}
|
sl@0
|
64 |
|
sl@0
|
65 |
# Now, after connection [db] has loaded the database schema, modify the
|
sl@0
|
66 |
# write-version of the file (and the change-counter, so that the
|
sl@0
|
67 |
# write-version is reloaded). This way, SQLite does not discover that
|
sl@0
|
68 |
# the database is read-only until after it is locked.
|
sl@0
|
69 |
#
|
sl@0
|
70 |
do_test rdonly-1.6 {
|
sl@0
|
71 |
hexio_write test.db 18 02 ; # write-version
|
sl@0
|
72 |
hexio_write test.db 24 11223344 ; # change-counter
|
sl@0
|
73 |
catchsql {
|
sl@0
|
74 |
INSERT INTO t1 VALUES(2);
|
sl@0
|
75 |
}
|
sl@0
|
76 |
} {1 {attempt to write a readonly database}}
|
sl@0
|
77 |
|
sl@0
|
78 |
finish_test
|