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 script testing the callback-free C/C++ API.
14 # $Id: capi2.test,v 1.36 2008/09/01 15:52:11 drh Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
20 # Return the text values from the current row pointed at by STMT as a list.
21 proc get_row_values {STMT} {
23 for {set i 0} {$i < [sqlite3_data_count $STMT]} {incr i} {
24 lappend VALUES [sqlite3_column_text $STMT $i]
29 # Return the column names followed by declaration types for the result set
30 # of the SQL statement STMT.
33 # CREATE TABLE abc(a text, b integer);
36 # The result is {a b text integer}
37 proc get_column_names {STMT} {
39 for {set i 0} {$i < [sqlite3_column_count $STMT]} {incr i} {
40 lappend VALUES [sqlite3_column_name $STMT $i]
42 for {set i 0} {$i < [sqlite3_column_count $STMT]} {incr i} {
43 lappend VALUES [sqlite3_column_decltype $STMT $i]
48 # Check basic functionality
51 set DB [sqlite3_connection_pointer db]
52 execsql {CREATE TABLE t1(a,b,c)}
53 set VM [sqlite3_prepare $DB {SELECT name, rowid FROM sqlite_master} -1 TAIL]
60 sqlite3_data_count $VM
67 } {name rowid text INTEGER}
72 list [sqlite3_column_count $VM] [get_row_values $VM] [get_column_names $VM]
73 } {2 {} {name rowid text INTEGER}}
74 do_test capi2-1.8-misuse {
78 # Update: In v2, once SQLITE_MISUSE is returned the statement handle cannot
79 # be interrogated for more information. However in v3, since the column
80 # count, names and types are determined at compile time, these are still
81 # accessible after an SQLITE_MISUSE error.
83 list [sqlite3_column_count $VM] [get_row_values $VM] [get_column_names $VM]
84 } {2 {} {name rowid text INTEGER}}
86 sqlite3_data_count $VM
93 # Check to make sure that the "tail" of a multi-statement SQL script
94 # is returned by sqlite3_prepare.
98 SELECT name, rowid FROM sqlite_master;
99 SELECT name, rowid FROM sqlite_master WHERE 0;
100 -- A comment at the end
102 set VM [sqlite3_prepare $DB $SQL -1 SQL]
105 SELECT name, rowid FROM sqlite_master WHERE 0;
106 -- A comment at the end
109 set r [sqlite3_step $VM]
110 lappend r [sqlite3_column_count $VM] \
111 [get_row_values $VM] \
112 [get_column_names $VM]
113 } {SQLITE_ROW 2 {t1 1} {name rowid text INTEGER}}
115 set r [sqlite3_step $VM]
116 lappend r [sqlite3_column_count $VM] \
117 [get_row_values $VM] \
118 [get_column_names $VM]
119 } {SQLITE_DONE 2 {} {name rowid text INTEGER}}
124 set VM [sqlite3_prepare $DB $SQL -1 SQL]
127 -- A comment at the end
130 set r [sqlite3_step $VM]
131 lappend r [sqlite3_column_count $VM] \
132 [get_row_values $VM] \
133 [get_column_names $VM]
134 } {SQLITE_DONE 2 {} {name rowid text INTEGER}}
139 set VM [sqlite3_prepare $DB $SQL -1 SQL]
143 # Check the error handling.
147 sqlite3_prepare $DB {select bogus from sqlite_master} -1 TAIL
149 lappend rc $msg $TAIL
150 } {1 {(1) no such column: bogus} {}}
153 sqlite3_prepare $DB {select bogus from } -1 TAIL
155 lappend rc $msg $TAIL
156 } {1 {(1) near " ": syntax error} {}}
159 sqlite3_prepare $DB {;;;;select bogus from sqlite_master} -1 TAIL
161 lappend rc $msg $TAIL
162 } {1 {(1) no such column: bogus} {}}
165 sqlite3_prepare $DB {select bogus from sqlite_master;x;} -1 TAIL
167 lappend rc $msg $TAIL
168 } {1 {(1) no such column: bogus} {x;}}
171 sqlite3_prepare $DB {select bogus from sqlite_master;;;x;} -1 TAIL
173 lappend rc $msg $TAIL
174 } {1 {(1) no such column: bogus} {;;x;}}
177 sqlite3_prepare $DB {select 5/0} -1 TAIL
182 list [sqlite3_step $VM] \
183 [sqlite3_column_count $VM] \
184 [get_row_values $VM] \
185 [get_column_names $VM]
186 } {SQLITE_ROW 1 {{}} {5/0 {}}}
191 execsql {CREATE UNIQUE INDEX i1 ON t1(a)}
192 set VM [sqlite3_prepare $DB {INSERT INTO t1 VALUES(1,2,3)} -1 TAIL]
195 do_test capi2-3.9b {db changes} {0}
197 list [sqlite3_step $VM] \
198 [sqlite3_column_count $VM] \
199 [get_row_values $VM] \
200 [get_column_names $VM]
201 } {SQLITE_DONE 0 {} {}}
203 # Update for v3 - the change has not actually happened until the query is
204 # finalized. Is this going to cause trouble for anyone? Lee Nelson maybe?
205 # (Later:) The change now happens just before SQLITE_DONE is returned.
206 do_test capi2-3.10b {db changes} {1}
210 do_test capi2-3.11b {db changes} {1}
211 #do_test capi2-3.12-misuse {
212 # sqlite3_finalize $VM
215 set VM [sqlite3_prepare $DB {INSERT INTO t1 VALUES(1,3,4)} -1 TAIL]
216 list [sqlite3_step $VM] \
217 [sqlite3_column_count $VM] \
218 [get_row_values $VM] \
219 [get_column_names $VM]
220 } {SQLITE_ERROR 0 {} {}}
222 # Update for v3: Preparing a statement does not affect the change counter.
223 # (Test result changes from 0 to 1). (Later:) change counter updates occur
224 # when sqlite3_step returns, not at finalize time.
225 do_test capi2-3.13b {db changes} {0}
228 list [sqlite3_finalize $VM] [sqlite3_errmsg $DB]
229 } {SQLITE_CONSTRAINT {column a is not unique}}
231 set VM [sqlite3_prepare $DB {CREATE TABLE t2(a NOT NULL, b)} -1 TAIL]
235 list [sqlite3_step $VM] \
236 [sqlite3_column_count $VM] \
237 [get_row_values $VM] \
238 [get_column_names $VM]
239 } {SQLITE_DONE 0 {} {}}
241 list [sqlite3_finalize $VM] [sqlite3_errmsg $DB]
242 } {SQLITE_OK {not an error}}
244 set VM [sqlite3_prepare $DB {INSERT INTO t2 VALUES(NULL,2)} -1 TAIL]
245 list [sqlite3_step $VM] \
246 [sqlite3_column_count $VM] \
247 [get_row_values $VM] \
248 [get_column_names $VM]
249 } {SQLITE_ERROR 0 {} {}}
251 list [sqlite3_finalize $VM] [sqlite3_errmsg $DB]
252 } {SQLITE_CONSTRAINT {t2.a may not be NULL}}
256 CREATE TABLE a1(message_id, name , UNIQUE(message_id, name) );
257 INSERT INTO a1 VALUES(1, 1);
261 set VM [sqlite3_prepare $DB {INSERT INTO a1 VALUES(1, 1)} -1 TAIL]
269 } {SQLITE_CONSTRAINT}
272 } {SQLITE_CONSTRAINT}
274 # Two or more virtual machines exists at the same time.
277 set VM1 [sqlite3_prepare $DB {INSERT INTO t2 VALUES(1,2)} -1 TAIL]
281 set VM2 [sqlite3_prepare $DB {INSERT INTO t2 VALUES(2,3)} -1 TAIL]
285 set VM3 [sqlite3_prepare $DB {INSERT INTO t2 VALUES(3,4)} -1 TAIL]
289 list [sqlite3_step $VM2] \
290 [sqlite3_column_count $VM2] \
291 [get_row_values $VM2] \
292 [get_column_names $VM2]
293 } {SQLITE_DONE 0 {} {}}
295 execsql {SELECT * FROM t2 ORDER BY a}
298 sqlite3_finalize $VM2
301 list [sqlite3_step $VM3] \
302 [sqlite3_column_count $VM3] \
303 [get_row_values $VM3] \
304 [get_column_names $VM3]
305 } {SQLITE_DONE 0 {} {}}
307 execsql {SELECT * FROM t2 ORDER BY a}
310 sqlite3_finalize $VM3
313 list [sqlite3_step $VM1] \
314 [sqlite3_column_count $VM1] \
315 [get_row_values $VM1] \
316 [get_column_names $VM1]
317 } {SQLITE_DONE 0 {} {}}
319 execsql {SELECT * FROM t2 ORDER BY a}
322 sqlite3_finalize $VM1
325 # Interleaved SELECTs
328 set VM1 [sqlite3_prepare $DB {SELECT * FROM t2} -1 TAIL]
329 set VM2 [sqlite3_prepare $DB {SELECT * FROM t2} -1 TAIL]
330 set VM3 [sqlite3_prepare $DB {SELECT * FROM t2} -1 TAIL]
331 list [sqlite3_step $VM1] \
332 [sqlite3_column_count $VM1] \
333 [get_row_values $VM1] \
334 [get_column_names $VM1]
335 } {SQLITE_ROW 2 {2 3} {a b {} {}}}
337 list [sqlite3_step $VM2] \
338 [sqlite3_column_count $VM2] \
339 [get_row_values $VM2] \
340 [get_column_names $VM2]
341 } {SQLITE_ROW 2 {2 3} {a b {} {}}}
343 list [sqlite3_step $VM1] \
344 [sqlite3_column_count $VM1] \
345 [get_row_values $VM1] \
346 [get_column_names $VM1]
347 } {SQLITE_ROW 2 {3 4} {a b {} {}}}
349 list [sqlite3_step $VM3] \
350 [sqlite3_column_count $VM3] \
351 [get_row_values $VM3] \
352 [get_column_names $VM3]
353 } {SQLITE_ROW 2 {2 3} {a b {} {}}}
355 list [sqlite3_step $VM3] \
356 [sqlite3_column_count $VM3] \
357 [get_row_values $VM3] \
358 [get_column_names $VM3]
359 } {SQLITE_ROW 2 {3 4} {a b {} {}}}
361 list [sqlite3_step $VM3] \
362 [sqlite3_column_count $VM3] \
363 [get_row_values $VM3] \
364 [get_column_names $VM3]
365 } {SQLITE_ROW 2 {1 2} {a b {} {}}}
367 list [sqlite3_step $VM3] \
368 [sqlite3_column_count $VM3] \
369 [get_row_values $VM3] \
370 [get_column_names $VM3]
371 } {SQLITE_DONE 2 {} {a b {} {}}}
373 sqlite3_finalize $VM3
376 list [sqlite3_step $VM1] \
377 [sqlite3_column_count $VM1] \
378 [get_row_values $VM1] \
379 [get_column_names $VM1]
380 } {SQLITE_ROW 2 {1 2} {a b {} {}}}
382 sqlite3_finalize $VM1
385 list [sqlite3_step $VM2] \
386 [sqlite3_column_count $VM2] \
387 [get_row_values $VM2] \
388 [get_column_names $VM2]
389 } {SQLITE_ROW 2 {3 4} {a b {} {}}}
391 list [sqlite3_step $VM2] \
392 [sqlite3_column_count $VM2] \
393 [get_row_values $VM2] \
394 [get_column_names $VM2]
395 } {SQLITE_ROW 2 {1 2} {a b {} {}}}
397 sqlite3_finalize $VM2
400 # Check for proper SQLITE_BUSY returns.
405 CREATE TABLE t3(x counter);
406 INSERT INTO t3 VALUES(1);
407 INSERT INTO t3 VALUES(2);
408 INSERT INTO t3 SELECT x+2 FROM t3;
409 INSERT INTO t3 SELECT x+4 FROM t3;
410 INSERT INTO t3 SELECT x+8 FROM t3;
413 set VM1 [sqlite3_prepare $DB {SELECT * FROM t3} -1 TAIL]
417 # Update for v3: BEGIN doesn't write-lock the database. It is quite
418 # difficult to get v3 to write-lock the database, which causes a few
419 # problems for test scripts.
421 # do_test capi2-6.2 {
422 # list [sqlite3_step $VM1] \
423 # [sqlite3_column_count $VM1] \
424 # [get_row_values $VM1] \
425 # [get_column_names $VM1]
426 # } {SQLITE_BUSY 0 {} {}}
431 list [sqlite3_step $VM1] \
432 [sqlite3_column_count $VM1] \
433 [get_row_values $VM1] \
434 [get_column_names $VM1]
435 } {SQLITE_ROW 1 1 {x counter}}
437 catchsql {INSERT INTO t3 VALUES(10);} db2
438 } {1 {database is locked}}
440 list [sqlite3_step $VM1] \
441 [sqlite3_column_count $VM1] \
442 [get_row_values $VM1] \
443 [get_column_names $VM1]
444 } {SQLITE_ROW 1 2 {x counter}}
446 execsql {SELECT * FROM t2} db2
449 list [sqlite3_step $VM1] \
450 [sqlite3_column_count $VM1] \
451 [get_row_values $VM1] \
452 [get_column_names $VM1]
453 } {SQLITE_ROW 1 3 {x counter}}
455 execsql {SELECT * FROM t2}
458 list [sqlite3_step $VM1] \
459 [sqlite3_column_count $VM1] \
460 [get_row_values $VM1] \
461 [get_column_names $VM1]
462 } {SQLITE_ROW 1 4 {x counter}}
467 list [sqlite3_step $VM1] \
468 [sqlite3_column_count $VM1] \
469 [get_row_values $VM1] \
470 [get_column_names $VM1]
471 } {SQLITE_ROW 1 5 {x counter}}
473 # A read no longer blocks a write in the same connection.
474 #do_test capi2-6.13 {
475 # catchsql {UPDATE t3 SET x=x+1}
476 #} {1 {database table is locked}}
479 list [sqlite3_step $VM1] \
480 [sqlite3_column_count $VM1] \
481 [get_row_values $VM1] \
482 [get_column_names $VM1]
483 } {SQLITE_ROW 1 6 {x counter}}
485 execsql {SELECT * FROM t1}
488 list [sqlite3_step $VM1] \
489 [sqlite3_column_count $VM1] \
490 [get_row_values $VM1] \
491 [get_column_names $VM1]
492 } {SQLITE_ROW 1 7 {x counter}}
494 catchsql {UPDATE t1 SET b=b+1}
497 list [sqlite3_step $VM1] \
498 [sqlite3_column_count $VM1] \
499 [get_row_values $VM1] \
500 [get_column_names $VM1]
501 } {SQLITE_ROW 1 8 {x counter}}
503 execsql {SELECT * FROM t1}
506 list [sqlite3_step $VM1] \
507 [sqlite3_column_count $VM1] \
508 [get_row_values $VM1] \
509 [get_column_names $VM1]
510 } {SQLITE_ROW 1 9 {x counter}}
511 #do_test capi2-6.21 {
512 # execsql {ROLLBACK; SELECT * FROM t1}
515 list [sqlite3_step $VM1] \
516 [sqlite3_column_count $VM1] \
517 [get_row_values $VM1] \
518 [get_column_names $VM1]
519 } {SQLITE_ROW 1 10 {x counter}}
520 #do_test capi2-6.23 {
521 # execsql {BEGIN TRANSACTION;}
524 list [sqlite3_step $VM1] \
525 [sqlite3_column_count $VM1] \
526 [get_row_values $VM1] \
527 [get_column_names $VM1]
528 } {SQLITE_ROW 1 11 {x counter}}
531 INSERT INTO t1 VALUES(2,3,4);
536 list [sqlite3_step $VM1] \
537 [sqlite3_column_count $VM1] \
538 [get_row_values $VM1] \
539 [get_column_names $VM1]
540 } {SQLITE_ROW 1 12 {x counter}}
543 INSERT INTO t1 VALUES(2,4,5);
546 } {1 {column a is not unique}}
548 list [sqlite3_step $VM1] \
549 [sqlite3_column_count $VM1] \
550 [get_row_values $VM1] \
551 [get_column_names $VM1]
552 } {SQLITE_ROW 1 13 {x counter}}
554 sqlite3_finalize $VM1
565 PRAGMA count_changes=on
570 UPDATE t1 SET a=a+10;
575 INSERT INTO t1 SELECT a+1,b+1,c+1 FROM t1;
578 do_test capi2-7.4b {sqlite3_changes $DB} {1}
581 UPDATE t1 SET a=a+10;
584 do_test capi2-7.5b {sqlite3_changes $DB} {2}
592 INSERT INTO t1 SELECT a+2,b+2,c+2 FROM t1;
602 } {0 21 2 3 22 3 4 23 4 5 24 5 6}
605 UPDATE t1 SET a=a-20;
608 } {0 4 1 2 3 2 3 4 3 4 5 4 5 6}
610 # Update for version 3: A SELECT statement no longer resets the change
611 # counter (Test result changes from 0 to 4).
615 do_test capi2-7.11a {
616 execsql {SELECT count(*) FROM t1}
619 ifcapable {explain} {
621 set x [stepsql $DB {EXPLAIN SELECT * FROM t1}]
626 # Ticket #261 - make sure we can finalize before the end of a query.
629 set VM1 [sqlite3_prepare $DB {SELECT * FROM t2} -1 TAIL]
630 sqlite3_finalize $VM1
633 # Tickets #384 and #385 - make sure the TAIL argument to sqlite3_prepare
634 # and all of the return pointers in sqlite_step can be null.
637 set VM1 [sqlite3_prepare $DB {SELECT * FROM t2} -1 DUMMY]
639 sqlite3_finalize $VM1
642 # Test that passing a NULL pointer to sqlite3_finalize() or sqlite3_reset
643 # does not cause an error.
651 #---------------------------------------------------------------------------
652 # The following tests - capi2-11.* - test the "column origin" APIs.
654 # sqlite3_column_origin_name()
655 # sqlite3_column_database_name()
656 # sqlite3_column_table_name()
659 ifcapable columnmetadata {
661 # This proc uses the database handle $::DB to compile the SQL statement passed
662 # as a parameter. The return value of this procedure is a list with one
663 # element for each column returned by the compiled statement. Each element of
664 # this list is itself a list of length three, consisting of the origin
665 # database, table and column for the corresponding returned column.
666 proc check_origins {sql} {
668 set ::STMT [sqlite3_prepare $::DB $sql -1 dummy]
669 for {set i 0} {$i < [sqlite3_column_count $::STMT]} {incr i} {
671 [sqlite3_column_database_name $::STMT $i] \
672 [sqlite3_column_table_name $::STMT $i] \
673 [sqlite3_column_origin_name $::STMT $i] \
676 sqlite3_finalize $::STMT
681 CREATE TABLE tab1(col1, col2);
685 check_origins {SELECT col2, col1 FROM tab1}
686 } [list {main tab1 col2} {main tab1 col1}]
688 check_origins {SELECT col2 AS hello, col1 AS world FROM tab1}
689 } [list {main tab1 col2} {main tab1 col1}]
693 check_origins {SELECT b, a FROM (SELECT col1 AS a, col2 AS b FROM tab1)}
694 } [list {main tab1 col2} {main tab1 col1}]
696 check_origins {SELECT (SELECT col2 FROM tab1), (SELECT col1 FROM tab1)}
697 } [list {main tab1 col2} {main tab1 col1}]
699 check_origins {SELECT (SELECT col2), (SELECT col1) FROM tab1}
700 } [list {main tab1 col2} {main tab1 col1}]
702 check_origins {SELECT * FROM tab1}
703 } [list {main tab1 col1} {main tab1 col2}]
705 check_origins {SELECT * FROM (SELECT * FROM tab1)}
706 } [list {main tab1 col1} {main tab1 col2}]
709 ifcapable view&&subquery {
712 CREATE VIEW view1 AS SELECT * FROM tab1;
716 check_origins {SELECT col2, col1 FROM view1}
717 } [list {main tab1 col2} {main tab1 col1}]
719 check_origins {SELECT col2 AS hello, col1 AS world FROM view1}
720 } [list {main tab1 col2} {main tab1 col1}]
722 check_origins {SELECT b, a FROM (SELECT col1 AS a, col2 AS b FROM view1)}
723 } [list {main tab1 col2} {main tab1 col1}]
726 check_origins {SELECT (SELECT col2 FROM view1), (SELECT col1 FROM view1)}
727 } [list {main tab1 col2} {main tab1 col1}]
729 check_origins {SELECT (SELECT col2), (SELECT col1) FROM view1}
730 } [list {main tab1 col2} {main tab1 col1}]
732 check_origins {SELECT * FROM view1}
733 } [list {main tab1 col1} {main tab1 col2}]
735 check_origins {select * from (select * from view1)}
736 } [list {main tab1 col1} {main tab1 col2}]
738 check_origins {select * from (select * from (select * from view1))}
739 } [list {main tab1 col1} {main tab1 col2}]
740 do_test capi2-12.10 {
743 set ::DB [sqlite3_connection_pointer db]
744 check_origins {select * from (select * from (select * from view1))}
745 } [list {main tab1 col1} {main tab1 col2}]
747 # This view will thwart the flattening optimization.
750 CREATE VIEW view2 AS SELECT * FROM tab1 limit 10 offset 10;
754 check_origins {SELECT col2, col1 FROM view2}
755 } [list {main tab1 col2} {main tab1 col1}]
757 check_origins {SELECT col2 AS hello, col1 AS world FROM view2}
758 } [list {main tab1 col2} {main tab1 col1}]
760 check_origins {SELECT b, a FROM (SELECT col1 AS a, col2 AS b FROM view2)}
761 } [list {main tab1 col2} {main tab1 col1}]
763 check_origins {SELECT (SELECT col2 FROM view2), (SELECT col1 FROM view2)}
764 } [list {main tab1 col2} {main tab1 col1}]
766 check_origins {SELECT (SELECT col2), (SELECT col1) FROM view2}
767 } [list {main tab1 col2} {main tab1 col1}]
769 check_origins {SELECT * FROM view2}
770 } [list {main tab1 col1} {main tab1 col2}]
772 check_origins {select * from (select * from view2)}
773 } [list {main tab1 col1} {main tab1 col2}]
775 check_origins {select * from (select * from (select * from view2))}
776 } [list {main tab1 col1} {main tab1 col2}]
777 do_test capi2-13.10 {
780 set ::DB [sqlite3_connection_pointer db]
781 check_origins {select * from (select * from (select * from view2))}
782 } [list {main tab1 col1} {main tab1 col2}]
783 do_test capi2-13.11 {
784 check_origins {select * from (select * from tab1 limit 10 offset 10)}
785 } [list {main tab1 col1} {main tab1 col2}]
789 } ;# ifcapable columnmetadata