sl@0
|
1 |
# 2007 July 24
|
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 focus
|
sl@0
|
12 |
# of this script is testing the FTS1 module rename functionality. Mostly
|
sl@0
|
13 |
# copied from fts2o.test.
|
sl@0
|
14 |
#
|
sl@0
|
15 |
# $Id: fts1o.test,v 1.2 2007/08/30 20:01:33 shess Exp $
|
sl@0
|
16 |
#
|
sl@0
|
17 |
|
sl@0
|
18 |
set testdir [file dirname $argv0]
|
sl@0
|
19 |
source $testdir/tester.tcl
|
sl@0
|
20 |
|
sl@0
|
21 |
# If SQLITE_ENABLE_FTS1 is not defined, omit this file.
|
sl@0
|
22 |
ifcapable !fts1 {
|
sl@0
|
23 |
finish_test
|
sl@0
|
24 |
return
|
sl@0
|
25 |
}
|
sl@0
|
26 |
|
sl@0
|
27 |
db eval {
|
sl@0
|
28 |
CREATE VIRTUAL TABLE t1 USING fts1(a, b, c);
|
sl@0
|
29 |
INSERT INTO t1(a, b, c) VALUES('one three four', 'one four', 'one four two');
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
#---------------------------------------------------------------------
|
sl@0
|
33 |
# Test that it is possible to rename an fts1 table.
|
sl@0
|
34 |
#
|
sl@0
|
35 |
do_test fts1o-1.1 {
|
sl@0
|
36 |
execsql { SELECT tbl_name FROM sqlite_master WHERE type = 'table'}
|
sl@0
|
37 |
} {t1 t1_content t1_term}
|
sl@0
|
38 |
do_test fts1o-1.2 {
|
sl@0
|
39 |
execsql { ALTER TABLE t1 RENAME to fts_t1; }
|
sl@0
|
40 |
} {}
|
sl@0
|
41 |
do_test fts1o-1.3 {
|
sl@0
|
42 |
execsql { SELECT rowid, snippet(fts_t1) FROM fts_t1 WHERE a MATCH 'four'; }
|
sl@0
|
43 |
} {1 {one three <b>four</b>}}
|
sl@0
|
44 |
do_test fts1o-1.4 {
|
sl@0
|
45 |
execsql { SELECT tbl_name FROM sqlite_master WHERE type = 'table'}
|
sl@0
|
46 |
} {fts_t1 fts_t1_content fts_t1_term}
|
sl@0
|
47 |
|
sl@0
|
48 |
# See what happens when renaming the fts1 table fails.
|
sl@0
|
49 |
#
|
sl@0
|
50 |
do_test fts1o-2.1 {
|
sl@0
|
51 |
catchsql {
|
sl@0
|
52 |
CREATE TABLE t1_term(a, b, c);
|
sl@0
|
53 |
ALTER TABLE fts_t1 RENAME to t1;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
} {1 {SQL logic error or missing database}}
|
sl@0
|
56 |
do_test fts1o-2.2 {
|
sl@0
|
57 |
execsql { SELECT rowid, snippet(fts_t1) FROM fts_t1 WHERE a MATCH 'four'; }
|
sl@0
|
58 |
} {1 {one three <b>four</b>}}
|
sl@0
|
59 |
do_test fts1o-2.3 {
|
sl@0
|
60 |
execsql { SELECT tbl_name FROM sqlite_master WHERE type = 'table'}
|
sl@0
|
61 |
} {fts_t1 fts_t1_content fts_t1_term t1_term}
|
sl@0
|
62 |
|
sl@0
|
63 |
# See what happens when renaming the fts1 table fails inside a transaction.
|
sl@0
|
64 |
#
|
sl@0
|
65 |
do_test fts1o-3.1 {
|
sl@0
|
66 |
execsql {
|
sl@0
|
67 |
BEGIN;
|
sl@0
|
68 |
INSERT INTO fts_t1(a, b, c) VALUES('one two three', 'one four', 'one two');
|
sl@0
|
69 |
}
|
sl@0
|
70 |
} {}
|
sl@0
|
71 |
do_test fts1o-3.2 {
|
sl@0
|
72 |
catchsql {
|
sl@0
|
73 |
ALTER TABLE fts_t1 RENAME to t1;
|
sl@0
|
74 |
}
|
sl@0
|
75 |
} {1 {SQL logic error or missing database}}
|
sl@0
|
76 |
# NOTE(shess) rowid AS rowid to defeat caching. Otherwise, this
|
sl@0
|
77 |
# seg-faults, I suspect that there's something up with a stale
|
sl@0
|
78 |
# virtual-table reference, but I'm not quite sure how it happens here
|
sl@0
|
79 |
# but not for fts2o.test.
|
sl@0
|
80 |
do_test fts1o-3.3 {
|
sl@0
|
81 |
execsql { SELECT rowid AS rowid, snippet(fts_t1) FROM fts_t1 WHERE a MATCH 'four'; }
|
sl@0
|
82 |
} {1 {one three <b>four</b>}}
|
sl@0
|
83 |
do_test fts1o-3.4 {
|
sl@0
|
84 |
execsql { SELECT tbl_name FROM sqlite_master WHERE type = 'table'}
|
sl@0
|
85 |
} {fts_t1 fts_t1_content fts_t1_term t1_term}
|
sl@0
|
86 |
do_test fts1o-3.5 {
|
sl@0
|
87 |
execsql COMMIT
|
sl@0
|
88 |
execsql {SELECT a FROM fts_t1}
|
sl@0
|
89 |
} {{one three four} {one two three}}
|
sl@0
|
90 |
do_test fts1o-3.6 {
|
sl@0
|
91 |
execsql { SELECT a, b, c FROM fts_t1 WHERE c MATCH 'four'; }
|
sl@0
|
92 |
} {{one three four} {one four} {one four two}}
|
sl@0
|
93 |
|
sl@0
|
94 |
#---------------------------------------------------------------------
|
sl@0
|
95 |
# Test that it is possible to rename an fts1 table in an attached
|
sl@0
|
96 |
# database.
|
sl@0
|
97 |
#
|
sl@0
|
98 |
file delete -force test2.db test2.db-journal
|
sl@0
|
99 |
|
sl@0
|
100 |
do_test fts1o-4.1 {
|
sl@0
|
101 |
execsql {
|
sl@0
|
102 |
DROP TABLE t1_term;
|
sl@0
|
103 |
ALTER TABLE fts_t1 RENAME to t1;
|
sl@0
|
104 |
SELECT a, b, c FROM t1 WHERE c MATCH 'two';
|
sl@0
|
105 |
}
|
sl@0
|
106 |
} {{one three four} {one four} {one four two} {one two three} {one four} {one two}}
|
sl@0
|
107 |
|
sl@0
|
108 |
do_test fts1o-4.2 {
|
sl@0
|
109 |
execsql {
|
sl@0
|
110 |
ATTACH 'test2.db' AS aux;
|
sl@0
|
111 |
CREATE VIRTUAL TABLE aux.t1 USING fts1(a, b, c);
|
sl@0
|
112 |
INSERT INTO aux.t1(a, b, c) VALUES(
|
sl@0
|
113 |
'neung song sahm', 'neung see', 'neung see song'
|
sl@0
|
114 |
);
|
sl@0
|
115 |
}
|
sl@0
|
116 |
} {}
|
sl@0
|
117 |
|
sl@0
|
118 |
do_test fts1o-4.3 {
|
sl@0
|
119 |
execsql { SELECT a, b, c FROM aux.t1 WHERE a MATCH 'song'; }
|
sl@0
|
120 |
} {{neung song sahm} {neung see} {neung see song}}
|
sl@0
|
121 |
|
sl@0
|
122 |
do_test fts1o-4.4 {
|
sl@0
|
123 |
execsql { SELECT a, b, c FROM t1 WHERE c MATCH 'two'; }
|
sl@0
|
124 |
} {{one three four} {one four} {one four two} {one two three} {one four} {one two}}
|
sl@0
|
125 |
|
sl@0
|
126 |
do_test fts1o-4.5 {
|
sl@0
|
127 |
execsql { ALTER TABLE aux.t1 RENAME TO t2 }
|
sl@0
|
128 |
} {}
|
sl@0
|
129 |
|
sl@0
|
130 |
do_test fts1o-4.6 {
|
sl@0
|
131 |
execsql { SELECT a, b, c FROM t2 WHERE a MATCH 'song'; }
|
sl@0
|
132 |
} {{neung song sahm} {neung see} {neung see song}}
|
sl@0
|
133 |
|
sl@0
|
134 |
do_test fts1o-4.7 {
|
sl@0
|
135 |
execsql { SELECT a, b, c FROM t1 WHERE c MATCH 'two'; }
|
sl@0
|
136 |
} {{one three four} {one four} {one four two} {one two three} {one four} {one two}}
|
sl@0
|
137 |
|
sl@0
|
138 |
finish_test
|