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: thread2.test,v 1.2 2006/01/18 18:33:42 danielk1977 Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
20 # This file swaps database connections between threads. This
21 # is illegal if memory-management is enabled, so skip this file
23 ifcapable memorymanage {
29 # Skip this whole file if the thread testing code is not enabled
31 if {[llength [info command thread_step]]==0 || [sqlite3 -has-codec]} {
35 if {![info exists threadsOverrideEachOthersLocks]} {
40 # Create some data to work with
45 INSERT INTO t1 VALUES(1,'abcdefgh');
46 INSERT INTO t1 SELECT a+1, b||b FROM t1;
47 INSERT INTO t1 SELECT a+2, b||b FROM t1;
48 INSERT INTO t1 SELECT a+4, b||b FROM t1;
49 SELECT count(*), max(length(b)) FROM t1;
53 # Use the thread_swap command to move the database connections between
54 # threads, then verify that they still work.
58 thread_create A test.db
59 thread_create B test.db
61 thread_compile A {SELECT a FROM t1 LIMIT 1}
76 thread_compile B {SELECT a FROM t1 LIMIT 1}
95 thread_compile A {SELECT a FROM t1 LIMIT 1}
102 do_test thread2-2.4 {
105 do_test thread2-2.5 {
109 do_test thread2-2.6 {
110 thread_compile B {SELECT a FROM t1 LIMIT 1}
113 do_test thread2-2.7 {
117 do_test thread2-2.8 {
120 do_test thread2-2.9 {
127 # Save the original (correct) value of threadsOverrideEachOthersLocks
128 # so that it can be restored. If this value is left set incorrectly, lots
129 # of things will go wrong in future tests.
131 set orig_threadOverride $threadsOverrideEachOthersLocks
133 # Pretend we are on a system (like RedHat9) were threads do not
134 # override each others locks.
136 set threadsOverrideEachOthersLocks 0
138 # Verify that we can move database connections between threads as
139 # long as no locks are held.
141 do_test thread2-3.1 {
142 thread_create A test.db
143 set DB [thread_db_get A]
146 do_test thread2-3.2 {
147 set STMT [sqlite3_prepare $DB {SELECT a FROM t1 LIMIT 1} -1 TAIL]
150 do_test thread2-3.3 {
151 sqlite3_column_int $STMT 0
153 do_test thread2-3.4 {
154 sqlite3_finalize $STMT
156 do_test thread2-3.5 {
157 set STMT [sqlite3_prepare $DB {SELECT max(a) FROM t1} -1 TAIL]
160 do_test thread2-3.6 {
161 sqlite3_column_int $STMT 0
163 do_test thread2-3.7 {
164 sqlite3_finalize $STMT
166 do_test thread2-3.8 {
170 do_test thread2-3.10 {
171 thread_create A test.db
172 thread_compile A {SELECT a FROM t1 LIMIT 1}
175 set DB [thread_db_get A]
178 do_test thread2-3.11 {
179 set STMT [sqlite3_prepare $DB {SELECT a FROM t1 LIMIT 1} -1 TAIL]
182 do_test thread2-3.12 {
183 sqlite3_column_int $STMT 0
185 do_test thread2-3.13 {
186 sqlite3_finalize $STMT
188 do_test thread2-3.14 {
192 do_test thread2-3.20 {
193 thread_create A test.db
194 thread_compile A {SELECT a FROM t1 LIMIT 3}
196 set STMT [thread_stmt_get A]
197 set DB [thread_db_get A]
200 do_test thread2-3.21 {
203 do_test thread2-3.22 {
204 sqlite3_column_int $STMT 0
206 do_test thread2-3.23 {
207 # The unlock fails here. But because we never check the return
208 # code from sqlite3OsUnlock (because we cannot do anything about it
209 # if it fails) we do not realize that an error has occurred.
210 sqlite3_finalize $STMT
212 do_test thread2-3.25 {
216 do_test thread2-3.30 {
217 thread_create A test.db
218 thread_compile A {BEGIN}
221 thread_compile A {SELECT a FROM t1 LIMIT 1}
224 set DB [thread_db_get A]
227 do_test thread2-3.31 {
228 set STMT [sqlite3_prepare $DB {INSERT INTO t1 VALUES(99,'error')} -1 TAIL]
231 do_test thread2-3.32 {
232 sqlite3_finalize $STMT
234 do_test thread2-3.33 {
238 # VERY important to set the override flag back to its true value.
240 set threadsOverrideEachOthersLocks $orig_threadOverride
242 # Also important to halt the worker threads, which are using spin
243 # locks and eating away CPU cycles.