Merge trunk into jni-post-3.44 branch.
[sqlite.git] / test / mutex1.test
blobcb189a7a8a787573f4207557187c85fdb8b4e631
1 # 2008 June 17
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: mutex1.test,v 1.20 2009/04/23 14:58:40 danielk1977 Exp $
14 set testdir [file dirname $argv0]
15 source $testdir/tester.tcl
17 ifcapable !mutex {
18   finish_test
19   return
21 if {[info exists tester_do_binarylog]} {
22   finish_test
23   return
26 sqlite3_reset_auto_extension
27 clear_mutex_counters
29 proc mutex_counters {varname} {
30   upvar $varname var
31   set var(total) 0
32   foreach {name value} [read_mutex_counters] {
33     set var($name) $value
34     incr var(total) $value
35   }
38 #-------------------------------------------------------------------------
39 # Tests mutex1-1.* test that sqlite3_config() returns SQLITE_MISUSE if
40 # is called at the wrong time. And that the first time sqlite3_initialize
41 # is called it obtains the 'static_main' mutex 3 times and a recursive
42 # mutex (sqlite3Config.pInitMutex) twice. Subsequent calls are no-ops
43 # that do not require any mutexes.
45 do_test mutex1-1.0 {
46   install_mutex_counters 1
47 } {SQLITE_MISUSE}
49 do_test mutex1-1.1 {
50   db close
51   install_mutex_counters 1
52 } {SQLITE_MISUSE}
54 do_test mutex1-1.2 {
55   sqlite3_shutdown
56   install_mutex_counters 1
57 } {SQLITE_OK}
59 do_test mutex1-1.3 {
60   install_mutex_counters 0
61 } {SQLITE_OK}
63 do_test mutex1-1.4 {
64   install_mutex_counters 1
65 } {SQLITE_OK}
67 do_test mutex1-1.5 {
68   mutex_counters counters
69   set counters(total)
70 } {0}
72 do_test mutex1-1.6 {
73   sqlite3_initialize
74 } {SQLITE_OK}
76 do_test mutex1-1.7 {
77   mutex_counters counters
78   # list $counters(total) $counters(static_main)
79   expr {$counters(total)>0}
80 } {1}
82 do_test mutex1-1.8 {
83   clear_mutex_counters
84   sqlite3_initialize
85 } {SQLITE_OK}
87 do_test mutex1-1.9 {
88   mutex_counters counters
89   list $counters(total) $counters(static_main)
90 } {0 0}
92 #-------------------------------------------------------------------------
93 # Tests mutex1-2.* test the three thread-safety related modes that
94 # can be selected using sqlite3_config:
96 #   * Serialized mode,
97 #   * Multi-threaded mode,
98 #   * Single-threaded mode.
100 ifcapable threadsafe1&&shared_cache {
101   set enable_shared_cache [sqlite3_enable_shared_cache 1]
102   foreach {mode mutexes} {
103     singlethread {}
104     multithread  {
105       fast static_app1 static_app2 static_app3
106       static_lru static_main static_mem static_open
107       static_prng static_pmem static_vfs1 static_vfs2
108       static_vfs3
109     }
110     serialized  {
111       fast recursive static_app1 static_app2
112       static_app3 static_lru static_main static_mem
113       static_open static_prng static_pmem static_vfs1
114       static_vfs2 static_vfs3
115     }
116   } {
118     # For journal_mode=memory, the static_prng mutex is not required. This
119     # is because the header of an in-memory journal does not contain
120     # any random bytes, and so no call to sqlite3_randomness() is made.
121     if {[permutation]=="inmemory_journal"} {
122       set idx [lsearch $mutexes static_prng]
123       if {$idx>=0} { set mutexes [lreplace $mutexes $idx $idx] }
124     }
126     do_test mutex1.2.$mode.1 {
127       catch {db close}
128       sqlite3_shutdown
129       sqlite3_config_memstatus 1
130       sqlite3_config $mode
131     } SQLITE_OK
133     do_test mutex1.2.$mode.2 {
134       sqlite3_initialize
135       clear_mutex_counters
136       sqlite3 db test.db -nomutex 0 -fullmutex 0
137       catchsql { CREATE TABLE abc(a, b, c) }
138       db eval {
139         INSERT INTO abc VALUES(1, 2, 3);
140       }
141     } {}
142     ifcapable !memorymanage {
143       regsub { static_lru} $mutexes {} mutexes
144     }
145     if {$mode ne "singlethread"} {
146       do_test mutex1.2.$mode.3 {
147         #
148         # NOTE: Make sure all the app and vfs mutexes get used.
149         #
150         enter_static_mutex static_app1
151         leave_static_mutex static_app1
152         enter_static_mutex static_app2
153         leave_static_mutex static_app2
154         enter_static_mutex static_app3
155         leave_static_mutex static_app3
156         enter_static_mutex static_vfs1
157         leave_static_mutex static_vfs1
158         enter_static_mutex static_vfs2
159         leave_static_mutex static_vfs2
160         enter_static_mutex static_vfs3
161         leave_static_mutex static_vfs3
162       } {}
163     }
164     do_test mutex1.2.$mode.4 {
165       mutex_counters counters
167       set res [list]
168       foreach {key value} [array get counters] {
169         if {$key ne "total" && $value > 0} {
170           lappend res $key
171         }
172       }
173       lsort $res
174     } [lsort $mutexes]
175   }
176   sqlite3_enable_shared_cache $enable_shared_cache
178   # Open and use a connection in "nomutex" mode. Test that no recursive
179   # mutexes are obtained.
180   do_test mutex1.3.1 {
181     catch {db close}
182     clear_mutex_counters
183     sqlite3 db test.db -nomutex 1
184     execsql { SELECT * FROM abc }
185   } {1 2 3 1 2 3 1 2 3}
186   do_test mutex1.3.2 {
187     mutex_counters counters
188     set counters(recursive)
189   } {0}
192 # Test the sqlite3_db_mutex() function.
194 do_test mutex1.4.1 {
195   catch {db close}
196   sqlite3 db test.db
197   enter_db_mutex db
198   db eval {SELECT 1, 2, 3}
199 } {1 2 3}
200 do_test mutex1.4.2 {
201   leave_db_mutex db
202   db eval {SELECT 1, 2, 3}
203 } {1 2 3}
204 do_test mutex1.4.3 {
205   catch {db close}
206   sqlite3 db test.db -nomutex 1
207   enter_db_mutex db
208   db eval {SELECT 1, 2, 3}
209 } {1 2 3}
210 do_test mutex1.4.4 {
211   leave_db_mutex db
212   db eval {SELECT 1, 2, 3}
213 } {1 2 3}
215 do_test mutex1-X {
216   catch {db close}
217   sqlite3_shutdown
218   clear_mutex_counters
219   install_mutex_counters 0
220   sqlite3_initialize
221 } {SQLITE_OK}
223 autoinstall_test_functions
224 finish_test