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. The
12 # focus of this script is database locks.
14 # $Id: lock4.test,v 1.10 2009/05/06 00:52:41 drh Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
20 if {[atomic_batch_write test.db]} {
21 # This test uses two processes, one of which blocks until the other
22 # creates a *-journal file. Which doesn't work if atomic writes are
30 # Initialize the test.db database so that it is non-empty
34 PRAGMA auto_vacuum=OFF;
37 forcedelete test2.db test2.db-journal
40 PRAGMA auto_vacuum=OFF;
44 list [file size test.db] [file size test2.db]
47 # Create a script to drive a separate process that will
49 # 1. Create a second database test2.db
50 # 2. Get an exclusive lock on test2.db
51 # 3. Add an entry to test.db in table t1, waiting as necessary.
52 # 4. Commit the change to test2.db.
54 # Meanwhile, this process will:
56 # A. Get an exclusive lock on test.db
57 # B. Attempt to read from test2.db but get an SQLITE_BUSY error.
58 # C. Commit the changes to test.db thus alloing the other process
63 # Create a script for the second process to run.
65 set out [open test2-script.tcl w]
66 puts $out "sqlite3_test_control_pending_byte [set sqlite_pending_byte]"
71 INSERT INTO t2 VALUES(2);
76 INSERT INTO t1 VALUES(2);
84 # Begin a transaction on test.db.
87 INSERT INTO t1 VALUES(1);
90 # Kick off the second process.
91 exec [info nameofexec] ./test2-script.tcl &
93 # Wait until the second process has started its transaction on test2.db.
94 while {![file exists test2.db-journal]} {
98 # Try to write to test2.db. We are locked out.
101 INSERT INTO t2 VALUES(1)
103 } {1 {database is locked}}
108 while {[file exists test2.db-journal]} {
111 # The other process has committed its transaction on test2.db by
112 # deleting the journal file. But it might retain the lock for a
122 do_test lock4-999.1 {