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 multithreading behavior
14 # $Id: thread1.test,v 1.7 2004/06/19 00:16:31 drh Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
20 # Skip this whole file if the thread testing code is not enabled
22 if {[llength [info command thread_step]]==0 || [sqlite3 -has-codec]} {
27 # Create some data to work with
32 INSERT INTO t1 VALUES(1,'abcdefgh');
33 INSERT INTO t1 SELECT a+1, b||b FROM t1;
34 INSERT INTO t1 SELECT a+2, b||b FROM t1;
35 INSERT INTO t1 SELECT a+4, b||b FROM t1;
36 SELECT count(*), max(length(b)) FROM t1;
40 # Interleave two threads on read access. Then make sure a third
41 # thread can write the database. In other words:
49 # At one point, the write-lock of C would fail on Linux.
52 thread_create A test.db
53 thread_create B test.db
54 thread_create C test.db
55 thread_compile A {SELECT a FROM t1}
66 thread_compile B {SELECT b FROM t1}
84 do_test thread1-1.10 {
85 thread_compile C {CREATE TABLE t2(x,y)}
89 do_test thread1-1.11 {
93 do_test thread1-1.12 {
94 catchsql {SELECT name FROM sqlite_master}
95 execsql {SELECT name FROM sqlite_master}
100 # The following tests - thread1-2.* - test the following scenario:
102 # 1: Read-lock thread A
103 # 2: Read-lock thread B
104 # 3: Attempt to write in thread C -> SQLITE_BUSY
105 # 4: Check db write failed from main thread.
106 # 5: Unlock from thread A.
107 # 6: Attempt to write in thread C -> SQLITE_BUSY
108 # 7: Check db write failed from main thread.
109 # 8: Unlock from thread B.
110 # 9: Attempt to write in thread C -> SQLITE_DONE
111 # 10: Finalize the write from thread C
112 # 11: Check db write succeeded from main thread.
114 do_test thread1-2.1 {
116 thread_create A test.db
117 thread_compile A {SELECT a FROM t1}
121 do_test thread1-2.2 {
122 thread_create B test.db
123 thread_compile B {SELECT b FROM t1}
127 do_test thread1-2.3 {
128 thread_create C test.db
129 thread_compile C {INSERT INTO t2 VALUES(98,99)}
136 do_test thread1-2.4 {
137 execsql {SELECT * FROM t2}
140 do_test thread1-2.5 {
144 do_test thread1-2.6 {
145 thread_compile C {INSERT INTO t2 VALUES(98,99)}
151 do_test thread1-2.7 {
152 execsql {SELECT * FROM t2}
154 do_test thread1-2.8 {
158 do_test thread1-2.9 {
159 thread_compile C {INSERT INTO t2 VALUES(98,99)}
163 do_test thread1-2.10 {
167 do_test thread1-2.11 {
168 execsql {SELECT * FROM t2}