Snapshot of upstream SQLite 3.46.1
[sqlcipher.git] / ext / fts5 / test / fts5tokenizer2.test
blob52b30326aee6e060f7cdb09a2574d0414d49f401
1 # 2023 Nov 03
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 #***********************************************************************
12 # Tests focusing on the built-in fts5 tokenizers. 
15 source [file join [file dirname [info script]] fts5_common.tcl]
16 set testprefix fts5tokenizer2
18 # If SQLITE_ENABLE_FTS5 is defined, omit this file.
19 ifcapable !fts5 {
20   finish_test
21   return
24 sqlite3_fts5_create_tokenizer db tst get_tst_tokenizer
25 proc get_tst_tokenizer {args} {
26   return "tst_tokenizer"
28 proc tst_tokenizer {flags txt} {
29   set token ""
30   set lTok [list]
32   foreach c [split $txt {}] {
33     if {$token==""} {
34       append token $c
35     } else {
36       set t1 [string is upper $token]
37       set t2 [string is upper $c]
39       if {$t1!=$t2} {
40         lappend lTok $token
41         set token ""
42       }
43       append token $c
44     }
45   }
46   if {$token!=""} { lappend lTok $token }
48   set iOff 0
49   foreach t $lTok {
50     set n [string length $t]
51     sqlite3_fts5_token $t $iOff [expr $iOff+$n]
52     incr iOff $n
53   }
56 do_execsql_test 1.0 {
57   CREATE VIRTUAL TABLE t1 USING fts5(t, tokenize=tst);
60 do_execsql_test 1.1 {
61   INSERT INTO t1 VALUES('AAdontBBmess');
64 do_execsql_test 1.2 {
65   SELECT snippet(t1, 0, '>', '<', '...', 4) FROM t1('BB');
66 } {AAdont>BB<mess}
68 do_execsql_test 1.3 {
69   SELECT highlight(t1, 0, '>', '<') FROM t1('BB');
70 } {AAdont>BB<mess}
72 do_execsql_test 1.4 {
73   SELECT highlight(t1, 0, '>', '<') FROM t1('AA');
74 } {>AA<dontBBmess}
76 do_execsql_test 1.5 {
77   SELECT highlight(t1, 0, '>', '<') FROM t1('dont');
78 } {AA>dont<BBmess}
80 do_execsql_test 1.6 {
81   SELECT highlight(t1, 0, '>', '<') FROM t1('mess');
82 } {AAdontBB>mess<}
84 do_execsql_test 1.7 {
85   SELECT highlight(t1, 0, '>', '<') FROM t1('BB mess');
86 } {AAdont>BBmess<}
88 # 2024-08-06 https://sqlite.org/forum/forumpost/171bcc2bcd
89 # Error handling of tokenize= arguments.
91 foreach {n tkz} {
92   1  {ascii none}
93   2  {unicode61 none}
94   3  {porter none}
95   4  {trigram none}
96   5  {ascii none 0}
97   6  {unicode61 none 0}
98   7  {porter none 0}
99   8  {trigram none 0}
100 } {
101   db eval {DROP TABLE IF EXISTS t2;}
102   do_catchsql_test 2.$n "
103      DROP TABLE IF EXISTS t2;
104      CREATE VIRTUAL TABLE t2 USING fts5(a,b,c,tokenize='$tkz');
105   " {1 {error in tokenizer constructor}}
109 finish_test