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. The
12 # focus of this script is database locks between competing processes.
14 # $Id: lock2.test,v 1.9 2007/12/13 21:54:11 drh Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
20 # Launch another testfixture process to be controlled by this one. A
21 # channel name is returned that may be passed as the first argument to proc
22 # 'testfixture' to execute a command. The child testfixture process is shut
23 # down by closing the channel.
24 proc launch_testfixture {} {
25 set prg [info nameofexec]
27 set prg [file join . testfixture]
29 set chan [open "|$prg tf_main.tcl" r+]
30 fconfigure $chan -buffering line
34 # Execute a command in a child testfixture process, connected by two-way
35 # channel $chan. Return the result of the command, or an error message.
36 proc testfixture {chan cmd} {
42 if { $line == "OVER" } {
49 # Write the main loop for the child testfixture processes into file
50 # tf_main.tcl. The parent (this script) interacts with the child processes
51 # via a two way pipe. The parent writes a script to the stdin of the child
52 # process, followed by the word "OVER" on a line of its own. The child
53 # process evaluates the script and writes the results to stdout, followed
54 # by an "OVER" of its own.
55 set f [open tf_main.tcl w]
59 while {![eof stdin]} {
63 if { $line == "OVER" } {
64 catch {eval $script} result
66 puts $l "WRITE $result"
80 # Simple locking test case:
82 # lock2-1.1: Connect a second process to the database.
83 # lock2-1.2: Establish a RESERVED lock with this process.
84 # lock2-1.3: Get a SHARED lock with the second process.
85 # lock2-1.4: Try for a RESERVED lock with process 2. This fails.
86 # lock2-1.5: Try to upgrade the first process to EXCLUSIVE, this fails so
88 # lock2-1.6: Release the SHARED lock held by the second process.
89 # lock2-1.7: Attempt to reaquire a SHARED lock with the second process.
90 # this fails due to the PENDING lock.
91 # lock2-1.8: Ensure the first process can now upgrade to EXCLUSIVE.
94 set ::tf1 [launch_testfixture]
95 testfixture $::tf1 "set sqlite_pending_byte $::sqlite_pending_byte"
97 sqlite3 db test.db -key xyzzy
98 db eval {select * from sqlite_master}
101 do_test lock2-1.1.1 {
102 execsql {pragma lock_status}
103 } {main unlocked temp closed}
104 sqlite3_soft_heap_limit 0
108 CREATE TABLE abc(a, b, c);
115 SELECT * FROM sqlite_master;
122 CREATE TABLE def(d, e, f)
125 } {database is locked}
130 } {1 {database is locked}}
134 SELECT * FROM sqlite_master;
143 SELECT * FROM sqlite_master;
146 } {database is locked}
154 SELECT * FROM sqlite_master;
156 } "table abc abc [expr $AUTOVACUUM?3:2] {CREATE TABLE abc(a, b, c)}"
160 SELECT * FROM sqlite_master;
163 } "table abc abc [expr $AUTOVACUUM?3:2] {CREATE TABLE abc(a, b, c)}"
165 catch {testfixture $::tf1 {db close}}
167 sqlite3_soft_heap_limit $soft_limit