os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/thread1.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
# 2003 December 18
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 implements regression tests for SQLite library.  The
sl@0
    12
# focus of this script is multithreading behavior
sl@0
    13
#
sl@0
    14
# $Id: thread1.test,v 1.7 2004/06/19 00:16:31 drh Exp $
sl@0
    15
sl@0
    16
sl@0
    17
set testdir [file dirname $argv0]
sl@0
    18
source $testdir/tester.tcl
sl@0
    19
sl@0
    20
# Skip this whole file if the thread testing code is not enabled
sl@0
    21
#
sl@0
    22
if {[llength [info command thread_step]]==0 || [sqlite3 -has-codec]} {
sl@0
    23
  finish_test
sl@0
    24
  return
sl@0
    25
}
sl@0
    26
sl@0
    27
# Create some data to work with
sl@0
    28
#
sl@0
    29
do_test thread1-1.1 {
sl@0
    30
  execsql {
sl@0
    31
    CREATE TABLE t1(a,b);
sl@0
    32
    INSERT INTO t1 VALUES(1,'abcdefgh');
sl@0
    33
    INSERT INTO t1 SELECT a+1, b||b FROM t1;
sl@0
    34
    INSERT INTO t1 SELECT a+2, b||b FROM t1;
sl@0
    35
    INSERT INTO t1 SELECT a+4, b||b FROM t1;
sl@0
    36
    SELECT count(*), max(length(b)) FROM t1;
sl@0
    37
  }
sl@0
    38
} {8 64}
sl@0
    39
sl@0
    40
# Interleave two threads on read access.  Then make sure a third
sl@0
    41
# thread can write the database.  In other words:
sl@0
    42
#
sl@0
    43
#    read-lock A
sl@0
    44
#    read-lock B
sl@0
    45
#    unlock A
sl@0
    46
#    unlock B
sl@0
    47
#    write-lock C
sl@0
    48
#
sl@0
    49
# At one point, the write-lock of C would fail on Linux. 
sl@0
    50
#
sl@0
    51
do_test thread1-1.2 {
sl@0
    52
  thread_create A test.db
sl@0
    53
  thread_create B test.db
sl@0
    54
  thread_create C test.db
sl@0
    55
  thread_compile A {SELECT a FROM t1}
sl@0
    56
  thread_step A
sl@0
    57
  thread_result A
sl@0
    58
} SQLITE_ROW
sl@0
    59
do_test thread1-1.3 {
sl@0
    60
  thread_argc A
sl@0
    61
} 1
sl@0
    62
do_test thread1-1.4 {
sl@0
    63
  thread_argv A 0
sl@0
    64
} 1
sl@0
    65
do_test thread1-1.5 {
sl@0
    66
  thread_compile B {SELECT b FROM t1}
sl@0
    67
  thread_step B
sl@0
    68
  thread_result B
sl@0
    69
} SQLITE_ROW
sl@0
    70
do_test thread1-1.6 {
sl@0
    71
  thread_argc B
sl@0
    72
} 1
sl@0
    73
do_test thread1-1.7 {
sl@0
    74
  thread_argv B 0
sl@0
    75
} abcdefgh
sl@0
    76
do_test thread1-1.8 {
sl@0
    77
  thread_finalize A
sl@0
    78
  thread_result A
sl@0
    79
} SQLITE_OK
sl@0
    80
do_test thread1-1.9 {
sl@0
    81
  thread_finalize B
sl@0
    82
  thread_result B
sl@0
    83
} SQLITE_OK
sl@0
    84
do_test thread1-1.10 {
sl@0
    85
  thread_compile C {CREATE TABLE t2(x,y)}
sl@0
    86
  thread_step C
sl@0
    87
  thread_result C
sl@0
    88
} SQLITE_DONE
sl@0
    89
do_test thread1-1.11 {
sl@0
    90
  thread_finalize C
sl@0
    91
  thread_result C
sl@0
    92
} SQLITE_OK
sl@0
    93
do_test thread1-1.12 {
sl@0
    94
  catchsql {SELECT name FROM sqlite_master}
sl@0
    95
  execsql {SELECT name FROM sqlite_master}
sl@0
    96
} {t1 t2}
sl@0
    97
sl@0
    98
sl@0
    99
#
sl@0
   100
# The following tests - thread1-2.* - test the following scenario:
sl@0
   101
#
sl@0
   102
# 1:  Read-lock thread A
sl@0
   103
# 2:  Read-lock thread B
sl@0
   104
# 3:  Attempt to write in thread C -> SQLITE_BUSY
sl@0
   105
# 4:  Check db write failed from main thread.
sl@0
   106
# 5:  Unlock from thread A.
sl@0
   107
# 6:  Attempt to write in thread C -> SQLITE_BUSY
sl@0
   108
# 7:  Check db write failed from main thread.
sl@0
   109
# 8:  Unlock from thread B.
sl@0
   110
# 9:  Attempt to write in thread C -> SQLITE_DONE
sl@0
   111
# 10: Finalize the write from thread C
sl@0
   112
# 11: Check db write succeeded from main thread.
sl@0
   113
#
sl@0
   114
do_test thread1-2.1 {
sl@0
   115
  thread_halt *
sl@0
   116
  thread_create A test.db
sl@0
   117
  thread_compile A {SELECT a FROM t1}
sl@0
   118
  thread_step A
sl@0
   119
  thread_result A
sl@0
   120
} SQLITE_ROW
sl@0
   121
do_test thread1-2.2 {
sl@0
   122
  thread_create B test.db
sl@0
   123
  thread_compile B {SELECT b FROM t1}
sl@0
   124
  thread_step B
sl@0
   125
  thread_result B
sl@0
   126
} SQLITE_ROW
sl@0
   127
do_test thread1-2.3 {
sl@0
   128
  thread_create C test.db
sl@0
   129
  thread_compile C {INSERT INTO t2 VALUES(98,99)}
sl@0
   130
  thread_step C
sl@0
   131
  thread_result C
sl@0
   132
  thread_finalize C
sl@0
   133
  thread_result C
sl@0
   134
} SQLITE_BUSY
sl@0
   135
sl@0
   136
do_test thread1-2.4 {
sl@0
   137
  execsql {SELECT * FROM t2}
sl@0
   138
} {}
sl@0
   139
sl@0
   140
do_test thread1-2.5 {
sl@0
   141
  thread_finalize A
sl@0
   142
  thread_result A
sl@0
   143
} SQLITE_OK
sl@0
   144
do_test thread1-2.6 {
sl@0
   145
  thread_compile C {INSERT INTO t2 VALUES(98,99)}
sl@0
   146
  thread_step C
sl@0
   147
  thread_result C
sl@0
   148
  thread_finalize C
sl@0
   149
  thread_result C
sl@0
   150
} SQLITE_BUSY
sl@0
   151
do_test thread1-2.7 {
sl@0
   152
  execsql {SELECT * FROM t2}
sl@0
   153
} {}
sl@0
   154
do_test thread1-2.8 {
sl@0
   155
  thread_finalize B
sl@0
   156
  thread_result B
sl@0
   157
} SQLITE_OK
sl@0
   158
do_test thread1-2.9 {
sl@0
   159
  thread_compile C {INSERT INTO t2 VALUES(98,99)}
sl@0
   160
  thread_step C
sl@0
   161
  thread_result C
sl@0
   162
} SQLITE_DONE
sl@0
   163
do_test thread1-2.10 {
sl@0
   164
  thread_finalize C
sl@0
   165
  thread_result C
sl@0
   166
} SQLITE_OK
sl@0
   167
do_test thread1-2.11 {
sl@0
   168
  execsql {SELECT * FROM t2}
sl@0
   169
} {98 99}
sl@0
   170
sl@0
   171
thread_halt *   
sl@0
   172
finish_test