sl@0
|
1 |
# 2007 June 26
|
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 'hidden' virtual table columns.
|
sl@0
|
13 |
#
|
sl@0
|
14 |
# $Id: vtabA.test,v 1.2 2008/07/12 14:52:21 drh Exp $
|
sl@0
|
15 |
|
sl@0
|
16 |
set testdir [file dirname $argv0]
|
sl@0
|
17 |
source $testdir/tester.tcl
|
sl@0
|
18 |
|
sl@0
|
19 |
ifcapable !vtab {
|
sl@0
|
20 |
finish_test
|
sl@0
|
21 |
return
|
sl@0
|
22 |
}
|
sl@0
|
23 |
|
sl@0
|
24 |
proc get_decltype {table col} {
|
sl@0
|
25 |
set STMT [sqlite3_prepare $::DB "SELECT $col FROM $table" -1 TAIL]
|
sl@0
|
26 |
set decltype [sqlite3_column_decltype $STMT 0]
|
sl@0
|
27 |
sqlite3_finalize $STMT
|
sl@0
|
28 |
set decltype
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
proc get_collist {table} {
|
sl@0
|
32 |
set ret [list]
|
sl@0
|
33 |
db eval "PRAGMA table_info($table)" { lappend ret $name }
|
sl@0
|
34 |
set ret
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
# Register the echo module
|
sl@0
|
38 |
register_echo_module [sqlite3_connection_pointer db]
|
sl@0
|
39 |
|
sl@0
|
40 |
# Create a virtual table with a 'hidden' column (column b).
|
sl@0
|
41 |
#
|
sl@0
|
42 |
do_test vtabA-1.1 {
|
sl@0
|
43 |
execsql { CREATE TABLE t1(a, b HIDDEN VARCHAR, c INTEGER) }
|
sl@0
|
44 |
} {}
|
sl@0
|
45 |
do_test vtabA-1.2 {
|
sl@0
|
46 |
execsql { CREATE VIRTUAL TABLE t1e USING echo(t1) }
|
sl@0
|
47 |
} {}
|
sl@0
|
48 |
|
sl@0
|
49 |
# Test that the hidden column is not listed by [PRAGMA table_info].
|
sl@0
|
50 |
#
|
sl@0
|
51 |
do_test vtabA-1.3 {
|
sl@0
|
52 |
execsql { PRAGMA table_info(t1e) }
|
sl@0
|
53 |
} [list \
|
sl@0
|
54 |
0 a {} 0 {} 0 \
|
sl@0
|
55 |
1 c INTEGER 0 {} 0 \
|
sl@0
|
56 |
]
|
sl@0
|
57 |
|
sl@0
|
58 |
# Test that the hidden column is not require in the default column
|
sl@0
|
59 |
# list for an INSERT statement.
|
sl@0
|
60 |
#
|
sl@0
|
61 |
do_test vtabA-1.4 {
|
sl@0
|
62 |
catchsql {
|
sl@0
|
63 |
INSERT INTO t1e VALUES('value a', 'value c');
|
sl@0
|
64 |
}
|
sl@0
|
65 |
} {0 {}}
|
sl@0
|
66 |
do_test vtabA-1.5 {
|
sl@0
|
67 |
execsql {
|
sl@0
|
68 |
SELECT a, b, c FROM t1e;
|
sl@0
|
69 |
}
|
sl@0
|
70 |
} {{value a} {} {value c}}
|
sl@0
|
71 |
|
sl@0
|
72 |
do_test vtabA-1.6 {
|
sl@0
|
73 |
execsql {
|
sl@0
|
74 |
SELECT * FROM t1e;
|
sl@0
|
75 |
}
|
sl@0
|
76 |
} {{value a} {value c}}
|
sl@0
|
77 |
|
sl@0
|
78 |
# Test that the expansion of a '*' expression in the result set of
|
sl@0
|
79 |
# a SELECT does not include the hidden column.
|
sl@0
|
80 |
#
|
sl@0
|
81 |
do_test vtabA-1.7 {
|
sl@0
|
82 |
execsql {
|
sl@0
|
83 |
INSERT INTO t1e SELECT * FROM t1e;
|
sl@0
|
84 |
}
|
sl@0
|
85 |
} {}
|
sl@0
|
86 |
do_test vtabA-1.8 {
|
sl@0
|
87 |
execsql {
|
sl@0
|
88 |
SELECT * FROM t1e;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
} {{value a} {value c} {value a} {value c}}
|
sl@0
|
91 |
|
sl@0
|
92 |
# Test that the declaration type of the hidden column does not include
|
sl@0
|
93 |
# the token "HIDDEN".
|
sl@0
|
94 |
#
|
sl@0
|
95 |
do_test vtabA-1.9 {
|
sl@0
|
96 |
get_decltype t1e b
|
sl@0
|
97 |
} {VARCHAR}
|
sl@0
|
98 |
do_test vtabA-1.10 {
|
sl@0
|
99 |
get_collist t1e
|
sl@0
|
100 |
} {a c}
|
sl@0
|
101 |
|
sl@0
|
102 |
#----------------------------------------------------------------------
|
sl@0
|
103 |
# These tests vtabA-2.* concentrate on testing that the HIDDEN token
|
sl@0
|
104 |
# is detected and handled correctly in various declarations.
|
sl@0
|
105 |
#
|
sl@0
|
106 |
proc analyse_parse {columns decltype_list} {
|
sl@0
|
107 |
db eval { DROP TABLE IF EXISTS t1e; }
|
sl@0
|
108 |
db eval { DROP TABLE IF EXISTS t1; }
|
sl@0
|
109 |
db eval " CREATE TABLE t1 $columns "
|
sl@0
|
110 |
db eval { CREATE VIRTUAL TABLE t1e USING echo(t1) }
|
sl@0
|
111 |
set ret [list [get_collist t1e]]
|
sl@0
|
112 |
foreach c $decltype_list {
|
sl@0
|
113 |
lappend ret [get_decltype t1e $c]
|
sl@0
|
114 |
}
|
sl@0
|
115 |
set ret
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
do_test vtabA-2.1 {
|
sl@0
|
119 |
analyse_parse {(a text, b integer hidden, c hidden)} {a b c}
|
sl@0
|
120 |
} {a text integer {}}
|
sl@0
|
121 |
|
sl@0
|
122 |
do_test vtabA-2.2 {
|
sl@0
|
123 |
analyse_parse {(a hidden , b integerhidden, c hidden1)} {a b c}
|
sl@0
|
124 |
} {{b c} {} integerhidden hidden1}
|
sl@0
|
125 |
|
sl@0
|
126 |
do_test vtabA-2.3 {
|
sl@0
|
127 |
analyse_parse {(a HiDden, b HIDDEN, c hidden)} {a b c}
|
sl@0
|
128 |
} {{} {} {} {}}
|
sl@0
|
129 |
|
sl@0
|
130 |
do_test vtabA-2.4 {
|
sl@0
|
131 |
analyse_parse {(a whatelse can i hidden test, b HIDDEN hidden)} {a b}
|
sl@0
|
132 |
} {{} {whatelse can i test} hidden}
|
sl@0
|
133 |
|
sl@0
|
134 |
finish_test
|