os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/cache.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 March 24
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
# $Id: cache.test,v 1.4 2007/08/22 02:56:44 drh Exp $
sl@0
    13
sl@0
    14
set testdir [file dirname $argv0]
sl@0
    15
source $testdir/tester.tcl
sl@0
    16
sl@0
    17
ifcapable {!pager_pragmas} {
sl@0
    18
  finish_test
sl@0
    19
  return
sl@0
    20
}
sl@0
    21
sqlite3_soft_heap_limit 0
sl@0
    22
sl@0
    23
proc pager_cache_size {db} {
sl@0
    24
  set bt [btree_from_db $db]
sl@0
    25
  db_enter $db
sl@0
    26
  array set stats [btree_pager_stats $bt]
sl@0
    27
  db_leave $db
sl@0
    28
  return $stats(page)
sl@0
    29
}
sl@0
    30
sl@0
    31
do_test cache-1.1 {
sl@0
    32
  pager_cache_size db
sl@0
    33
} {0}
sl@0
    34
sl@0
    35
do_test cache-1.2 {
sl@0
    36
  execsql {
sl@0
    37
    PRAGMA auto_vacuum=OFF;
sl@0
    38
    CREATE TABLE abc(a, b, c);
sl@0
    39
    INSERT INTO abc VALUES(1, 2, 3);
sl@0
    40
  }
sl@0
    41
  pager_cache_size db
sl@0
    42
} {2}
sl@0
    43
sl@0
    44
# At one point, repeatedly locking and unlocking the cache was causing
sl@0
    45
# a resource leak of one page per repetition. The page wasn't actually
sl@0
    46
# leaked, but would not be reused until the pager-cache was full (i.e. 
sl@0
    47
# 2000 pages by default).
sl@0
    48
#
sl@0
    49
# This tests that once the pager-cache is initialised, it can be locked
sl@0
    50
# and unlocked repeatedly without internally allocating any new pages.
sl@0
    51
#
sl@0
    52
set cache_size [pager_cache_size db]
sl@0
    53
for {set ii 0} {$ii < 10} {incr ii} {
sl@0
    54
sl@0
    55
  do_test cache-1.3.$ii {
sl@0
    56
    execsql {SELECT * FROM abc}
sl@0
    57
    pager_cache_size db
sl@0
    58
  } $::cache_size
sl@0
    59
sl@0
    60
}
sl@0
    61
sqlite3_soft_heap_limit $soft_limit
sl@0
    62
sl@0
    63
finish_test