os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/busy.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 july 8
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 test the busy handler
sl@0
    12
#
sl@0
    13
# $Id: busy.test,v 1.3 2008/03/15 02:09:22 drh Exp $
sl@0
    14
sl@0
    15
sl@0
    16
set testdir [file dirname $argv0]
sl@0
    17
source $testdir/tester.tcl
sl@0
    18
sl@0
    19
do_test busy-1.1 {
sl@0
    20
  sqlite3 db2 test.db
sl@0
    21
  execsql {
sl@0
    22
    CREATE TABLE t1(x);
sl@0
    23
    INSERT INTO t1 VALUES(1);
sl@0
    24
    SELECT * FROM t1
sl@0
    25
  }
sl@0
    26
} 1
sl@0
    27
proc busy x {
sl@0
    28
  lappend ::busyargs $x
sl@0
    29
  if {$x>2} {return 1}
sl@0
    30
  return 0
sl@0
    31
}
sl@0
    32
set busyargs {}
sl@0
    33
do_test busy-1.2 {
sl@0
    34
  db busy busy
sl@0
    35
  db2 eval {BEGIN EXCLUSIVE}
sl@0
    36
  catchsql {BEGIN IMMEDIATE}
sl@0
    37
} {1 {database is locked}}
sl@0
    38
do_test busy-1.3 {
sl@0
    39
  set busyargs
sl@0
    40
} {0 1 2 3}
sl@0
    41
do_test busy-1.4 {
sl@0
    42
  set busyargs {}
sl@0
    43
  catchsql {BEGIN IMMEDIATE}
sl@0
    44
  set busyargs
sl@0
    45
} {0 1 2 3}
sl@0
    46
sl@0
    47
do_test busy-2.1 {
sl@0
    48
  db2 eval {COMMIT}
sl@0
    49
  db eval {BEGIN; INSERT INTO t1 VALUES(5)}
sl@0
    50
  db2 eval {BEGIN; SELECT * FROM t1}
sl@0
    51
  set busyargs {}
sl@0
    52
  catchsql COMMIT
sl@0
    53
} {1 {database is locked}}
sl@0
    54
do_test busy-2.2 {
sl@0
    55
  set busyargs
sl@0
    56
} {0 1 2 3}
sl@0
    57
sl@0
    58
sl@0
    59
db2 close
sl@0
    60
sl@0
    61
finish_test