mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Avoid a crash that can occur after an obscure OOM in the built-in INSTR()
function. FossilOrigin-Name: b86b79c442a58d10aa005ba4f34095375a88d242
This commit is contained in:
68
test/instrfault.test
Normal file
68
test/instrfault.test
Normal file
@ -0,0 +1,68 @@
|
||||
# 2016 November 4
|
||||
#
|
||||
# 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 file is testing OOM error handling within the built-in
|
||||
# INSTR() function.
|
||||
#
|
||||
|
||||
|
||||
set testdir [file dirname $argv0]
|
||||
source $testdir/tester.tcl
|
||||
set testprefix instrfault
|
||||
|
||||
# Use big NEEDLE and HAYSTACK strings. Strings so large they cannot
|
||||
# use lookaside buffers.
|
||||
#
|
||||
set ::NEEDLE [string repeat "abcdefghijklmnopqrstuvwxyz" 10]
|
||||
set ::HAYSTACK "[string repeat 123 10]$NEEDLE[string repeat 456 10]"
|
||||
|
||||
foreach {enc} {
|
||||
utf8
|
||||
utf16
|
||||
} {
|
||||
reset_db
|
||||
execsql "PRAGMA encoding = $enc"
|
||||
do_execsql_test 1.$enc.1 {
|
||||
CREATE TABLE t1(n, h);
|
||||
INSERT INTO t1 VALUES($::NEEDLE, $::HAYSTACK);
|
||||
} {}
|
||||
|
||||
do_faultsim_test 1.$enc.1 -faults oom-t* -prep {
|
||||
execsql { SELECT instr(h, n) FROM t1 }
|
||||
} -body {
|
||||
execsql { SELECT instr(h, n) FROM t1 }
|
||||
} -test {
|
||||
faultsim_test_result {0 31}
|
||||
}
|
||||
|
||||
do_faultsim_test 1.$enc.2 -faults oom-t* -prep {
|
||||
execsql { SELECT instr($::HAYSTACK, $::NEEDLE) FROM t1 }
|
||||
} -body {
|
||||
execsql { SELECT instr($::HAYSTACK, $::NEEDLE) FROM t1 }
|
||||
} -test {
|
||||
faultsim_test_result {0 31}
|
||||
}
|
||||
|
||||
do_faultsim_test 1.$enc.3 -faults oom-t* -prep {
|
||||
set ::stmt [sqlite3_prepare_v2 db "SELECT instr(?, ?)" -1 dummy]
|
||||
sqlite3_bind_text $::stmt 1 $::HAYSTACK [string length $::HAYSTACK]
|
||||
sqlite3_bind_text $::stmt 2 $::NEEDLE [string length $::NEEDLE]
|
||||
} -body {
|
||||
set rc [sqlite3_step $::stmt]
|
||||
if {$rc=="SQLITE_NOMEM"} { error "out of memory" }
|
||||
sqlite3_column_int $::stmt 0
|
||||
} -test {
|
||||
faultsim_test_result {0 31}
|
||||
sqlite3_finalize $::stmt
|
||||
}
|
||||
}
|
||||
|
||||
finish_test
|
Reference in New Issue
Block a user