sl@0
|
1 |
# 2006 January 09
|
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 testing the server mode of SQLite.
|
sl@0
|
13 |
#
|
sl@0
|
14 |
# This file is derived from thread1.test
|
sl@0
|
15 |
#
|
sl@0
|
16 |
# $Id: server1.test,v 1.5 2007/08/29 18:20:17 drh Exp $
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
set testdir [file dirname $argv0]
|
sl@0
|
20 |
source $testdir/tester.tcl
|
sl@0
|
21 |
|
sl@0
|
22 |
# Skip this whole file if the server testing code is not enabled
|
sl@0
|
23 |
#
|
sl@0
|
24 |
if {[llength [info command client_step]]==0 || [sqlite3 -has-codec]} {
|
sl@0
|
25 |
finish_test
|
sl@0
|
26 |
return
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
# The sample server implementation does not work right when memory
|
sl@0
|
30 |
# management is enabled.
|
sl@0
|
31 |
#
|
sl@0
|
32 |
ifcapable memorymanage {
|
sl@0
|
33 |
finish_test
|
sl@0
|
34 |
return
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
# Create some data to work with
|
sl@0
|
38 |
#
|
sl@0
|
39 |
do_test server1-1.1 {
|
sl@0
|
40 |
execsql {
|
sl@0
|
41 |
CREATE TABLE t1(a,b);
|
sl@0
|
42 |
INSERT INTO t1 VALUES(1,'abcdefgh');
|
sl@0
|
43 |
INSERT INTO t1 SELECT a+1, b||b FROM t1;
|
sl@0
|
44 |
INSERT INTO t1 SELECT a+2, b||b FROM t1;
|
sl@0
|
45 |
INSERT INTO t1 SELECT a+4, b||b FROM t1;
|
sl@0
|
46 |
SELECT count(*), max(length(b)) FROM t1;
|
sl@0
|
47 |
}
|
sl@0
|
48 |
} {8 64}
|
sl@0
|
49 |
|
sl@0
|
50 |
# Interleave two threads on read access. Then make sure a third
|
sl@0
|
51 |
# thread can write the database. In other words:
|
sl@0
|
52 |
#
|
sl@0
|
53 |
# read-lock A
|
sl@0
|
54 |
# read-lock B
|
sl@0
|
55 |
# unlock A
|
sl@0
|
56 |
# unlock B
|
sl@0
|
57 |
# write-lock C
|
sl@0
|
58 |
#
|
sl@0
|
59 |
do_test server1-1.2 {
|
sl@0
|
60 |
client_create A test.db
|
sl@0
|
61 |
client_create B test.db
|
sl@0
|
62 |
client_create C test.db
|
sl@0
|
63 |
client_compile A {SELECT a FROM t1}
|
sl@0
|
64 |
client_step A
|
sl@0
|
65 |
client_result A
|
sl@0
|
66 |
} SQLITE_ROW
|
sl@0
|
67 |
do_test server1-1.3 {
|
sl@0
|
68 |
client_argc A
|
sl@0
|
69 |
} 1
|
sl@0
|
70 |
do_test server1-1.4 {
|
sl@0
|
71 |
client_argv A 0
|
sl@0
|
72 |
} 1
|
sl@0
|
73 |
do_test server1-1.5 {
|
sl@0
|
74 |
client_compile B {SELECT b FROM t1}
|
sl@0
|
75 |
client_step B
|
sl@0
|
76 |
client_result B
|
sl@0
|
77 |
} SQLITE_ROW
|
sl@0
|
78 |
do_test server1-1.6 {
|
sl@0
|
79 |
client_argc B
|
sl@0
|
80 |
} 1
|
sl@0
|
81 |
do_test server1-1.7 {
|
sl@0
|
82 |
client_argv B 0
|
sl@0
|
83 |
} abcdefgh
|
sl@0
|
84 |
do_test server1-1.8 {
|
sl@0
|
85 |
client_finalize A
|
sl@0
|
86 |
client_result A
|
sl@0
|
87 |
} SQLITE_OK
|
sl@0
|
88 |
do_test server1-1.9 {
|
sl@0
|
89 |
client_finalize B
|
sl@0
|
90 |
client_result B
|
sl@0
|
91 |
} SQLITE_OK
|
sl@0
|
92 |
do_test server1-1.10 {
|
sl@0
|
93 |
client_compile C {CREATE TABLE t2(x,y)}
|
sl@0
|
94 |
client_step C
|
sl@0
|
95 |
client_result C
|
sl@0
|
96 |
} SQLITE_DONE
|
sl@0
|
97 |
do_test server1-1.11 {
|
sl@0
|
98 |
client_finalize C
|
sl@0
|
99 |
client_result C
|
sl@0
|
100 |
} SQLITE_OK
|
sl@0
|
101 |
do_test server1-1.12 {
|
sl@0
|
102 |
catchsql {SELECT name FROM sqlite_master}
|
sl@0
|
103 |
execsql {SELECT name FROM sqlite_master}
|
sl@0
|
104 |
} {t1 t2}
|
sl@0
|
105 |
|
sl@0
|
106 |
|
sl@0
|
107 |
# Read from table t1. Do not finalize the statement. This
|
sl@0
|
108 |
# will leave the lock pending.
|
sl@0
|
109 |
#
|
sl@0
|
110 |
do_test server1-2.1 {
|
sl@0
|
111 |
client_halt *
|
sl@0
|
112 |
client_create A test.db
|
sl@0
|
113 |
client_compile A {SELECT a FROM t1}
|
sl@0
|
114 |
client_step A
|
sl@0
|
115 |
client_result A
|
sl@0
|
116 |
} SQLITE_ROW
|
sl@0
|
117 |
|
sl@0
|
118 |
# Read from the same table from another thread. This is allows.
|
sl@0
|
119 |
#
|
sl@0
|
120 |
do_test server1-2.2 {
|
sl@0
|
121 |
client_create B test.db
|
sl@0
|
122 |
client_compile B {SELECT b FROM t1}
|
sl@0
|
123 |
client_step B
|
sl@0
|
124 |
client_result B
|
sl@0
|
125 |
} SQLITE_ROW
|
sl@0
|
126 |
|
sl@0
|
127 |
# Write to a different table from another thread. This is allowed
|
sl@0
|
128 |
# because in server mode with a shared cache we have table-level locking.
|
sl@0
|
129 |
#
|
sl@0
|
130 |
do_test server1-2.3 {
|
sl@0
|
131 |
client_create C test.db
|
sl@0
|
132 |
client_compile C {INSERT INTO t2 VALUES(98,99)}
|
sl@0
|
133 |
client_step C
|
sl@0
|
134 |
client_result C
|
sl@0
|
135 |
client_finalize C
|
sl@0
|
136 |
client_result C
|
sl@0
|
137 |
} SQLITE_OK
|
sl@0
|
138 |
|
sl@0
|
139 |
# But we cannot insert into table t1 because threads A and B have it locked.
|
sl@0
|
140 |
#
|
sl@0
|
141 |
do_test server1-2.4 {
|
sl@0
|
142 |
client_compile C {INSERT INTO t1 VALUES(98,99)}
|
sl@0
|
143 |
client_step C
|
sl@0
|
144 |
client_result C
|
sl@0
|
145 |
client_finalize C
|
sl@0
|
146 |
client_result C
|
sl@0
|
147 |
} SQLITE_LOCKED
|
sl@0
|
148 |
do_test server1-2.5 {
|
sl@0
|
149 |
client_finalize B
|
sl@0
|
150 |
client_wait B
|
sl@0
|
151 |
client_compile C {INSERT INTO t1 VALUES(98,99)}
|
sl@0
|
152 |
client_step C
|
sl@0
|
153 |
client_result C
|
sl@0
|
154 |
client_finalize C
|
sl@0
|
155 |
client_result C
|
sl@0
|
156 |
} SQLITE_LOCKED
|
sl@0
|
157 |
|
sl@0
|
158 |
# Insert into t1 is successful after finishing the other two threads.
|
sl@0
|
159 |
do_test server1-2.6 {
|
sl@0
|
160 |
client_finalize A
|
sl@0
|
161 |
client_wait A
|
sl@0
|
162 |
client_compile C {INSERT INTO t1 VALUES(98,99)}
|
sl@0
|
163 |
client_step C
|
sl@0
|
164 |
client_result C
|
sl@0
|
165 |
client_finalize C
|
sl@0
|
166 |
client_result C
|
sl@0
|
167 |
} SQLITE_OK
|
sl@0
|
168 |
|
sl@0
|
169 |
client_halt *
|
sl@0
|
170 |
sqlite3_enable_shared_cache 0
|
sl@0
|
171 |
finish_test
|