os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/shared3.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
# 2005 January 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
#
sl@0
    12
# $Id: shared3.test,v 1.4 2008/08/20 14:49:25 danielk1977 Exp $
sl@0
    13
sl@0
    14
set testdir [file dirname $argv0]
sl@0
    15
source $testdir/tester.tcl
sl@0
    16
db close
sl@0
    17
sl@0
    18
ifcapable !shared_cache {
sl@0
    19
  finish_test
sl@0
    20
  return
sl@0
    21
}
sl@0
    22
set ::enable_shared_cache [sqlite3_enable_shared_cache 1]
sl@0
    23
sl@0
    24
# Ticket #1824
sl@0
    25
#
sl@0
    26
do_test shared3-1.1 {
sl@0
    27
  file delete -force test.db test.db-journal
sl@0
    28
  sqlite3 db1 test.db
sl@0
    29
  db1 eval {
sl@0
    30
    PRAGMA encoding=UTF16;
sl@0
    31
    CREATE TABLE t1(x,y);
sl@0
    32
    INSERT INTO t1 VALUES('abc','This is a test string');
sl@0
    33
  }
sl@0
    34
  db1 close
sl@0
    35
  sqlite3 db1 test.db
sl@0
    36
  db1 eval {SELECT * FROM t1}
sl@0
    37
} {abc {This is a test string}}
sl@0
    38
do_test shared3-1.2 {
sl@0
    39
  sqlite3 db2 test.db
sl@0
    40
  db2 eval {SELECT y FROM t1 WHERE x='abc'}
sl@0
    41
} {{This is a test string}}
sl@0
    42
sl@0
    43
db1 close
sl@0
    44
db2 close
sl@0
    45
sl@0
    46
do_test shared3-2.1 {
sl@0
    47
  sqlite3 db1 test.db
sl@0
    48
  execsql {
sl@0
    49
    PRAGMA main.cache_size = 10;
sl@0
    50
  } db1
sl@0
    51
} {}
sl@0
    52
do_test shared3-2.2 {
sl@0
    53
  execsql { PRAGMA main.cache_size } db1
sl@0
    54
} {10}
sl@0
    55
do_test shared3-2.3 {
sl@0
    56
  sqlite3 db2 test.db
sl@0
    57
  execsql { PRAGMA main.cache_size } db1
sl@0
    58
} {10}
sl@0
    59
do_test shared3-2.4 {
sl@0
    60
  execsql { PRAGMA main.cache_size } db2
sl@0
    61
} {10}
sl@0
    62
do_test shared3-2.5 {
sl@0
    63
  execsql { PRAGMA main.cache_size } db1
sl@0
    64
} {10}
sl@0
    65
sl@0
    66
# The cache-size should now be 10 pages. However at one point there was
sl@0
    67
# a bug that caused the cache size to return to the default value when
sl@0
    68
# a second connection was opened on the shared-cache (as happened in
sl@0
    69
# test case shared3-2.3 above). The goal of the following tests is to
sl@0
    70
# ensure that the cache-size really is 10 pages.
sl@0
    71
#
sl@0
    72
if {$::tcl_platform(platform)=="unix"} {
sl@0
    73
  set alternative_name ./test.db
sl@0
    74
} else {
sl@0
    75
  set alternative_name TEST.DB
sl@0
    76
}
sl@0
    77
do_test shared3-2.6 {
sl@0
    78
  sqlite3 db3 $alternative_name
sl@0
    79
  catchsql {select count(*) from sqlite_master} db3
sl@0
    80
} {0 1}
sl@0
    81
do_test shared3-2.7 {
sl@0
    82
  execsql {
sl@0
    83
    BEGIN;
sl@0
    84
    INSERT INTO t1 VALUES(10, randomblob(5000))
sl@0
    85
  } db1
sl@0
    86
  catchsql {select count(*) from sqlite_master} db3
sl@0
    87
} {0 1}
sl@0
    88
do_test shared3-2.8 {
sl@0
    89
  db3 close
sl@0
    90
  execsql {
sl@0
    91
    INSERT INTO t1 VALUES(10, randomblob(10000))
sl@0
    92
  } db1
sl@0
    93
  sqlite3 db3 $alternative_name
sl@0
    94
sl@0
    95
  # If the pager-cache is really still limited to 10 pages, then the INSERT
sl@0
    96
  # statement above should have caused the pager to grab an exclusive lock
sl@0
    97
  # on the database file so that the cache could be spilled.
sl@0
    98
  #
sl@0
    99
  catchsql {select count(*) from sqlite_master} db3
sl@0
   100
} {1 {database is locked}}
sl@0
   101
sl@0
   102
db1 close
sl@0
   103
db2 close
sl@0
   104
db3 close
sl@0
   105
sl@0
   106
sqlite3_enable_shared_cache $::enable_shared_cache
sl@0
   107
finish_test