os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/tkt3093.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 2
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
# Ticket #3093
sl@0
    13
#
sl@0
    14
# Verify that a busy callback waiting on a reserved lock resolves
sl@0
    15
# once the lock clears.
sl@0
    16
#
sl@0
    17
# $Id: tkt3093.test,v 1.2 2008/05/02 14:23:55 drh Exp $
sl@0
    18
#
sl@0
    19
sl@0
    20
set testdir [file dirname $argv0]
sl@0
    21
source $testdir/tester.tcl
sl@0
    22
sl@0
    23
# Set up a test database
sl@0
    24
#
sl@0
    25
do_test tkt3093.1 {
sl@0
    26
  db eval {
sl@0
    27
    CREATE TABLE t1(x);
sl@0
    28
    INSERT INTO t1 VALUES(1);
sl@0
    29
    SELECT * FROM t1
sl@0
    30
  }
sl@0
    31
} {1}
sl@0
    32
sl@0
    33
# Establish a separate, independent connection to that database.
sl@0
    34
#
sl@0
    35
do_test tkt3093.2 {
sl@0
    36
  catch {sqlite3_enable_shared_cache 0}
sl@0
    37
  sqlite3 db2 test.db
sl@0
    38
  db2 eval {
sl@0
    39
    SELECT * FROM t1
sl@0
    40
  }
sl@0
    41
} {1}
sl@0
    42
sl@0
    43
# Make sure that clearing a lock allows a pending request for
sl@0
    44
# a reserved lock to continue.
sl@0
    45
#
sl@0
    46
do_test tkt3093.3 {
sl@0
    47
  # This will be the busy callback for connection db2.  On the first
sl@0
    48
  # busy callback, commit the transaction in db.  This should clear
sl@0
    49
  # the lock so that there should not be a second callback.  If the
sl@0
    50
  # busy handler is called a second time, then fail so that we get
sl@0
    51
  # timeout.
sl@0
    52
  proc busy_callback {cnt} {
sl@0
    53
    if {$cnt==0} {
sl@0
    54
      db eval COMMIT
sl@0
    55
      return 0
sl@0
    56
    } else {
sl@0
    57
      return 1
sl@0
    58
    }
sl@0
    59
  }
sl@0
    60
  db2 busy ::busy_callback
sl@0
    61
sl@0
    62
  # Start a write transaction on db.
sl@0
    63
  db eval {
sl@0
    64
     BEGIN;
sl@0
    65
     INSERT INTO t1 VALUES(2);
sl@0
    66
  }
sl@0
    67
sl@0
    68
  # Attempt to modify the database on db2
sl@0
    69
  catchsql {
sl@0
    70
     UPDATE t1 SET x=x+1;
sl@0
    71
  } db2
sl@0
    72
} {0 {}}
sl@0
    73
sl@0
    74
# Verify that everything worked as expected.  The db transaction should
sl@0
    75
# have gone first and added entry 2.  Then the db2 transaction would have
sl@0
    76
# run and added one to each entry.
sl@0
    77
#
sl@0
    78
do_test tkt3093.4 {
sl@0
    79
  db eval {SELECT * FROM t1}
sl@0
    80
} {2 3}
sl@0
    81
do_test tkt3093.5 {
sl@0
    82
  db2 eval {SELECT * FROM t1}
sl@0
    83
} {2 3}
sl@0
    84
db2 close
sl@0
    85
sl@0
    86
finish_test