sqlcipher/test/async.test

91 lines
2.3 KiB
Plaintext
Raw Normal View History

2008-07-30 13:15:43 +00:00
#
# 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 runs all tests.
#
2009-08-11 20:01:51 +00:00
# $Id: async.test,v 1.21 2009/06/05 17:09:12 drh Exp $
2008-07-30 13:15:43 +00:00
2009-02-20 20:33:35 +00:00
set testdir [file dirname $argv0]
source $testdir/tester.tcl
2008-07-30 13:15:43 +00:00
2009-05-08 09:27:02 +00:00
if {[info commands sqlite3async_initialize] eq ""} {
2008-07-30 13:15:43 +00:00
# The async logic is not built into this system
2009-02-20 20:33:35 +00:00
finish_test
2008-07-30 13:15:43 +00:00
return
}
2009-04-21 14:39:00 +00:00
rename finish_test async_really_finish_test
2008-07-30 13:15:43 +00:00
proc finish_test {} {
catch {db close}
catch {db2 close}
catch {db3 close}
}
2010-07-22 13:16:22 +00:00
if {[info exists G(isquick)]} { set ASYNC_SAVE_ISQUICK $G(isquick) }
set G(isquick) 1
2008-07-30 13:15:43 +00:00
2009-04-21 14:39:00 +00:00
set ASYNC_INCLUDE {
2008-07-30 13:15:43 +00:00
insert.test
insert2.test
insert3.test
lock.test
lock2.test
lock3.test
select1.test
select2.test
select3.test
select4.test
trans.test
}
# Enable asynchronous IO.
2009-05-08 09:27:02 +00:00
sqlite3async_initialize "" 1
2008-07-30 13:15:43 +00:00
2010-07-22 13:16:22 +00:00
# This proc flushes the contents of the async-IO queue through to the
# underlying VFS. A couple of the test scripts identified in $ASYNC_INCLUDE
# above contain lines like "catch flush_async_queue" in places where
# this is required for the tests to work in async mode.
#
proc flush_async_queue {} {
2009-05-08 09:27:02 +00:00
sqlite3async_control halt idle
2010-07-22 13:16:22 +00:00
sqlite3async_start
2008-07-30 13:15:43 +00:00
sqlite3async_wait
2009-05-08 09:27:02 +00:00
sqlite3async_control halt never
2008-07-30 13:15:43 +00:00
}
2010-07-22 13:16:22 +00:00
rename do_test async_really_do_test
proc do_test {name args} {
uplevel async_really_do_test async_io-$name $args
flush_async_queue
}
2008-07-30 13:15:43 +00:00
foreach testfile [lsort -dictionary [glob $testdir/*.test]] {
set tail [file tail $testfile]
2009-04-21 14:39:00 +00:00
if {[lsearch -exact $ASYNC_INCLUDE $tail]<0} continue
2008-07-30 13:15:43 +00:00
source $testfile
# Make sure everything is flushed through. This is because [source]ing
# the next test file will delete the database file on disk (using
2011-12-26 19:52:17 +00:00
# [delete_file]). If the asynchronous backend still has the file
2008-07-30 13:15:43 +00:00
# open, it will become confused.
#
2010-07-22 13:16:22 +00:00
flush_async_queue
2008-07-30 13:15:43 +00:00
}
# Flush the write-queue and disable asynchronous IO. This should ensure
# all allocated memory is cleaned up.
set sqlite3async_trace 1
2010-07-22 13:16:22 +00:00
flush_async_queue
2009-05-08 09:27:02 +00:00
sqlite3async_shutdown
2008-07-30 13:15:43 +00:00
set sqlite3async_trace 0
2009-04-21 14:39:00 +00:00
rename do_test {}
rename async_really_do_test do_test
rename finish_test {}
rename async_really_finish_test finish_test
2010-07-22 13:16:22 +00:00
if {[info exists ASYNC_SAVE_ISQUICK]} { set G(isquick) $ASYNC_SAVE_ISQUICK }
2009-04-21 14:39:00 +00:00
finish_test