author | sl@SLION-WIN7.fritz.box |
Fri, 15 Jun 2012 03:10:57 +0200 | |
changeset 0 | bde4ae8d615e |
permissions | -rw-r--r-- |
sl@0 | 1 |
# 2007 April 6 |
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. The |
sl@0 | 12 |
# focus of this script is database locks. |
sl@0 | 13 |
# |
sl@0 | 14 |
# $Id: lock4.test,v 1.8 2008/03/14 08:57:42 danielk1977 Exp $ |
sl@0 | 15 |
|
sl@0 | 16 |
|
sl@0 | 17 |
set testdir [file dirname $argv0] |
sl@0 | 18 |
source $testdir/tester.tcl |
sl@0 | 19 |
|
sl@0 | 20 |
# Initialize the test.db database so that it is non-empty |
sl@0 | 21 |
# |
sl@0 | 22 |
do_test lock4-1.1 { |
sl@0 | 23 |
db eval { |
sl@0 | 24 |
PRAGMA auto_vacuum=OFF; |
sl@0 | 25 |
CREATE TABLE t1(x); |
sl@0 | 26 |
} |
sl@0 | 27 |
file delete -force test2.db test2.db-journal |
sl@0 | 28 |
sqlite3 db2 test2.db |
sl@0 | 29 |
db2 eval { |
sl@0 | 30 |
PRAGMA auto_vacuum=OFF; |
sl@0 | 31 |
CREATE TABLE t2(x) |
sl@0 | 32 |
} |
sl@0 | 33 |
db2 close |
sl@0 | 34 |
list [file size test.db] [file size test2.db] |
sl@0 | 35 |
} {2048 2048} |
sl@0 | 36 |
|
sl@0 | 37 |
# Create a script to drive a separate process that will |
sl@0 | 38 |
# |
sl@0 | 39 |
# 1. Create a second database test2.db |
sl@0 | 40 |
# 2. Get an exclusive lock on test2.db |
sl@0 | 41 |
# 3. Add an entry to test.db in table t1, waiting as necessary. |
sl@0 | 42 |
# 4. Commit the change to test2.db. |
sl@0 | 43 |
# |
sl@0 | 44 |
# Meanwhile, this process will: |
sl@0 | 45 |
# |
sl@0 | 46 |
# A. Get an exclusive lock on test.db |
sl@0 | 47 |
# B. Attempt to read from test2.db but get an SQLITE_BUSY error. |
sl@0 | 48 |
# C. Commit the changes to test.db thus alloing the other process |
sl@0 | 49 |
# to continue. |
sl@0 | 50 |
# |
sl@0 | 51 |
do_test lock4-1.2 { |
sl@0 | 52 |
|
sl@0 | 53 |
# Create a script for the second process to run. |
sl@0 | 54 |
# |
sl@0 | 55 |
set out [open test2-script.tcl w] |
sl@0 | 56 |
puts $out "set sqlite_pending_byte [set sqlite_pending_byte]" |
sl@0 | 57 |
puts $out { |
sl@0 | 58 |
sqlite3 db2 test2.db |
sl@0 | 59 |
db2 eval { |
sl@0 | 60 |
BEGIN; |
sl@0 | 61 |
INSERT INTO t2 VALUES(2); |
sl@0 | 62 |
} |
sl@0 | 63 |
sqlite3 db test.db |
sl@0 | 64 |
db timeout 1000000 |
sl@0 | 65 |
db eval { |
sl@0 | 66 |
INSERT INTO t1 VALUES(2); |
sl@0 | 67 |
} |
sl@0 | 68 |
db close |
sl@0 | 69 |
db2 eval COMMIT |
sl@0 | 70 |
exit |
sl@0 | 71 |
} |
sl@0 | 72 |
close $out |
sl@0 | 73 |
|
sl@0 | 74 |
# Begin a transaction on test.db. |
sl@0 | 75 |
db eval { |
sl@0 | 76 |
BEGIN EXCLUSIVE; |
sl@0 | 77 |
INSERT INTO t1 VALUES(1); |
sl@0 | 78 |
} |
sl@0 | 79 |
|
sl@0 | 80 |
# Kick off the second process. |
sl@0 | 81 |
exec [info nameofexec] ./test2-script.tcl & |
sl@0 | 82 |
|
sl@0 | 83 |
# Wait until the second process has started its transaction on test2.db. |
sl@0 | 84 |
while {![file exists test2.db-journal]} { |
sl@0 | 85 |
after 10 |
sl@0 | 86 |
} |
sl@0 | 87 |
|
sl@0 | 88 |
# Try to write to test2.db. We are locked out. |
sl@0 | 89 |
sqlite3 db2 test2.db |
sl@0 | 90 |
catchsql { |
sl@0 | 91 |
INSERT INTO t2 VALUES(1) |
sl@0 | 92 |
} db2 |
sl@0 | 93 |
} {1 {database is locked}} |
sl@0 | 94 |
do_test lock4-1.3 { |
sl@0 | 95 |
db eval { |
sl@0 | 96 |
COMMIT; |
sl@0 | 97 |
} |
sl@0 | 98 |
while {[file exists test2.db-journal]} { |
sl@0 | 99 |
after 10 |
sl@0 | 100 |
} |
sl@0 | 101 |
# The other process has committed its transaction on test2.db by |
sl@0 | 102 |
# deleting the journal file. But it might retain the lock for a |
sl@0 | 103 |
# fraction longer |
sl@0 | 104 |
# |
sl@0 | 105 |
db2 eval { |
sl@0 | 106 |
SELECT * FROM t2 |
sl@0 | 107 |
} |
sl@0 | 108 |
} {2} |
sl@0 | 109 |
|
sl@0 | 110 |
|
sl@0 | 111 |
do_test lock4-999.1 { |
sl@0 | 112 |
rename db2 {} |
sl@0 | 113 |
} {} |
sl@0 | 114 |
|
sl@0 | 115 |
finish_test |