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 file is generating semi-random strings of SQL
13 # (a.k.a. "fuzz") and sending it into the parser to try to
16 # The tests in this file are really about testing fuzzily generated
17 # SQL parse-trees. The majority of the fuzzily generated SQL is
18 # valid as far as the parser is concerned.
20 # The most complicated trees are for SELECT statements.
22 # $Id: fuzz.test,v 1.14 2007/05/30 10:36:47 danielk1977 Exp $
24 set testdir [file dirname $argv0]
25 source $testdir/tester.tcl
29 # If running quick.test, don't do so many iterations.
30 if {[info exists ::ISQUICK]} {
31 if {$::ISQUICK} { set ::REPEATS 20 }
34 source $testdir/fuzz_common.tcl
36 #----------------------------------------------------------------
37 # These tests caused errors that were first caught by the tests
38 # in this file. They are still here.
41 SELECT 'abc' LIKE X'ABCD';
46 SELECT 'abc' LIKE zeroblob(10);
51 SELECT zeroblob(10) LIKE 'abc';
56 SELECT (- -21) % NOT (456 LIKE zeroblob(10));
62 SELECT (SELECT -2147483648) FROM (SELECT 1) ORDER BY 1
68 SELECT 'abc', zeroblob(1) FROM (SELECT 1) ORDER BY 1
70 } [execsql {SELECT 'abc', zeroblob(1)}]
74 SELECT ( SELECT zeroblob(1000) FROM (
75 SELECT * FROM (SELECT 'first') ORDER BY NOT 'in')
78 } [execsql {SELECT zeroblob(1000)}]
81 # Problems with opcode OP_ToText (did not account for MEM_Zero).
82 # Also MemExpandBlob() was marking expanded blobs as nul-terminated.
85 SELECT CAST(zeroblob(1000) AS text);
90 # This was causing a NULL pointer dereference of Expr.pList.
92 SELECT 1 FROM (SELECT * FROM sqlite_master WHERE random())
97 # Bug in calculation of Parse.ckOffset causing an assert()
98 # to fail. Probably harmless.
100 SELECT coalesce(1, substr( 1, 2, length('in' IN (SELECT 1))))
105 # The literals (A, B, C, D) are not important, they are just used
106 # to make the EXPLAIN output easier to read.
108 # The problem here is that the EXISTS(...) expression leaves an
109 # extra value on the VDBE stack. This is confusing the parent and
110 # leads to an assert() failure when OP_Insert encounters an integer
111 # when it expects a record blob.
113 # Update: Any query with (LIMIT 0) was leaking stack.
116 SELECT 'A' FROM (SELECT 'B') ORDER BY EXISTS (
117 SELECT 'C' FROM (SELECT 'D' LIMIT 0)
122 do_test fuzz-1.12.1 {
123 # Create a table with a single row.
126 INSERT INTO abc VALUES('ABCDE');
129 # The following query was crashing. The later subquery (in the FROM)
130 # clause was flattened into the parent, but the code was not repairng
131 # the "b" reference in the other sub-query. When the query was executed,
132 # that "b" refered to a non-existant vdbe table-cursor.
135 SELECT 1 IN ( SELECT b UNION SELECT 1 ) FROM (SELECT b FROM abc);
138 do_test fuzz-1.12.2 {
139 # Clean up after the previous query.
147 # The problem here was that when there were more expressions in
148 # the ORDER BY list than the result-set list. The temporary b-tree
149 # used for sorting was being misconfigured in this case.
152 SELECT 'abcd' UNION SELECT 'efgh' ORDER BY 1 ASC, 1 ASC;
156 do_test fuzz-1.14.1 {
158 CREATE TABLE abc(a, b, c);
159 INSERT INTO abc VALUES(123, 456, 789);
162 # The [a] reference in the sub-select was causing a problem. Because
163 # the internal walkSelectExpr() function was not considering compound
167 GROUP BY c HAVING EXISTS (SELECT a UNION SELECT 123);
170 do_test fuzz-1.14.2 {
176 #----------------------------------------------------------------
177 # Test some fuzzily generated expressions.
179 do_fuzzy_test fuzz-2 -template { SELECT [Expr] }
183 CREATE TABLE abc(a, b, c);
184 CREATE TABLE def(a, b, c);
185 CREATE TABLE ghi(a, b, c);
188 set ::TableList [list abc def ghi]
190 #----------------------------------------------------------------
191 # Test some fuzzily generated SELECT statements.
193 do_fuzzy_test fuzz-3.2 -template {[Select]}
195 #----------------------------------------------------------------
196 # Insert a small amount of data into the database and then run
197 # some more generated SELECT statements.
201 INSERT INTO abc VALUES(1, 2, 3);
202 INSERT INTO abc VALUES(4, 5, 6);
203 INSERT INTO abc VALUES(7, 8, 9);
204 INSERT INTO def VALUES(1, 2, 3);
205 INSERT INTO def VALUES(4, 5, 6);
206 INSERT INTO def VALUES(7, 8, 9);
207 INSERT INTO ghi VALUES(1, 2, 3);
208 INSERT INTO ghi VALUES(4, 5, 6);
209 INSERT INTO ghi VALUES(7, 8, 9);
210 CREATE INDEX abc_i ON abc(a, b, c);
211 CREATE INDEX def_i ON def(c, a, b);
212 CREATE INDEX ghi_i ON ghi(b, c, a);
215 do_fuzzy_test fuzz-4.2 -template {[Select]}
217 #----------------------------------------------------------------
218 # Test some fuzzy INSERT statements:
220 do_test fuzz-5.1 {execsql BEGIN} {}
221 do_fuzzy_test fuzz-5.2 -template {[Insert]} -errorlist table
222 integrity_check fuzz-5.2.integrity
223 do_test fuzz-5.3 {execsql COMMIT} {}
224 integrity_check fuzz-5.4.integrity
226 #----------------------------------------------------------------
227 # Now that there is data in the database, run some more SELECT
230 set ::ColumnList [list a b c]
231 set E {{no such col} {ambiguous column name}}
232 do_fuzzy_test fuzz-6.1 -template {[Select]} -errorlist $E
234 #----------------------------------------------------------------
235 # Run some SELECTs, INSERTs, UPDATEs and DELETEs in a transaction.
237 set E {{no such col} {ambiguous column name} {table}}
238 do_test fuzz-7.1 {execsql BEGIN} {}
239 do_fuzzy_test fuzz-7.2 -template {[Statement]} -errorlist $E
240 integrity_check fuzz-7.3.integrity
241 do_test fuzz-7.4 {execsql COMMIT} {}
242 integrity_check fuzz-7.5.integrity
244 #----------------------------------------------------------------
245 # Many CREATE and DROP TABLE statements:
247 set E [list table duplicate {no such col} {ambiguous column name} {use DROP}]
248 do_fuzzy_test fuzz-8.1 -template {[CreateOrDropTableOrView]} -errorlist $E