summaryrefslogtreecommitdiffstats
path: root/ext/fts5/test/fts5determin.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/fts5determin.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 'ext/fts5/test/fts5determin.test')
-rw-r--r--ext/fts5/test/fts5determin.test65
1 files changed, 65 insertions, 0 deletions
diff --git a/ext/fts5/test/fts5determin.test b/ext/fts5/test/fts5determin.test
new file mode 100644
index 0000000..c9094ed
--- /dev/null
+++ b/ext/fts5/test/fts5determin.test
@@ -0,0 +1,65 @@
+# 2016 March 21
+#
+# 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.
+#
+# Specifically, that the fts5 module is deterministic. At one point, when
+# segment ids were allocated using sqlite3_randomness(), this was not the
+# case.
+#
+
+source [file join [file dirname [info script]] fts5_common.tcl]
+set testprefix fts5aa
+return_if_no_fts5
+
+proc do_determin_test {tn} {
+ uplevel [list
+ do_execsql_test $tn {
+ SELECT (SELECT md5sum(id, block) FROM t1_data)==
+ (SELECT md5sum(id, block) FROM t2_data),
+ (SELECT md5sum(id, block) FROM t1_data)==
+ (SELECT md5sum(id, block) FROM t3_data)
+ } {1 1}
+ ]
+}
+
+foreach_detail_mode $::testprefix {
+ do_execsql_test 1.0 {
+ CREATE VIRTUAL TABLE t1 USING fts5(a, b, prefix="1 2", detail=%DETAIL%);
+ CREATE VIRTUAL TABLE t2 USING fts5(a, b, prefix="1 2", detail=%DETAIL%);
+ CREATE VIRTUAL TABLE t3 USING fts5(a, b, prefix="1 2", detail=%DETAIL%);
+ }
+
+ do_test 1.1 {
+ foreach t {t1 t2 t3} {
+ execsql [string map [list TBL $t] {
+ INSERT INTO TBL VALUES('a b c', 'd e f');
+ INSERT INTO TBL VALUES('c1 c2 c3', 'c1 c2 c3');
+ INSERT INTO TBL VALUES('xyzxyzxyz', 'xyzxyzxyz');
+ }]
+ }
+ } {}
+
+ do_determin_test 1.2
+
+ do_test 1.3 {
+ foreach t {t1 t2 t3} {
+ execsql [string map [list TBL $t] {
+ INSERT INTO TBL(TBL) VALUES('optimize');
+ }]
+ }
+ } {}
+
+ do_determin_test 1.4
+}
+
+
+finish_test