Get writes working on the sqlite_dbpage virtual table. Add a few test cases.
[sqlite.git] / test / swarmvtab2.test
blob2b37fd2ac8a97da590da45979c2cbada35bc0be8
1 # 2017-07-15
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 the "swarmvtab" extension
15 set testdir [file dirname $argv0]
16 source $testdir/tester.tcl
17 set testprefix swarmvtab
19 ifcapable !vtab {
20   finish_test
21   return
25 db close
26 foreach name [glob -nocomplain test*.db] {
27   forcedelete $name
29 sqlite3 db test.db
30 load_static_extension db unionvtab
31 proc create_database {filename} {
32   sqlite3 dbx $filename
33   set num [regsub -all {[^0-9]+} $filename {}]
34   set num [string trimleft $num 0]
35   set start [expr {$num*1000}]
36   set end [expr {$start+999}]
37   dbx eval {
38     CREATE TABLE t2(a INTEGER PRIMARY KEY,b);
39     WITH RECURSIVE c(x) AS (
40       VALUES($start) UNION ALL SELECT x+1 FROM c WHERE x<$end
41     )
42     INSERT INTO t2(a,b) SELECT x, printf('**%05d**',x) FROM c;
43   }
44   dbx close
46 db func create_database create_database
47 do_execsql_test 100 {
48   CREATE TABLE t1(filename, tablename, istart, iend);
49   WITH RECURSIVE c(x) AS (VALUES(1) UNION ALL SELECT x+1 FROM c WHERE x<99)
50   INSERT INTO t1 SELECT printf('test%03d.db',x),'t2',x*1000,x*1000+999 FROM c;
51   CREATE VIRTUAL TABLE temp.v1 USING swarmvtab(
52     'SELECT * FROM t1', 'create_database'
53   );
54 } {}
55 do_execsql_test 110 {
56   SELECT b FROM v1 WHERE a=3875;
57 } {**03875**}
58 do_test 120 {
59   lsort [glob -nocomplain test?*.db]
60 } {test001.db test003.db}
61 do_execsql_test 130 {
62   SELECT b FROM v1 WHERE a BETWEEN 3999 AND 4000 ORDER BY a;
63 } {**03999** **04000**}
64 do_test 140 {
65   lsort [glob -nocomplain test?*.db]
66 } {test001.db test003.db test004.db}
67 do_execsql_test 150 {
68   SELECT b FROM v1 WHERE a>=99998;
69 } {**99998** **99999**}
70 do_test 160 {
71   lsort -dictionary [glob -nocomplain test?*.db]
72 } {test001.db test003.db test004.db test099.db}
74 finish_test