os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/incrvacuum_ioerr.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
# 2001 October 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
# This file implements regression tests for SQLite library.  The
sl@0
    12
# focus of this file is testing for correct handling of I/O errors
sl@0
    13
# such as writes failing because the disk is full.
sl@0
    14
# 
sl@0
    15
# The tests in this file use special facilities that are only
sl@0
    16
# available in the SQLite test fixture.
sl@0
    17
#
sl@0
    18
# $Id: incrvacuum_ioerr.test,v 1.6 2008/07/12 14:52:20 drh Exp $
sl@0
    19
sl@0
    20
set testdir [file dirname $argv0]
sl@0
    21
source $testdir/tester.tcl
sl@0
    22
sl@0
    23
# If this build of the library does not support auto-vacuum, omit this
sl@0
    24
# whole file.
sl@0
    25
ifcapable {!autovacuum} {
sl@0
    26
  finish_test
sl@0
    27
  return
sl@0
    28
}
sl@0
    29
sl@0
    30
do_ioerr_test incrvacuum-ioerr-1 -cksum 1 -sqlprep {
sl@0
    31
  PRAGMA auto_vacuum = 'incremental';
sl@0
    32
  CREATE TABLE abc(a);
sl@0
    33
  INSERT INTO abc VALUES(randstr(1500,1500));
sl@0
    34
} -sqlbody {
sl@0
    35
  BEGIN;
sl@0
    36
  CREATE TABLE abc2(a);
sl@0
    37
  DELETE FROM abc;
sl@0
    38
  PRAGMA incremental_vacuum;
sl@0
    39
  COMMIT;
sl@0
    40
} 
sl@0
    41
sl@0
    42
# do_ioerr_test incrvacuum-ioerr-3 -start 1 -cksum 1 -tclprep {
sl@0
    43
#   db eval {
sl@0
    44
#     PRAGMA auto_vacuum = 'full';
sl@0
    45
#     PRAGMA cache_size = 10;
sl@0
    46
#     BEGIN;
sl@0
    47
#     CREATE TABLE abc(a, UNIQUE(a));
sl@0
    48
#   }
sl@0
    49
#   for {set ii 0} {$ii < 25} {incr ii} {
sl@0
    50
#     db eval {INSERT INTO abc VALUES(randstr(1500,1500))}
sl@0
    51
#   }
sl@0
    52
#   db eval COMMIT
sl@0
    53
# } -sqlbody {
sl@0
    54
#   BEGIN;
sl@0
    55
#   DELETE FROM abc WHERE (oid%3)==0;
sl@0
    56
#   INSERT INTO abc SELECT a || '1234567890' FROM abc WHERE oid%2;
sl@0
    57
#   CREATE INDEX abc_i ON abc(a);
sl@0
    58
#   DELETE FROM abc WHERE (oid%2)==0;
sl@0
    59
#   DROP INDEX abc_i;
sl@0
    60
#   COMMIT;
sl@0
    61
# }
sl@0
    62
sl@0
    63
do_ioerr_test incrvacuum-ioerr-2 -start 1 -cksum 1 -tclprep {
sl@0
    64
  db eval {
sl@0
    65
    PRAGMA auto_vacuum = 'full';
sl@0
    66
    PRAGMA cache_size = 10;
sl@0
    67
    BEGIN;
sl@0
    68
    CREATE TABLE abc(a, UNIQUE(a));
sl@0
    69
  }
sl@0
    70
  for {set ii 0} {$ii < 25} {incr ii} {
sl@0
    71
    db eval {INSERT INTO abc VALUES(randstr(1500,1500))}
sl@0
    72
  }
sl@0
    73
  db eval COMMIT
sl@0
    74
} -sqlbody {
sl@0
    75
  BEGIN;
sl@0
    76
  PRAGMA incremental_vacuum;
sl@0
    77
  DELETE FROM abc WHERE (oid%3)==0;
sl@0
    78
  PRAGMA incremental_vacuum;
sl@0
    79
  INSERT INTO abc SELECT a || '1234567890' FROM abc WHERE oid%2;
sl@0
    80
  PRAGMA incremental_vacuum;
sl@0
    81
  CREATE INDEX abc_i ON abc(a);
sl@0
    82
  DELETE FROM abc WHERE (oid%2)==0;
sl@0
    83
  PRAGMA incremental_vacuum;
sl@0
    84
  DROP INDEX abc_i;
sl@0
    85
  PRAGMA incremental_vacuum;
sl@0
    86
  COMMIT;
sl@0
    87
}
sl@0
    88
sl@0
    89
do_ioerr_test incrvacuum-ioerr-3 -start 1 -cksum 1 -tclprep {
sl@0
    90
  db eval {
sl@0
    91
    PRAGMA auto_vacuum = 'incremental';
sl@0
    92
    BEGIN;
sl@0
    93
    CREATE TABLE a(i integer, b blob);
sl@0
    94
    INSERT INTO a VALUES(1, randstr(1500,1500));
sl@0
    95
    INSERT INTO a VALUES(2, randstr(1500,1500));
sl@0
    96
  }
sl@0
    97
  db eval COMMIT
sl@0
    98
  db eval {DELETE FROM a WHERE oid}
sl@0
    99
} -sqlbody {
sl@0
   100
  PRAGMA incremental_vacuum(5);
sl@0
   101
} -cleanup {
sl@0
   102
  sqlite3 db test.db
sl@0
   103
  integrity_check incrvacuum-ioerr-2.$n.integritycheck
sl@0
   104
  db close
sl@0
   105
}
sl@0
   106
sl@0
   107
sl@0
   108
ifcapable shared_cache {
sl@0
   109
sl@0
   110
  catch { db close }
sl@0
   111
  file delete -force test.db
sl@0
   112
  set ::enable_shared_cache [sqlite3_enable_shared_cache 1]
sl@0
   113
  
sl@0
   114
  # Create two connections to a single shared-cache:
sl@0
   115
  #
sl@0
   116
  sqlite3 db1 test.db
sl@0
   117
  sqlite3 db2 test.db
sl@0
   118
  
sl@0
   119
  # Create a database with around 20 free pages.
sl@0
   120
  #
sl@0
   121
  do_test incrvacuum-ioerr-4.0 {
sl@0
   122
    execsql {
sl@0
   123
      PRAGMA page_size = 1024;
sl@0
   124
      PRAGMA locking_mode = exclusive;
sl@0
   125
      PRAGMA auto_vacuum = 'incremental';
sl@0
   126
      BEGIN;
sl@0
   127
      CREATE TABLE a(i integer, b blob);
sl@0
   128
    } db1
sl@0
   129
    for {set ii 0} {$ii < 20} {incr ii} {
sl@0
   130
      execsql { INSERT INTO a VALUES($ii, randstr(800,1500)); } db1
sl@0
   131
    }
sl@0
   132
    execsql COMMIT db1
sl@0
   133
    execsql {DELETE FROM a WHERE oid} db1
sl@0
   134
  } {}
sl@0
   135
  
sl@0
   136
  set ::rc 1
sl@0
   137
  for {set iTest 1} {$::rc && $iTest<2000} {incr iTest} {
sl@0
   138
  
sl@0
   139
    # Figure out how big the database is and how many free pages it
sl@0
   140
    # has before running incremental-vacuum.
sl@0
   141
    #
sl@0
   142
    set nPage [expr {[file size test.db]/1024}]
sl@0
   143
    set nFree [execsql {pragma freelist_count} db1]
sl@0
   144
  
sl@0
   145
    # Now run incremental-vacuum to vacuum 5 pages from the db file.
sl@0
   146
    # The iTest'th I/O call is set to fail.
sl@0
   147
    #
sl@0
   148
    set ::sqlite_io_error_pending $iTest
sl@0
   149
    set ::sqlite_io_error_persist 1
sl@0
   150
    do_test incrvacuum-ioerr-4.$iTest.1 {
sl@0
   151
      set ::rc [catch {execsql {pragma incremental_vacuum(5)} db1} msg]
sl@0
   152
      expr {$::rc==0 || $msg eq "disk I/O error"}
sl@0
   153
    } {1}
sl@0
   154
  
sl@0
   155
    set ::sqlite_io_error_pending 0
sl@0
   156
    set ::sqlite_io_error_persist 0
sl@0
   157
    set ::sqlite_io_error_hit 0
sl@0
   158
    set ::sqlite_io_error_hardhit 0
sl@0
   159
  
sl@0
   160
    set nFree2 [execsql {pragma freelist_count} db1]
sl@0
   161
    set nPage2 [expr {[file size test.db]/1024}]
sl@0
   162
  
sl@0
   163
    do_test incrvacuum-ioerr-4.$iTest.2 {
sl@0
   164
      set shrink [expr {$nPage-$nPage2}]
sl@0
   165
      expr {$shrink==0 || $shrink==5}
sl@0
   166
    } {1}
sl@0
   167
  
sl@0
   168
    do_test incrvacuum-ioerr-4.$iTest.3 {
sl@0
   169
      expr {$nPage - $nPage2}
sl@0
   170
    } [expr {$nFree - $nFree2}]
sl@0
   171
  }
sl@0
   172
  
sl@0
   173
  # Close the two database connections and restore the default
sl@0
   174
  # shared-cache mode setting.
sl@0
   175
  #
sl@0
   176
  db1 close
sl@0
   177
  db2 close
sl@0
   178
  sqlite3_enable_shared_cache $::enable_shared_cache
sl@0
   179
}
sl@0
   180
sl@0
   181
finish_test