First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
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.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library.
13 # This file implements tests to make sure SQLite treats a database
14 # as readonly if its write version is set to high.
16 # $Id: rdonly.test,v 1.2 2008/07/08 10:19:58 danielk1977 Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
27 INSERT INTO t1 VALUES(1);
32 # Changes the write version from 1 to 2. Verify that the database
33 # can be read but not written.
37 hexio_get_int [hexio_read test.db 18 1]
40 hexio_write test.db 18 02
48 INSERT INTO t1 VALUES(2)
50 } {1 {attempt to write a readonly database}}
52 # Change the write version back to 1. Verify that the database
53 # is read-write again.
57 hexio_write test.db 18 01
60 INSERT INTO t1 VALUES(2);
65 # Now, after connection [db] has loaded the database schema, modify the
66 # write-version of the file (and the change-counter, so that the
67 # write-version is reloaded). This way, SQLite does not discover that
68 # the database is read-only until after it is locked.
71 hexio_write test.db 18 02 ; # write-version
72 hexio_write test.db 24 11223344 ; # change-counter
74 INSERT INTO t1 VALUES(2);
76 } {1 {attempt to write a readonly database}}