summaryrefslogtreecommitdiffstats
path: root/ext/fts5/test/fts5umlaut.test
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 17:28:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 17:28:19 +0000
commit18657a960e125336f704ea058e25c27bd3900dcb (patch)
tree17b438b680ed45a996d7b59951e6aa34023783f2 /ext/fts5/test/fts5umlaut.test
parentInitial commit. (diff)
downloadsqlite3-upstream.tar.xz
sqlite3-upstream.zip
Adding upstream version 3.40.1.upstream/3.40.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--ext/fts5/test/fts5umlaut.test65
1 files changed, 65 insertions, 0 deletions
diff --git a/ext/fts5/test/fts5umlaut.test b/ext/fts5/test/fts5umlaut.test
new file mode 100644
index 0000000..fa94810
--- /dev/null
+++ b/ext/fts5/test/fts5umlaut.test
@@ -0,0 +1,65 @@
+# 2014 June 17
+#
+# The author disclaims copyright to this source code. In place of
+# a legal notice, here is a blessing:
+#
+# May you do good and not evil.
+# May you find forgiveness for yourself and forgive others.
+# May you share freely, never taking more than you give.
+#
+#*************************************************************************
+# This file implements regression tests for SQLite library. The
+# focus of this script is testing the FTS5 module.
+#
+
+source [file join [file dirname [info script]] fts5_common.tcl]
+set testprefix fts5umlaut
+
+# If SQLITE_ENABLE_FTS5 is not defined, omit this file.
+ifcapable !fts5 {
+ finish_test
+ return
+}
+
+do_execsql_test 1.0 {
+ CREATE VIRTUAL TABLE t1 USING fts5(x);
+ CREATE VIRTUAL TABLE t2 USING fts5(
+ x,
+ tokenize="unicode61 remove_diacritics 2"
+ );
+}
+
+foreach {tn q res1 res2} {
+ 1 "Hà Nội" 0 1
+ 2 "Hà Noi" 1 1
+ 3 "Ha Noi" 1 1
+ 4 "Ha N\u1ed9i" 0 1
+ 5 "Ha N\u006fi" 1 1
+ 6 "Ha N\u006f\u0302i" 1 1
+ 7 "Ha N\u006f\u0323\u0302i" 1 1
+} {
+ do_execsql_test 1.$tn.1 {
+ DELETE FROM t1;
+ INSERT INTO t1(rowid, x) VALUES (1, 'Ha Noi');
+ SELECT count(*) FROM t1($q)
+ } $res1
+ do_execsql_test 1.$tn.2 {
+ DELETE FROM t1;
+ INSERT INTO t1(rowid, x) VALUES (1, $q);
+ SELECT count(*) FROM t1('Ha Noi')
+ } $res1
+
+ do_execsql_test 1.$tn.2 {
+ DELETE FROM t2;
+ INSERT INTO t2(rowid, x) VALUES (1, 'Ha Noi');
+ SELECT count(*) FROM t2($q)
+ } $res2
+ do_execsql_test 1.$tn.2 {
+ DELETE FROM t2;
+ INSERT INTO t2(rowid, x) VALUES (1, $q);
+ SELECT count(*) FROM t2('Ha Noi')
+ } $res2
+}
+
+finish_test
+