sl@0
|
1 |
# 2006 October 1
|
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 script is testing the FTS3 module, and in particular
|
sl@0
|
13 |
# the Porter stemmer.
|
sl@0
|
14 |
#
|
sl@0
|
15 |
# $Id: fts3ad.test,v 1.1 2007/08/20 17:38:42 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_FTS3 is defined, omit this file.
|
sl@0
|
22 |
ifcapable !fts3 {
|
sl@0
|
23 |
finish_test
|
sl@0
|
24 |
return
|
sl@0
|
25 |
}
|
sl@0
|
26 |
|
sl@0
|
27 |
do_test fts3ad-1.1 {
|
sl@0
|
28 |
execsql {
|
sl@0
|
29 |
CREATE VIRTUAL TABLE t1 USING fts3(content, tokenize porter);
|
sl@0
|
30 |
INSERT INTO t1(rowid, content) VALUES(1, 'running and jumping');
|
sl@0
|
31 |
SELECT rowid FROM t1 WHERE content MATCH 'run jump';
|
sl@0
|
32 |
}
|
sl@0
|
33 |
} {1}
|
sl@0
|
34 |
do_test fts3ad-1.2 {
|
sl@0
|
35 |
execsql {
|
sl@0
|
36 |
SELECT snippet(t1) FROM t1 WHERE t1 MATCH 'run jump';
|
sl@0
|
37 |
}
|
sl@0
|
38 |
} {{<b>running</b> and <b>jumping</b>}}
|
sl@0
|
39 |
do_test fts3ad-1.3 {
|
sl@0
|
40 |
execsql {
|
sl@0
|
41 |
INSERT INTO t1(rowid, content)
|
sl@0
|
42 |
VALUES(2, 'abcdefghijklmnopqrstuvwyxz');
|
sl@0
|
43 |
SELECT rowid, snippet(t1) FROM t1 WHERE t1 MATCH 'abcdefghijqrstuvwyxz'
|
sl@0
|
44 |
}
|
sl@0
|
45 |
} {2 <b>abcdefghijklmnopqrstuvwyxz</b>}
|
sl@0
|
46 |
do_test fts3ad-1.4 {
|
sl@0
|
47 |
execsql {
|
sl@0
|
48 |
SELECT rowid, snippet(t1) FROM t1 WHERE t1 MATCH 'abcdefghijXXXXqrstuvwyxz'
|
sl@0
|
49 |
}
|
sl@0
|
50 |
} {2 <b>abcdefghijklmnopqrstuvwyxz</b>}
|
sl@0
|
51 |
do_test fts3ad-1.5 {
|
sl@0
|
52 |
execsql {
|
sl@0
|
53 |
INSERT INTO t1(rowid, content)
|
sl@0
|
54 |
VALUES(3, 'The value is 123456789');
|
sl@0
|
55 |
SELECT rowid, snippet(t1) FROM t1 WHERE t1 MATCH '123789'
|
sl@0
|
56 |
}
|
sl@0
|
57 |
} {3 {The value is <b>123456789</b>}}
|
sl@0
|
58 |
do_test fts3ad-1.6 {
|
sl@0
|
59 |
execsql {
|
sl@0
|
60 |
SELECT rowid, snippet(t1) FROM t1 WHERE t1 MATCH '123000000789'
|
sl@0
|
61 |
}
|
sl@0
|
62 |
} {3 {The value is <b>123456789</b>}}
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
finish_test
|