Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: third_party/sqlite/src/ext/fts5/test/fts5faultA.test

Issue 2751253002: [sql] Import SQLite 3.17.0. (Closed)
Patch Set: also clang on Linux i386 Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/sqlite/src/ext/fts5/test/fts5faultA.test
diff --git a/third_party/sqlite/src/ext/fts5/test/fts5faultA.test b/third_party/sqlite/src/ext/fts5/test/fts5faultA.test
new file mode 100644
index 0000000000000000000000000000000000000000..817ccb4ee848eb6fcd4c130cd3a173371d355d62
--- /dev/null
+++ b/third_party/sqlite/src/ext/fts5/test/fts5faultA.test
@@ -0,0 +1,64 @@
+# 2016 February 2
+#
+# 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 is focused on OOM errors.
+#
+
+source [file join [file dirname [info script]] fts5_common.tcl]
+source $testdir/malloc_common.tcl
+set testprefix fts5faultA
+
+# If SQLITE_ENABLE_FTS3 is defined, omit this file.
+ifcapable !fts5 {
+ finish_test
+ return
+}
+
+foreach_detail_mode $testprefix {
+ do_execsql_test 1.0 {
+ CREATE VIRTUAL TABLE o1 USING fts5(a, detail=%DETAIL%);
+ INSERT INTO o1(o1, rank) VALUES('pgsz', 32);
+
+ WITH s(i) AS ( SELECT 1 UNION ALL SELECT i+1 FROM s WHERE i<300 )
+ INSERT INTO o1 SELECT 'A B C' FROM s;
+
+ INSERT INTO o1 VALUES('A X C');
+
+ WITH s(i) AS ( SELECT 1 UNION ALL SELECT i+1 FROM s WHERE i<300 )
+ INSERT INTO o1 SELECT 'A B C' FROM s;
+ }
+
+ do_faultsim_test 1 -faults oom* -prep {
+ sqlite3 db test.db
+ } -body {
+ execsql { SELECT rowid FROM o1('a NOT b') }
+ } -test {
+ faultsim_test_result {0 301}
+ }
+}
+
+do_execsql_test 2.0 {
+ CREATE VIRTUAL TABLE o2 USING fts5(a);
+
+ INSERT INTO o2 VALUES('A B C');
+ WITH s(i) AS ( SELECT 1 UNION ALL SELECT i+1 FROM s WHERE i<300 )
+ INSERT INTO o2 SELECT group_concat('A B C ') FROM s;
+}
+
+do_faultsim_test 2 -faults oom* -prep {
+ sqlite3 db test.db
+} -body {
+ execsql { SELECT rowid FROM o2('a+b+c NOT xyz') }
+} -test {
+ faultsim_test_result {0 {1 2}}
+}
+finish_test
+
« no previous file with comments | « third_party/sqlite/src/ext/fts5/test/fts5fault9.test ('k') | third_party/sqlite/src/ext/fts5/test/fts5faultB.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698