os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/ioerr5.test
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
# 2008 May 12
sl@0
     2
#
sl@0
     3
# The author disclaims copyright to this source code.  In place of
sl@0
     4
# a legal notice, here is a blessing:
sl@0
     5
#
sl@0
     6
#    May you do good and not evil.
sl@0
     7
#    May you find forgiveness for yourself and forgive others.
sl@0
     8
#    May you share freely, never taking more than you give.
sl@0
     9
#
sl@0
    10
#***********************************************************************
sl@0
    11
#
sl@0
    12
# This file tests that if sqlite3_release_memory() is called to reclaim
sl@0
    13
# memory from a pager that is in the error-state, SQLite does not 
sl@0
    14
# incorrectly write dirty pages out to the database (not safe to do
sl@0
    15
# once the pager is in error state).
sl@0
    16
#
sl@0
    17
# $Id: ioerr5.test,v 1.5 2008/08/28 18:35:34 danielk1977 Exp $
sl@0
    18
sl@0
    19
set testdir [file dirname $argv0]
sl@0
    20
source $testdir/tester.tcl
sl@0
    21
sl@0
    22
ifcapable !memorymanage||!shared_cache {
sl@0
    23
  finish_test
sl@0
    24
  return
sl@0
    25
}
sl@0
    26
sl@0
    27
db close
sl@0
    28
sl@0
    29
set ::enable_shared_cache [sqlite3_enable_shared_cache 1]
sl@0
    30
set ::soft_limit [sqlite3_soft_heap_limit 1048576]
sl@0
    31
sl@0
    32
# This procedure prepares, steps and finalizes an SQL statement via the
sl@0
    33
# UTF-16 APIs. The text representation of an SQLite error code is returned
sl@0
    34
# ("SQLITE_OK", "SQLITE_IOERR" etc.). The actual results returned by the
sl@0
    35
# SQL statement, if it is a SELECT, are not available.
sl@0
    36
#
sl@0
    37
# This can be useful for testing because it forces SQLite to make an extra 
sl@0
    38
# call to sqlite3_malloc() when translating from the supplied UTF-16 to
sl@0
    39
# the UTF-8 encoding used internally.
sl@0
    40
#
sl@0
    41
proc dosql16 {zSql {db db}} {
sl@0
    42
  set sql [encoding convertto unicode $zSql]
sl@0
    43
  append sql "\00\00"
sl@0
    44
  set stmt [sqlite3_prepare16 $db $sql -1 {}]
sl@0
    45
  sqlite3_step $stmt
sl@0
    46
  set rc [sqlite3_finalize $stmt]
sl@0
    47
}
sl@0
    48
sl@0
    49
proc compilesql16 {zSql {db db}} {
sl@0
    50
  set sql [encoding convertto unicode $zSql]
sl@0
    51
  append sql "\00\00"
sl@0
    52
  set stmt [sqlite3_prepare16 $db $sql -1 {}]
sl@0
    53
  set rc [sqlite3_finalize $stmt]
sl@0
    54
}
sl@0
    55
sl@0
    56
# Open two database connections (handle db and db2) to database "test.db".
sl@0
    57
#
sl@0
    58
proc opendatabases {} {
sl@0
    59
  catch {db close}
sl@0
    60
  catch {db2 close}
sl@0
    61
  sqlite3 db test.db
sl@0
    62
  sqlite3 db2 test.db
sl@0
    63
  db2 cache size 0
sl@0
    64
  db cache size 0
sl@0
    65
  execsql {
sl@0
    66
    pragma page_size=512;
sl@0
    67
    pragma auto_vacuum=2;
sl@0
    68
    pragma cache_size=16;
sl@0
    69
  }
sl@0
    70
}
sl@0
    71
sl@0
    72
# Open two database connections and create a single table in the db.
sl@0
    73
#
sl@0
    74
do_test ioerr5-1.0 {
sl@0
    75
  opendatabases
sl@0
    76
  execsql { CREATE TABLE A(Id INTEGER, Name TEXT) }
sl@0
    77
} {}
sl@0
    78
sl@0
    79
foreach locking_mode {normal exclusive} {
sl@0
    80
  set nPage 2
sl@0
    81
  for {set iFail 1} {$iFail<200} {incr iFail} {
sl@0
    82
    sqlite3_soft_heap_limit 1048576
sl@0
    83
    opendatabases
sl@0
    84
    execsql { pragma locking_mode=exclusive }
sl@0
    85
    set nRow [db one {SELECT count(*) FROM a}]
sl@0
    86
  
sl@0
    87
    # Dirty (at least) one of the pages in the cache.
sl@0
    88
    do_test ioerr5-1.$locking_mode-$iFail.1 {
sl@0
    89
      execsql {
sl@0
    90
        BEGIN EXCLUSIVE;
sl@0
    91
        INSERT INTO a VALUES(1, 'ABCDEFGHIJKLMNOP');
sl@0
    92
      }
sl@0
    93
    } {}
sl@0
    94
  
sl@0
    95
    # Now try to commit the transaction. Cause an IO error to occur
sl@0
    96
    # within this operation, which moves the pager into the error state.
sl@0
    97
    #
sl@0
    98
    set ::sqlite_io_error_persist 1
sl@0
    99
    set ::sqlite_io_error_pending $iFail
sl@0
   100
    do_test ioerr5-1.$locking_mode-$iFail.2 {
sl@0
   101
      set rc [catchsql {COMMIT}]
sl@0
   102
      list
sl@0
   103
    } {}
sl@0
   104
    set ::sqlite_io_error_hit 0
sl@0
   105
    set ::sqlite_io_error_persist 0
sl@0
   106
    set ::sqlite_io_error_pending 0
sl@0
   107
  
sl@0
   108
    # Read the contents of the database file into a Tcl variable.
sl@0
   109
    #
sl@0
   110
    set fd [open test.db]
sl@0
   111
    fconfigure $fd -translation binary -encoding binary
sl@0
   112
    set zDatabase [read $fd]
sl@0
   113
    close $fd
sl@0
   114
sl@0
   115
    # Set a very low soft-limit and then try to compile an SQL statement 
sl@0
   116
    # from UTF-16 text. To do this, SQLite will need to reclaim memory
sl@0
   117
    # from the pager that is in error state. Including that associated
sl@0
   118
    # with the dirty page.
sl@0
   119
    #
sl@0
   120
    do_test ioerr5-1.$locking_mode-$iFail.3 {
sl@0
   121
      set bt [btree_from_db db]
sl@0
   122
      sqlite3_soft_heap_limit 1024
sl@0
   123
      compilesql16 "SELECT 10"
sl@0
   124
      array set stats [btree_pager_stats $bt]
sl@0
   125
sl@0
   126
      # If the pager made it all the way to PAGER_SYNCED state, then 
sl@0
   127
      # both in-memory pages are clean. Following the calls to 
sl@0
   128
      # release_memory() that were made as part of the [compilesql16]
sl@0
   129
      # above, there will be zero pages left in the cache.
sl@0
   130
      #
sl@0
   131
      # If the pager did not make it as far as PAGER_SYNCED, the two
sl@0
   132
      # in memory pages are still dirty. So there will be 2 pages left
sl@0
   133
      # in the cache following the release_memory() calls.
sl@0
   134
      #
sl@0
   135
      if {$stats(state)==5} {
sl@0
   136
        set nPage 0
sl@0
   137
      }
sl@0
   138
      expr {$stats(page)==$nPage}
sl@0
   139
    } {1}
sl@0
   140
sl@0
   141
    # Ensure that nothing was written to the database while reclaiming
sl@0
   142
    # memory from the pager in error state.
sl@0
   143
    #
sl@0
   144
    do_test ioerr5-1.$locking_mode-$iFail.4 {
sl@0
   145
      set fd [open test.db]
sl@0
   146
      fconfigure $fd -translation binary -encoding binary
sl@0
   147
      set zDatabase2 [read $fd]
sl@0
   148
      close $fd
sl@0
   149
      expr {$zDatabase eq $zDatabase2}
sl@0
   150
    } {1}
sl@0
   151
  
sl@0
   152
    if {$rc eq [list 0 {}]} {
sl@0
   153
      do_test ioerr5.1-$locking_mode-$iFail.3 {
sl@0
   154
        execsql { SELECT count(*) FROM a }
sl@0
   155
      } [expr $nRow+1]
sl@0
   156
      break
sl@0
   157
    }
sl@0
   158
  }
sl@0
   159
}
sl@0
   160
sl@0
   161
# Make sure this test script doesn't leave any files open.
sl@0
   162
#
sl@0
   163
do_test ioerr5-1.X {
sl@0
   164
  catch { db close }
sl@0
   165
  catch { db2 close }
sl@0
   166
  set sqlite_open_file_count
sl@0
   167
} 0
sl@0
   168
sl@0
   169
do_test ioerr5-2.0 {
sl@0
   170
  sqlite3 db test.db
sl@0
   171
  execsql { CREATE INDEX i1 ON a(id, name); }
sl@0
   172
} {}
sl@0
   173
sl@0
   174
foreach locking_mode {exclusive normal} {
sl@0
   175
  for {set iFail 1} {$iFail<200} {incr iFail} {
sl@0
   176
    sqlite3_soft_heap_limit 1048576
sl@0
   177
    opendatabases
sl@0
   178
    execsql { pragma locking_mode=exclusive }
sl@0
   179
    set nRow [db one {SELECT count(*) FROM a}]
sl@0
   180
  
sl@0
   181
    do_test ioerr5-2.$locking_mode-$iFail.1 {
sl@0
   182
      execsql {
sl@0
   183
        BEGIN EXCLUSIVE;
sl@0
   184
        INSERT INTO a VALUES(1, 'ABCDEFGHIJKLMNOP');
sl@0
   185
      }
sl@0
   186
    } {}
sl@0
   187
sl@0
   188
    set ::sqlite_io_error_persist 1
sl@0
   189
    set ::sqlite_io_error_pending $iFail
sl@0
   190
sl@0
   191
    sqlite3_release_memory 10000
sl@0
   192
sl@0
   193
    set error_hit $::sqlite_io_error_hit
sl@0
   194
    set ::sqlite_io_error_hit 0
sl@0
   195
    set ::sqlite_io_error_persist 0
sl@0
   196
    set ::sqlite_io_error_pending 0
sl@0
   197
    if {$error_hit} {
sl@0
   198
      do_test ioerr5-2.$locking_mode-$iFail.3a {
sl@0
   199
        catchsql COMMIT
sl@0
   200
      } {1 {disk I/O error}}
sl@0
   201
    } else {
sl@0
   202
      do_test ioerr5-2.$locking_mode-$iFail.3b {
sl@0
   203
        execsql COMMIT
sl@0
   204
      } {}
sl@0
   205
      break
sl@0
   206
    }
sl@0
   207
  }
sl@0
   208
}
sl@0
   209
sl@0
   210
# Make sure this test script doesn't leave any files open.
sl@0
   211
#
sl@0
   212
do_test ioerr5-2.X {
sl@0
   213
  catch { db close }
sl@0
   214
  catch { db2 close }
sl@0
   215
  set sqlite_open_file_count
sl@0
   216
} 0
sl@0
   217
sl@0
   218
sqlite3_enable_shared_cache $::enable_shared_cache
sl@0
   219
sqlite3_soft_heap_limit $::soft_limit
sl@0
   220
sl@0
   221
finish_test