Add a test for the fixes on this branch.
[sqlite.git] / test / checkfault.test
blob3b18a64660a08236dceaf3f8b5a7d8afc0d9278e
1 # 2019 July 17
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 # This file contains fault-injection test cases for the 
13 # sqlite3_db_cacheflush API.
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
18 set testprefix cffault
19 source $testdir/malloc_common.tcl
21 do_execsql_test 1.0 {
22   CREATE TABLE t1 (Col0 CHECK(1 COLLATE BINARY BETWEEN 1 AND 1) ) ;
23   CREATE TABLE t2(b, a CHECK(
24       CASE 'abc' COLLATE nocase WHEN a THEN 1 ELSE 0 END)
25   );
28 do_faultsim_test 1.1 -faults oom* -body {
29   execsql { INSERT INTO t1 VALUES ('ABCDEFG') }
30 } -test {
31   faultsim_test_result {0 {}}
34 do_faultsim_test 1.2 -faults oom* -body {
35   execsql { INSERT INTO t2(a) VALUES('abc') }
36 } -test {
37   faultsim_test_result {0 {}}
41 finish_test