os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/interrupt.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
# 2004 Feb 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 implements regression tests for SQLite library.  The
sl@0
    12
# focus of this script is the sqlite_interrupt() API.
sl@0
    13
#
sl@0
    14
# $Id: interrupt.test,v 1.16 2008/01/16 17:46:38 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
set DB [sqlite3_connection_pointer db]
sl@0
    20
sl@0
    21
# This routine attempts to execute the sql in $sql.  It triggers an
sl@0
    22
# interrupt at progressively later and later points during the processing
sl@0
    23
# and checks to make sure SQLITE_INTERRUPT is returned.  Eventually,
sl@0
    24
# the routine completes successfully.
sl@0
    25
#
sl@0
    26
proc interrupt_test {testid sql result {initcnt 0}} {
sl@0
    27
  set orig_sum [cksum]
sl@0
    28
  set i $initcnt
sl@0
    29
  while 1 {
sl@0
    30
    incr i
sl@0
    31
    set ::sqlite_interrupt_count $i
sl@0
    32
    do_test $testid.$i.1 [format {
sl@0
    33
      set ::r [catchsql %s]
sl@0
    34
      set ::code [db errorcode]
sl@0
    35
      expr {$::code==0 || $::code==9}
sl@0
    36
    } [list $sql]] 1
sl@0
    37
    if {$::code==9} {
sl@0
    38
      do_test $testid.$i.2 {
sl@0
    39
        cksum
sl@0
    40
      } $orig_sum
sl@0
    41
    } else {
sl@0
    42
      do_test $testid.$i.99 {
sl@0
    43
        set ::r
sl@0
    44
      } [list 0 $result]
sl@0
    45
      break
sl@0
    46
    }
sl@0
    47
  }
sl@0
    48
  set ::sqlite_interrupt_count 0
sl@0
    49
}
sl@0
    50
sl@0
    51
do_test interrupt-1.1 {
sl@0
    52
  execsql {
sl@0
    53
    CREATE TABLE t1(a,b);
sl@0
    54
    SELECT name FROM sqlite_master;
sl@0
    55
  }
sl@0
    56
} {t1}
sl@0
    57
interrupt_test interrupt-1.2 {DROP TABLE t1} {}
sl@0
    58
do_test interrupt-1.3 {
sl@0
    59
  execsql {
sl@0
    60
    SELECT name FROM sqlite_master;
sl@0
    61
  }
sl@0
    62
} {}
sl@0
    63
integrity_check interrupt-1.4
sl@0
    64
sl@0
    65
do_test interrrupt-2.1 {
sl@0
    66
  execsql {
sl@0
    67
    BEGIN;
sl@0
    68
    CREATE TABLE t1(a,b);
sl@0
    69
    INSERT INTO t1 VALUES(1,randstr(300,400));
sl@0
    70
    INSERT INTO t1 SELECT a+1, randstr(300,400) FROM t1;
sl@0
    71
    INSERT INTO t1 SELECT a+2, a || '-' || b FROM t1;
sl@0
    72
    INSERT INTO t1 SELECT a+4, a || '-' || b FROM t1;
sl@0
    73
    INSERT INTO t1 SELECT a+8, a || '-' || b FROM t1;
sl@0
    74
    INSERT INTO t1 SELECT a+16, a || '-' || b FROM t1;
sl@0
    75
    INSERT INTO t1 SELECT a+32, a || '-' || b FROM t1;
sl@0
    76
    COMMIT;
sl@0
    77
    UPDATE t1 SET b=substr(b,-5,5);
sl@0
    78
    SELECT count(*) from t1;
sl@0
    79
  }
sl@0
    80
} 64
sl@0
    81
set origsize [file size test.db]
sl@0
    82
set cksum [db eval {SELECT md5sum(a || b) FROM t1}]
sl@0
    83
ifcapable {vacuum} {
sl@0
    84
  interrupt_test interrupt-2.2 {VACUUM} {} 100
sl@0
    85
}
sl@0
    86
do_test interrupt-2.3 {
sl@0
    87
  execsql {
sl@0
    88
    SELECT md5sum(a || b) FROM t1;
sl@0
    89
  }
sl@0
    90
} $cksum
sl@0
    91
ifcapable {vacuum && !default_autovacuum} {
sl@0
    92
  do_test interrupt-2.4 {
sl@0
    93
    expr {$::origsize>[file size test.db]}
sl@0
    94
  } 1
sl@0
    95
}
sl@0
    96
ifcapable {explain} {
sl@0
    97
  do_test interrupt-2.5 {
sl@0
    98
    set sql {EXPLAIN SELECT max(a,b), a, b FROM t1}
sl@0
    99
    execsql $sql
sl@0
   100
    set rc [catch {db eval $sql {sqlite3_interrupt $DB}} msg]
sl@0
   101
    lappend rc $msg
sl@0
   102
  } {1 interrupted}
sl@0
   103
}
sl@0
   104
integrity_check interrupt-2.6
sl@0
   105
sl@0
   106
# Ticket #594.  If an interrupt occurs in the middle of a transaction
sl@0
   107
# and that transaction is later rolled back, the internal schema tables do
sl@0
   108
# not reset.
sl@0
   109
#
sl@0
   110
# UPDATE: Interrupting a DML statement in the middle of a transaction now
sl@0
   111
# causes the transaction to roll back. Leaving the transaction open after
sl@0
   112
# an SQL statement was interrupted halfway through risks database corruption.
sl@0
   113
#
sl@0
   114
ifcapable tempdb {
sl@0
   115
  for {set i 1} {$i<50} {incr i 5} {
sl@0
   116
    do_test interrupt-3.$i.1 {
sl@0
   117
      execsql {
sl@0
   118
        BEGIN;
sl@0
   119
        CREATE TEMP TABLE t2(x,y);
sl@0
   120
        SELECT name FROM sqlite_temp_master;
sl@0
   121
      }
sl@0
   122
    } {t2}
sl@0
   123
    do_test interrupt-3.$i.2 {
sl@0
   124
      set ::sqlite_interrupt_count $::i
sl@0
   125
      catchsql {
sl@0
   126
        INSERT INTO t2 SELECT * FROM t1;
sl@0
   127
      }
sl@0
   128
    } {1 interrupted}
sl@0
   129
    do_test interrupt-3.$i.3 {
sl@0
   130
      execsql {
sl@0
   131
        SELECT name FROM sqlite_temp_master;
sl@0
   132
      }
sl@0
   133
    } {}
sl@0
   134
    do_test interrupt-3.$i.4 {
sl@0
   135
      catchsql {
sl@0
   136
        ROLLBACK
sl@0
   137
      }
sl@0
   138
    } {1 {cannot rollback - no transaction is active}}
sl@0
   139
    do_test interrupt-3.$i.5 {
sl@0
   140
      catchsql {SELECT name FROM sqlite_temp_master};
sl@0
   141
      execsql {
sl@0
   142
        SELECT name FROM sqlite_temp_master;
sl@0
   143
      }
sl@0
   144
    } {}
sl@0
   145
  }
sl@0
   146
}
sl@0
   147
sl@0
   148
# There are reports of a memory leak if an interrupt occurs during
sl@0
   149
# the beginning of a complex query - before the first callback.  We
sl@0
   150
# will try to reproduce it here:
sl@0
   151
#
sl@0
   152
execsql {
sl@0
   153
  CREATE TABLE t2(a,b,c);
sl@0
   154
  INSERT INTO t2 SELECT round(a/10), randstr(50,80), randstr(50,60) FROM t1;
sl@0
   155
}
sl@0
   156
set sql {
sl@0
   157
  SELECT max(min(b,c)), min(max(b,c)), a FROM t2 GROUP BY a ORDER BY a;
sl@0
   158
}
sl@0
   159
set sqlite_interrupt_count 1000000
sl@0
   160
execsql $sql
sl@0
   161
set max_count [expr {1000000-$sqlite_interrupt_count}]
sl@0
   162
for {set i 1} {$i<$max_count-5} {incr i 1} {
sl@0
   163
  do_test interrupt-4.$i.1 {
sl@0
   164
    set ::sqlite_interrupt_count $::i
sl@0
   165
    catchsql $sql
sl@0
   166
  } {1 interrupted}
sl@0
   167
}
sl@0
   168
sl@0
   169
# Interrupt during parsing
sl@0
   170
#
sl@0
   171
do_test interrupt-5.1 {
sl@0
   172
  proc fake_interrupt {args} {
sl@0
   173
    db collate fake_collation no-op
sl@0
   174
    sqlite3_interrupt db
sl@0
   175
    return SQLITE_OK
sl@0
   176
  }
sl@0
   177
  db collation_needed fake_interrupt
sl@0
   178
  catchsql {
sl@0
   179
    CREATE INDEX fake ON fake1(a COLLATE fake_collation, b, c DESC);
sl@0
   180
  }
sl@0
   181
} {1 interrupt}
sl@0
   182
sl@0
   183
finish_test