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.
14 # $Id: lock5.test,v 1.3 2008/09/24 09:12:47 danielk1977 Exp $
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
19 # This file is only run if using the unix backend compiled with the
20 # SQLITE_ENABLE_LOCKING_STYLE macro.
22 if {[catch {sqlite3 db test.db -vfs unix-none} msg]} {
28 do_test lock5-dotfile.1 {
29 sqlite3 db test.db -vfs unix-dotfile
32 CREATE TABLE t1(a, b);
36 do_test lock5-dotfile.2 {
37 file exists test.db.lock
40 do_test lock5-dotfile.3 {
42 file exists test.db.lock
45 do_test lock5-dotfile.4 {
46 sqlite3 db2 test.db -vfs unix-dotfile
48 INSERT INTO t1 VALUES('a', 'b');
53 do_test lock5-dotfile.5 {
60 do_test lock5-dotfile.6 {
61 file exists test.db.lock
64 do_test lock5-dotfile.7 {
65 catchsql { SELECT * FROM t1; }
66 } {1 {database is locked}}
68 do_test lock5-dotfile.8 {
75 do_test lock5-dotfile.9 {
76 catchsql { SELECT * FROM t1; }
79 do_test lock5-dotfile.10 {
80 file exists test.db.lock
83 do_test lock5-dotfile.X {
85 execsql {BEGIN EXCLUSIVE}
87 file exists test.db.lock
90 #####################################################################
92 file delete -force test.db
94 do_test lock5-flock.1 {
95 sqlite3 db test.db -vfs unix-flock
97 CREATE TABLE t1(a, b);
99 INSERT INTO t1 VALUES(1, 2);
103 # Make sure we are not accidentally using the dotfile locking scheme.
104 do_test lock5-flock.2 {
105 file exists test.db.lock
108 do_test lock5-flock.3 {
109 sqlite3 db2 test.db -vfs unix-flock
110 catchsql { SELECT * FROM t1 } db2
111 } {1 {database is locked}}
113 do_test lock5-flock.4 {
115 catchsql { SELECT * FROM t1 } db2
118 do_test lock5-flock.5 {
120 catchsql { SELECT * FROM t1 } db2
123 do_test lock5-flock.6 {
124 execsql {SELECT * FROM t1}
125 catchsql { SELECT * FROM t1 } db2
126 } {1 {database is locked}}
128 do_test lock5-flock.7 {
130 catchsql { SELECT * FROM t1 } db2
133 do_test lock5-flock.8 {
137 #####################################################################
139 do_test lock5-none.1 {
140 sqlite3 db test.db -vfs unix-none
141 sqlite3 db2 test.db -vfs unix-none
144 INSERT INTO t1 VALUES(3, 4);
147 do_test lock5-none.2 {
148 execsql { SELECT * FROM t1 }
150 do_test lock5-flock.3 {
151 execsql { SELECT * FROM t1 } db2
153 do_test lock5-none.4 {
159 do_test lock5-none.5 {
161 execsql {SELECT * FROM t1} db2
164 ifcapable memorymanage {
165 do_test lock5-none.6 {
166 sqlite3_release_memory 1000000
167 execsql {SELECT * FROM t1} db2
171 do_test lock5-flock.X {