os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/ioerr4.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
# 2007 December 19
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
# during incremental vacuum with a shared cache.
sl@0
    14
#
sl@0
    15
# $Id: ioerr4.test,v 1.2 2008/05/08 01:11:42 drh Exp $
sl@0
    16
sl@0
    17
set testdir [file dirname $argv0]
sl@0
    18
source $testdir/tester.tcl
sl@0
    19
sl@0
    20
# This test requires both shared cache and incremental vacuum.
sl@0
    21
#
sl@0
    22
ifcapable {!shared_cache || !autovacuum} {
sl@0
    23
  finish_test
sl@0
    24
  return
sl@0
    25
}
sl@0
    26
sl@0
    27
# Enable shared cache mode and incremental vacuum.
sl@0
    28
#
sl@0
    29
do_test ioerr4-1.1 {
sl@0
    30
  db close
sl@0
    31
  set ::enable_shared_cache [sqlite3_enable_shared_cache 1]
sl@0
    32
} {0}
sl@0
    33
do_test ioerr4-1.2 {
sl@0
    34
  file delete -force test.db test.db-journal
sl@0
    35
  sqlite3 db test.db
sl@0
    36
  sqlite3 db2 test.db
sl@0
    37
  db eval {
sl@0
    38
    PRAGMA auto_vacuum=INCREMENTAL;
sl@0
    39
    CREATE TABLE a(i INTEGER, b BLOB);
sl@0
    40
  }
sl@0
    41
  db2 eval {
sl@0
    42
    SELECT name FROM sqlite_master
sl@0
    43
  }
sl@0
    44
} {a}
sl@0
    45
do_test ioerr4-1.3 {
sl@0
    46
  db eval {
sl@0
    47
    PRAGMA auto_vacuum;
sl@0
    48
  }
sl@0
    49
} {2}
sl@0
    50
sl@0
    51
# Insert and delete many records in order to put lots of pages
sl@0
    52
# on the freelist.
sl@0
    53
#
sl@0
    54
do_test ioerr4-1.4 {
sl@0
    55
  db eval {
sl@0
    56
    INSERT INTO a VALUES(1, zeroblob(2000));
sl@0
    57
    INSERT INTO a VALUES(2, zeroblob(2000));
sl@0
    58
    INSERT INTO a SELECT i+2, zeroblob(2000) FROM a;
sl@0
    59
    INSERT INTO a SELECT i+4, zeroblob(2000) FROM a;
sl@0
    60
    INSERT INTO a SELECT i+8, zeroblob(2000) FROM a;
sl@0
    61
    INSERT INTO a SELECT i+16, zeroblob(2000) FROM a;
sl@0
    62
    SELECT count(*) FROM a;
sl@0
    63
  }
sl@0
    64
} {32}
sl@0
    65
do_test ioerr4-1.5 {
sl@0
    66
  db eval {
sl@0
    67
    PRAGMA freelist_count
sl@0
    68
  }
sl@0
    69
} {0}
sl@0
    70
do_test ioerr4-1.6 {
sl@0
    71
  db eval {
sl@0
    72
    DELETE FROM a;
sl@0
    73
    PRAGMA freelist_count;
sl@0
    74
  }
sl@0
    75
} {64}
sl@0
    76
sl@0
    77
# Set up for an I/O error on incremental vacuum
sl@0
    78
# with two connections on shared cache.
sl@0
    79
#
sl@0
    80
db close
sl@0
    81
db2 close
sl@0
    82
file copy -force test.db test.db-bu
sl@0
    83
do_ioerr_test ioerr4-2 -tclprep {
sl@0
    84
  catch {db2 close}
sl@0
    85
  db close
sl@0
    86
  file delete -force test.db test.db-journal
sl@0
    87
  file copy -force test.db-bu test.db
sl@0
    88
  sqlite3_enable_shared_cache 1
sl@0
    89
  set ::DB [sqlite3 db test.db; sqlite3_connection_pointer db]
sl@0
    90
  db eval {PRAGMA auto_vacuum=INCREMENTAL}
sl@0
    91
  sqlite3 db2 test.db
sl@0
    92
} -tclbody {
sl@0
    93
  db eval {PRAGMA incremental_vacuum(5)}
sl@0
    94
}
sl@0
    95
sl@0
    96
db2 close
sl@0
    97
file delete -force test.db-bu
sl@0
    98
sqlite3_enable_shared_cache $::enable_shared_cache
sl@0
    99
sl@0
   100
finish_test