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 #***********************************************************************
12 # $Id: thread001.test,v 1.5 2008/07/12 14:52:20 drh Exp $
14 set testdir [file dirname $argv0]
16 source $testdir/tester.tcl
17 source $testdir/thread_common.tcl
18 if {[info commands sqlthread] eq ""} {
24 # Run this test three times:
26 # 1) All threads use the same database handle.
27 # 2) All threads use their own database handles.
28 # 3) All threads use their own database handles, shared-cache is enabled.
30 foreach {tn same_db shared_cache} [list \
37 catchsql { DROP TABLE ab; }
39 do_test thread001.$tn.0 {
41 sqlite3_enable_shared_cache $shared_cache
42 sqlite3_enable_shared_cache $shared_cache
48 set dbconfig [list set ::DB [sqlite3_connection_pointer db]]
51 # Set up a database and a schema. The database contains a single
52 # table with two columns. The first column ("a") is an INTEGER PRIMARY
53 # KEY. The second contains the md5sum of all rows in the table with
54 # a smaller value stored in column "a".
56 do_test thread001.$tn.1 {
58 CREATE TABLE ab(a INTEGER PRIMARY KEY, b);
59 CREATE INDEX ab_i ON ab(b);
60 INSERT INTO ab SELECT NULL, md5sum(a, b) FROM ab;
61 SELECT count(*) FROM ab;
64 do_test thread001.$tn.2 {
67 (SELECT md5sum(a, b) FROM ab WHERE a < (SELECT max(a) FROM ab)) ==
68 (SELECT b FROM ab WHERE a = (SELECT max(a) FROM ab))
71 do_test thread001.$tn.3 {
72 execsql { PRAGMA integrity_check }
77 if {![info exists ::DB]} {
78 set ::DB [sqlthread open test.db]
82 for {set i 0} {$i < 100} {incr i} {
83 # Test that the invariant is true.
87 (SELECT md5sum(a, b) FROM ab WHERE a < (SELECT max(a) FROM ab)) ==
88 (SELECT b FROM ab WHERE a = (SELECT max(a) FROM ab))
92 # Add another row to the database.
93 execsql { INSERT INTO ab SELECT NULL, md5sum(a, b) FROM ab }
103 # Kick off $::NTHREAD threads:
106 for {set i 0} {$i < $::NTHREAD} {incr i} {
107 thread_spawn finished($i) $dbconfig $thread_procs $thread_program
110 # Wait for all threads to finish, then check they all returned "OK".
112 for {set i 0} {$i < $::NTHREAD} {incr i} {
113 if {![info exists finished($i)]} {
116 do_test thread001.$tn.4.$i {
121 # Check the database still looks Ok.
123 do_test thread001.$tn.5 {
124 execsql { SELECT count(*) FROM ab; }
125 } [expr {1 + $::NTHREAD*100}]
126 do_test thread001.$tn.6 {
129 (SELECT md5sum(a, b) FROM ab WHERE a < (SELECT max(a) FROM ab)) ==
130 (SELECT b FROM ab WHERE a = (SELECT max(a) FROM ab))
133 do_test thread001.$tn.7 {
134 execsql { PRAGMA integrity_check }