sl@0
|
1 |
# 2007 May 10
|
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 file is generating semi-random strings of SQL
|
sl@0
|
13 |
# (a.k.a. "fuzz") and sending it into the parser to try to
|
sl@0
|
14 |
# generate errors.
|
sl@0
|
15 |
#
|
sl@0
|
16 |
# The tests in this file are really about testing fuzzily generated
|
sl@0
|
17 |
# SQL parse-trees. The majority of the fuzzily generated SQL is
|
sl@0
|
18 |
# valid as far as the parser is concerned.
|
sl@0
|
19 |
#
|
sl@0
|
20 |
# The most complicated trees are for SELECT statements.
|
sl@0
|
21 |
#
|
sl@0
|
22 |
# $Id: fuzz.test,v 1.14 2007/05/30 10:36:47 danielk1977 Exp $
|
sl@0
|
23 |
|
sl@0
|
24 |
set testdir [file dirname $argv0]
|
sl@0
|
25 |
source $testdir/tester.tcl
|
sl@0
|
26 |
|
sl@0
|
27 |
set ::REPEATS 5000
|
sl@0
|
28 |
|
sl@0
|
29 |
# If running quick.test, don't do so many iterations.
|
sl@0
|
30 |
if {[info exists ::ISQUICK]} {
|
sl@0
|
31 |
if {$::ISQUICK} { set ::REPEATS 20 }
|
sl@0
|
32 |
}
|
sl@0
|
33 |
|
sl@0
|
34 |
source $testdir/fuzz_common.tcl
|
sl@0
|
35 |
|
sl@0
|
36 |
#----------------------------------------------------------------
|
sl@0
|
37 |
# These tests caused errors that were first caught by the tests
|
sl@0
|
38 |
# in this file. They are still here.
|
sl@0
|
39 |
do_test fuzz-1.1 {
|
sl@0
|
40 |
execsql {
|
sl@0
|
41 |
SELECT 'abc' LIKE X'ABCD';
|
sl@0
|
42 |
}
|
sl@0
|
43 |
} {0}
|
sl@0
|
44 |
do_test fuzz-1.2 {
|
sl@0
|
45 |
execsql {
|
sl@0
|
46 |
SELECT 'abc' LIKE zeroblob(10);
|
sl@0
|
47 |
}
|
sl@0
|
48 |
} {0}
|
sl@0
|
49 |
do_test fuzz-1.3 {
|
sl@0
|
50 |
execsql {
|
sl@0
|
51 |
SELECT zeroblob(10) LIKE 'abc';
|
sl@0
|
52 |
}
|
sl@0
|
53 |
} {0}
|
sl@0
|
54 |
do_test fuzz-1.4 {
|
sl@0
|
55 |
execsql {
|
sl@0
|
56 |
SELECT (- -21) % NOT (456 LIKE zeroblob(10));
|
sl@0
|
57 |
}
|
sl@0
|
58 |
} {0}
|
sl@0
|
59 |
do_test fuzz-1.5 {
|
sl@0
|
60 |
execsql {
|
sl@0
|
61 |
SELECT (SELECT (
|
sl@0
|
62 |
SELECT (SELECT -2147483648) FROM (SELECT 1) ORDER BY 1
|
sl@0
|
63 |
))
|
sl@0
|
64 |
}
|
sl@0
|
65 |
} {-2147483648}
|
sl@0
|
66 |
do_test fuzz-1.6 {
|
sl@0
|
67 |
execsql {
|
sl@0
|
68 |
SELECT 'abc', zeroblob(1) FROM (SELECT 1) ORDER BY 1
|
sl@0
|
69 |
}
|
sl@0
|
70 |
} [execsql {SELECT 'abc', zeroblob(1)}]
|
sl@0
|
71 |
|
sl@0
|
72 |
do_test fuzz-1.7 {
|
sl@0
|
73 |
execsql {
|
sl@0
|
74 |
SELECT ( SELECT zeroblob(1000) FROM (
|
sl@0
|
75 |
SELECT * FROM (SELECT 'first') ORDER BY NOT 'in')
|
sl@0
|
76 |
)
|
sl@0
|
77 |
}
|
sl@0
|
78 |
} [execsql {SELECT zeroblob(1000)}]
|
sl@0
|
79 |
|
sl@0
|
80 |
do_test fuzz-1.8 {
|
sl@0
|
81 |
# Problems with opcode OP_ToText (did not account for MEM_Zero).
|
sl@0
|
82 |
# Also MemExpandBlob() was marking expanded blobs as nul-terminated.
|
sl@0
|
83 |
# They are not.
|
sl@0
|
84 |
execsql {
|
sl@0
|
85 |
SELECT CAST(zeroblob(1000) AS text);
|
sl@0
|
86 |
}
|
sl@0
|
87 |
} {{}}
|
sl@0
|
88 |
|
sl@0
|
89 |
do_test fuzz-1.9 {
|
sl@0
|
90 |
# This was causing a NULL pointer dereference of Expr.pList.
|
sl@0
|
91 |
execsql {
|
sl@0
|
92 |
SELECT 1 FROM (SELECT * FROM sqlite_master WHERE random())
|
sl@0
|
93 |
}
|
sl@0
|
94 |
} {}
|
sl@0
|
95 |
|
sl@0
|
96 |
do_test fuzz-1.10 {
|
sl@0
|
97 |
# Bug in calculation of Parse.ckOffset causing an assert()
|
sl@0
|
98 |
# to fail. Probably harmless.
|
sl@0
|
99 |
execsql {
|
sl@0
|
100 |
SELECT coalesce(1, substr( 1, 2, length('in' IN (SELECT 1))))
|
sl@0
|
101 |
}
|
sl@0
|
102 |
} {1}
|
sl@0
|
103 |
|
sl@0
|
104 |
do_test fuzz-1.11 {
|
sl@0
|
105 |
# The literals (A, B, C, D) are not important, they are just used
|
sl@0
|
106 |
# to make the EXPLAIN output easier to read.
|
sl@0
|
107 |
#
|
sl@0
|
108 |
# The problem here is that the EXISTS(...) expression leaves an
|
sl@0
|
109 |
# extra value on the VDBE stack. This is confusing the parent and
|
sl@0
|
110 |
# leads to an assert() failure when OP_Insert encounters an integer
|
sl@0
|
111 |
# when it expects a record blob.
|
sl@0
|
112 |
#
|
sl@0
|
113 |
# Update: Any query with (LIMIT 0) was leaking stack.
|
sl@0
|
114 |
#
|
sl@0
|
115 |
execsql {
|
sl@0
|
116 |
SELECT 'A' FROM (SELECT 'B') ORDER BY EXISTS (
|
sl@0
|
117 |
SELECT 'C' FROM (SELECT 'D' LIMIT 0)
|
sl@0
|
118 |
)
|
sl@0
|
119 |
}
|
sl@0
|
120 |
} {A}
|
sl@0
|
121 |
|
sl@0
|
122 |
do_test fuzz-1.12.1 {
|
sl@0
|
123 |
# Create a table with a single row.
|
sl@0
|
124 |
execsql {
|
sl@0
|
125 |
CREATE TABLE abc(b);
|
sl@0
|
126 |
INSERT INTO abc VALUES('ABCDE');
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
# The following query was crashing. The later subquery (in the FROM)
|
sl@0
|
130 |
# clause was flattened into the parent, but the code was not repairng
|
sl@0
|
131 |
# the "b" reference in the other sub-query. When the query was executed,
|
sl@0
|
132 |
# that "b" refered to a non-existant vdbe table-cursor.
|
sl@0
|
133 |
#
|
sl@0
|
134 |
execsql {
|
sl@0
|
135 |
SELECT 1 IN ( SELECT b UNION SELECT 1 ) FROM (SELECT b FROM abc);
|
sl@0
|
136 |
}
|
sl@0
|
137 |
} {1}
|
sl@0
|
138 |
do_test fuzz-1.12.2 {
|
sl@0
|
139 |
# Clean up after the previous query.
|
sl@0
|
140 |
execsql {
|
sl@0
|
141 |
DROP TABLE abc;
|
sl@0
|
142 |
}
|
sl@0
|
143 |
} {}
|
sl@0
|
144 |
|
sl@0
|
145 |
|
sl@0
|
146 |
do_test fuzz-1.13 {
|
sl@0
|
147 |
# The problem here was that when there were more expressions in
|
sl@0
|
148 |
# the ORDER BY list than the result-set list. The temporary b-tree
|
sl@0
|
149 |
# used for sorting was being misconfigured in this case.
|
sl@0
|
150 |
#
|
sl@0
|
151 |
execsql {
|
sl@0
|
152 |
SELECT 'abcd' UNION SELECT 'efgh' ORDER BY 1 ASC, 1 ASC;
|
sl@0
|
153 |
}
|
sl@0
|
154 |
} {abcd efgh}
|
sl@0
|
155 |
|
sl@0
|
156 |
do_test fuzz-1.14.1 {
|
sl@0
|
157 |
execsql {
|
sl@0
|
158 |
CREATE TABLE abc(a, b, c);
|
sl@0
|
159 |
INSERT INTO abc VALUES(123, 456, 789);
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
# The [a] reference in the sub-select was causing a problem. Because
|
sl@0
|
163 |
# the internal walkSelectExpr() function was not considering compound
|
sl@0
|
164 |
# SELECT operators.
|
sl@0
|
165 |
execsql {
|
sl@0
|
166 |
SELECT 1 FROM abc
|
sl@0
|
167 |
GROUP BY c HAVING EXISTS (SELECT a UNION SELECT 123);
|
sl@0
|
168 |
}
|
sl@0
|
169 |
} {1}
|
sl@0
|
170 |
do_test fuzz-1.14.2 {
|
sl@0
|
171 |
execsql {
|
sl@0
|
172 |
DROP TABLE abc;
|
sl@0
|
173 |
}
|
sl@0
|
174 |
} {}
|
sl@0
|
175 |
|
sl@0
|
176 |
#----------------------------------------------------------------
|
sl@0
|
177 |
# Test some fuzzily generated expressions.
|
sl@0
|
178 |
#
|
sl@0
|
179 |
do_fuzzy_test fuzz-2 -template { SELECT [Expr] }
|
sl@0
|
180 |
|
sl@0
|
181 |
do_test fuzz-3.1 {
|
sl@0
|
182 |
execsql {
|
sl@0
|
183 |
CREATE TABLE abc(a, b, c);
|
sl@0
|
184 |
CREATE TABLE def(a, b, c);
|
sl@0
|
185 |
CREATE TABLE ghi(a, b, c);
|
sl@0
|
186 |
}
|
sl@0
|
187 |
} {}
|
sl@0
|
188 |
set ::TableList [list abc def ghi]
|
sl@0
|
189 |
|
sl@0
|
190 |
#----------------------------------------------------------------
|
sl@0
|
191 |
# Test some fuzzily generated SELECT statements.
|
sl@0
|
192 |
#
|
sl@0
|
193 |
do_fuzzy_test fuzz-3.2 -template {[Select]}
|
sl@0
|
194 |
|
sl@0
|
195 |
#----------------------------------------------------------------
|
sl@0
|
196 |
# Insert a small amount of data into the database and then run
|
sl@0
|
197 |
# some more generated SELECT statements.
|
sl@0
|
198 |
#
|
sl@0
|
199 |
do_test fuzz-4.1 {
|
sl@0
|
200 |
execsql {
|
sl@0
|
201 |
INSERT INTO abc VALUES(1, 2, 3);
|
sl@0
|
202 |
INSERT INTO abc VALUES(4, 5, 6);
|
sl@0
|
203 |
INSERT INTO abc VALUES(7, 8, 9);
|
sl@0
|
204 |
INSERT INTO def VALUES(1, 2, 3);
|
sl@0
|
205 |
INSERT INTO def VALUES(4, 5, 6);
|
sl@0
|
206 |
INSERT INTO def VALUES(7, 8, 9);
|
sl@0
|
207 |
INSERT INTO ghi VALUES(1, 2, 3);
|
sl@0
|
208 |
INSERT INTO ghi VALUES(4, 5, 6);
|
sl@0
|
209 |
INSERT INTO ghi VALUES(7, 8, 9);
|
sl@0
|
210 |
CREATE INDEX abc_i ON abc(a, b, c);
|
sl@0
|
211 |
CREATE INDEX def_i ON def(c, a, b);
|
sl@0
|
212 |
CREATE INDEX ghi_i ON ghi(b, c, a);
|
sl@0
|
213 |
}
|
sl@0
|
214 |
} {}
|
sl@0
|
215 |
do_fuzzy_test fuzz-4.2 -template {[Select]}
|
sl@0
|
216 |
|
sl@0
|
217 |
#----------------------------------------------------------------
|
sl@0
|
218 |
# Test some fuzzy INSERT statements:
|
sl@0
|
219 |
#
|
sl@0
|
220 |
do_test fuzz-5.1 {execsql BEGIN} {}
|
sl@0
|
221 |
do_fuzzy_test fuzz-5.2 -template {[Insert]} -errorlist table
|
sl@0
|
222 |
integrity_check fuzz-5.2.integrity
|
sl@0
|
223 |
do_test fuzz-5.3 {execsql COMMIT} {}
|
sl@0
|
224 |
integrity_check fuzz-5.4.integrity
|
sl@0
|
225 |
|
sl@0
|
226 |
#----------------------------------------------------------------
|
sl@0
|
227 |
# Now that there is data in the database, run some more SELECT
|
sl@0
|
228 |
# statements
|
sl@0
|
229 |
#
|
sl@0
|
230 |
set ::ColumnList [list a b c]
|
sl@0
|
231 |
set E {{no such col} {ambiguous column name}}
|
sl@0
|
232 |
do_fuzzy_test fuzz-6.1 -template {[Select]} -errorlist $E
|
sl@0
|
233 |
|
sl@0
|
234 |
#----------------------------------------------------------------
|
sl@0
|
235 |
# Run some SELECTs, INSERTs, UPDATEs and DELETEs in a transaction.
|
sl@0
|
236 |
#
|
sl@0
|
237 |
set E {{no such col} {ambiguous column name} {table}}
|
sl@0
|
238 |
do_test fuzz-7.1 {execsql BEGIN} {}
|
sl@0
|
239 |
do_fuzzy_test fuzz-7.2 -template {[Statement]} -errorlist $E
|
sl@0
|
240 |
integrity_check fuzz-7.3.integrity
|
sl@0
|
241 |
do_test fuzz-7.4 {execsql COMMIT} {}
|
sl@0
|
242 |
integrity_check fuzz-7.5.integrity
|
sl@0
|
243 |
|
sl@0
|
244 |
#----------------------------------------------------------------
|
sl@0
|
245 |
# Many CREATE and DROP TABLE statements:
|
sl@0
|
246 |
#
|
sl@0
|
247 |
set E [list table duplicate {no such col} {ambiguous column name} {use DROP}]
|
sl@0
|
248 |
do_fuzzy_test fuzz-8.1 -template {[CreateOrDropTableOrView]} -errorlist $E
|
sl@0
|
249 |
|
sl@0
|
250 |
close $::log
|
sl@0
|
251 |
finish_test
|