os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/async3.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 September 5
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
# The focus of this file is testing the code in test_async.c.
sl@0
    13
# Specifically, it tests that the xFullPathname() method of
sl@0
    14
# of the asynchronous vfs works correctly.
sl@0
    15
#
sl@0
    16
# $Id: async3.test,v 1.3 2007/11/05 17:01:08 danielk1977 Exp $
sl@0
    17
sl@0
    18
set testdir [file dirname $argv0]
sl@0
    19
source $testdir/tester.tcl
sl@0
    20
sl@0
    21
if { [info commands sqlite3async_enable]==""  } {
sl@0
    22
  # The async logic is not built into this system
sl@0
    23
  puts "Skipping async3 tests: not compiled with required features"
sl@0
    24
  finish_test
sl@0
    25
  return
sl@0
    26
}
sl@0
    27
sl@0
    28
db close
sl@0
    29
sqlite3async_enable 1
sl@0
    30
sqlite3async_start
sl@0
    31
sl@0
    32
set paths {
sl@0
    33
  chocolate/banana/vanilla/file.db
sl@0
    34
  chocolate//banana/vanilla/file.db
sl@0
    35
  chocolate/./banana//vanilla/file.db
sl@0
    36
  chocolate/banana/./vanilla/file.db
sl@0
    37
  chocolate/banana/../banana/vanilla/file.db
sl@0
    38
  chocolate/banana/./vanilla/extra_bit/../file.db
sl@0
    39
}
sl@0
    40
sl@0
    41
do_test async3-1.0 {
sl@0
    42
  file mkdir [file join chocolate banana vanilla]
sl@0
    43
  file delete -force chocolate/banana/vanilla/file.db
sl@0
    44
  file delete -force chocolate/banana/vanilla/file.db-journal
sl@0
    45
} {}
sl@0
    46
sl@0
    47
do_test async3-1.1 {
sl@0
    48
  sqlite3 db chocolate/banana/vanilla/file.db
sl@0
    49
  execsql {
sl@0
    50
    CREATE TABLE abc(a, b, c);
sl@0
    51
    BEGIN;
sl@0
    52
    INSERT INTO abc VALUES(1, 2, 3);
sl@0
    53
  }
sl@0
    54
} {}
sl@0
    55
sl@0
    56
set N 2
sl@0
    57
foreach p $paths {
sl@0
    58
  sqlite3 db2 $p
sl@0
    59
  do_test async3-1.$N.1 {
sl@0
    60
    execsql {SELECT * FROM abc} db2
sl@0
    61
  } {}
sl@0
    62
  do_test async3-1.$N.2 {
sl@0
    63
    catchsql {INSERT INTO abc VALUES(4, 5, 6)} db2
sl@0
    64
  } {1 {database is locked}}
sl@0
    65
  db2 close
sl@0
    66
  incr N
sl@0
    67
}
sl@0
    68
sl@0
    69
db close
sl@0
    70
sqlite3async_halt idle
sl@0
    71
sqlite3async_wait
sl@0
    72
sqlite3async_halt never
sl@0
    73
sqlite3async_enable 0
sl@0
    74
finish_test