blob: 724172065fd0585567b422fbcb721068efa822de [file] [log] [blame]
drh80084ca2011-07-11 23:45:44 +00001# 2011 July 11
2#
3# The author disclaims copyright to this source code. In place of
4# a legal notice, here is a blessing:
5#
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.
9#
10#***********************************************************************
11# This file implements regression tests for SQLite library. The
12# focus of this script is recovery from transient manditory locks
13# that sometimes appear on database files due to anti-virus software.
14#
15
16if {$tcl_platform(platform)!="windows"} return
17
18set testdir [file dirname $argv0]
19source $testdir/tester.tcl
20
21set testprefix win32lock
22
drha32ad842011-07-12 13:51:05 +000023db close
24sqlite3_shutdown
25test_sqlite3_log xLog
26proc xLog {error_code msg} {
27 lappend ::log $msg
28}
29sqlite3 db test.db
drh9b4c59f2013-04-15 17:03:42 +000030db eval {PRAGMA mmap_size=0}
drha32ad842011-07-12 13:51:05 +000031
drh80084ca2011-07-11 23:45:44 +000032do_test win32lock-1.1 {
33 db eval {
34 PRAGMA cache_size=10;
35 CREATE TABLE t1(x,y);
36 INSERT INTO t1 VALUES(1,randomblob(100000));
37 INSERT INTO t1 VALUES(2,randomblob(50000));
38 INSERT INTO t1 VALUES(3,randomblob(25000));
39 INSERT INTO t1 VALUES(4,randomblob(12500));
40 SELECT x, length(y) FROM t1 ORDER BY rowid;
41 }
42} {1 100000 2 50000 3 25000 4 12500}
43
44unset -nocomplain delay1 rc msg
drh80084ca2011-07-11 23:45:44 +000045set old_pending_byte [sqlite3_test_control_pending_byte 0x40000000]
mistachkin176f1b42011-08-02 23:34:00 +000046
47set win32_lock_ok [list]
48set win32_lock_error [list]
49set delay1 25
drh80084ca2011-07-11 23:45:44 +000050while {1} {
drh80084ca2011-07-11 23:45:44 +000051 lock_win32_file test.db 0 $::delay1
mistachkin176f1b42011-08-02 23:34:00 +000052 set ::log {}
drh80084ca2011-07-11 23:45:44 +000053 set rc [catch {db eval {SELECT x, length(y) FROM t1 ORDER BY rowid}} msg]
54 if {$rc} {
mistachkin176f1b42011-08-02 23:34:00 +000055 lappend win32_lock_error $::delay1
56 do_test win32lock-1.2-$delay1-error {
drh80084ca2011-07-11 23:45:44 +000057 set ::msg
58 } {disk I/O error}
drh80084ca2011-07-11 23:45:44 +000059 } else {
mistachkin176f1b42011-08-02 23:34:00 +000060 lappend win32_lock_ok $::delay1
61 do_test win32lock-1.2-$delay1-ok {
drh80084ca2011-07-11 23:45:44 +000062 set ::msg
63 } {1 100000 2 50000 3 25000 4 12500}
mistachkin4e6b49b2011-07-28 19:16:41 +000064 if {[info exists ::log] && $::log!=""} {
drha32ad842011-07-12 13:51:05 +000065 do_test win32lock-1.2-$delay1-log1 {
66 regsub {\d+} $::log # x
67 set x
68 } {{delayed #ms for lock/sharing conflict}}
69 }
drh80084ca2011-07-11 23:45:44 +000070 }
mistachkin176f1b42011-08-02 23:34:00 +000071 if {[llength $win32_lock_ok] && [llength $win32_lock_error]} break
72 incr delay1 25
mistachkinf2d25f22011-08-25 04:09:12 +000073 if {$delay1 > 12500} {
74 puts "Timed out waiting for \"ok\" and \"error\" results."
75 break
76 }
mistachkin176f1b42011-08-02 23:34:00 +000077 sqlite3_sleep 10
drh80084ca2011-07-11 23:45:44 +000078}
drhd0cdf012011-07-13 16:03:46 +000079
80do_test win32lock-2.0 {
81 file_control_win32_av_retry db -1 -1
82} {0 10 25}
83do_test win32lock-2.1 {
84 file_control_win32_av_retry db 1 1
85} {0 1 1}
86
mistachkin85e444c2011-08-02 23:45:53 +000087#
88# NOTE: It is known that the win32lock-2.2-* tests may fail if the system is
89# experiencing heavy load (i.e. they are very timing sensitive). This is
90# primarily due to the AV retry delay being set to 1 millisecond in the
91# win32lock-2.1 test (above). While it is important to test this corner
92# case for the AV retry logic, a failure of this test should probably not
93# be interpreted as a bug in SQLite or these test cases.
94#
mistachkin176f1b42011-08-02 23:34:00 +000095set win32_lock_ok [list]
96set win32_lock_error [list]
97set delay1 1
drhd0cdf012011-07-13 16:03:46 +000098while {1} {
drhd0cdf012011-07-13 16:03:46 +000099 lock_win32_file test.db 0 $::delay1
mistachkin176f1b42011-08-02 23:34:00 +0000100 set ::log {}
drhd0cdf012011-07-13 16:03:46 +0000101 set rc [catch {db eval {SELECT x, length(y) FROM t1 ORDER BY rowid}} msg]
102 if {$rc} {
mistachkin176f1b42011-08-02 23:34:00 +0000103 lappend win32_lock_error $::delay1
104 do_test win32lock-2.2-$delay1-error {
drhd0cdf012011-07-13 16:03:46 +0000105 set ::msg
106 } {disk I/O error}
drhd0cdf012011-07-13 16:03:46 +0000107 } else {
mistachkin176f1b42011-08-02 23:34:00 +0000108 lappend win32_lock_ok $::delay1
109 do_test win32lock-2.2-$delay1-ok {
drhd0cdf012011-07-13 16:03:46 +0000110 set ::msg
111 } {1 100000 2 50000 3 25000 4 12500}
mistachkin1b466a62011-08-02 20:19:48 +0000112 if {[info exists ::log] && $::log!=""} {
drhd0cdf012011-07-13 16:03:46 +0000113 do_test win32lock-2.2-$delay1-log1 {
114 regsub {\d+} $::log # x
115 set x
116 } {{delayed #ms for lock/sharing conflict}}
117 }
drhd0cdf012011-07-13 16:03:46 +0000118 }
mistachkin176f1b42011-08-02 23:34:00 +0000119 if {[llength $win32_lock_ok] && [llength $win32_lock_error]} break
120 incr delay1 1
mistachkinf2d25f22011-08-25 04:09:12 +0000121 if {$delay1 > 500} {
122 puts "Timed out waiting for \"ok\" and \"error\" results."
123 break
124 }
mistachkin176f1b42011-08-02 23:34:00 +0000125 sqlite3_sleep 10
drhd0cdf012011-07-13 16:03:46 +0000126}
127
128file_control_win32_av_retry db 10 25
drh80084ca2011-07-11 23:45:44 +0000129sqlite3_test_control_pending_byte $old_pending_byte
mistachkin4d60be52011-08-26 05:40:31 +0000130db close
drha32ad842011-07-12 13:51:05 +0000131sqlite3_shutdown
132test_sqlite3_log
133sqlite3_initialize
drh80084ca2011-07-11 23:45:44 +0000134finish_test