File: walckptnoop.test

package info (click to toggle)
sqlcipher 4.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 119,564 kB
  • sloc: ansic: 290,172; tcl: 24,955; javascript: 13,486; java: 8,153; sh: 7,784; makefile: 2,247; yacc: 1,727; cs: 307; sql: 73
file content (110 lines) | stat: -rw-r--r-- 2,314 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# 2025 September 5
#
# The author disclaims copyright to this source code.  In place of
# a legal notice, here is a blessing:
#
#    May you do good and not evil.
#    May you find forgiveness for yourself and forgive others.
#    May you share freely, never taking more than you give.
#
#***********************************************************************
# This file implements regression tests for SQLite library.  The
# focus of this file is testing the operation of the library in
# "PRAGMA wal_checkpoint = noop" mode.
#

set testdir [file dirname $argv0]
source $testdir/tester.tcl
source $testdir/lock_common.tcl
source $testdir/malloc_common.tcl
source $testdir/wal_common.tcl

set testprefix walckptnoop

ifcapable !wal {finish_test ; return }

set VAL 123

proc myrand {} {
  global VAL

  set A 1103515245
  set C 12345
  set M 2147483648

  set VAL [expr {($A * $VAL + $C) % $M}]
  return $VAL
}

proc myrandomblob {n} {
  set l [list]
  for {set i 0} {$i < $n} {incr i} {
    lappend l [expr [myrand] % 256]
  }
  binary format c* $l
}

db func myrandomblob myrandomblob


do_execsql_test 1.0 {
  PRAGMA page_size=1024;
  PRAGMA auto_vacuum=NONE;
  PRAGMA secure_delete=OFF;
  VACUUM;
  CREATE TABLE t1(x INTEGER PRIMARY KEY, y TEXT);
  CREATE INDEX i1 ON t1(y);
  PRAGMA journal_mode = wal;

  WITH s(i) AS (
    SELECT 1 UNION ALL SELECT i+1 FROM s WHERE i<1000
  )
  INSERT INTO t1 SELECT NULL, hex(myrandomblob(64)) FROM s;
} {0 wal}

do_execsql_test 1.1 {
  PRAGMA wal_checkpoint = noop;
} {0 298 0}
do_execsql_test 1.2 {
  PRAGMA wal_checkpoint = noop;
} {0 298 0}
do_execsql_test 1.3 {
  PRAGMA wal_checkpoint = passive;
} {0 298 298}
do_execsql_test 1.4 {
  PRAGMA wal_checkpoint = noop;
} {0 298 298}

db_save_and_close
db_restore_and_reopen
do_execsql_test 1.5 {
  PRAGMA wal_checkpoint = noop;
} {0 298 0}

db close
sqlite3 db test.db
db eval {
  PRAGMA auto_vacuum=NONE;
  PRAGMA secure_delete=OFF;
}
do_execsql_test 1.6 {
  PRAGMA wal_checkpoint = noop;
} {0 0 0}

do_catchsql_test 1.7 {
  BEGIN;
    DELETE FROM t1;
    PRAGMA wal_checkpoint = noop;
} {1 {database table is locked}}

do_catchsql_test 1.8 {
  COMMIT;
  PRAGMA wal_checkpoint = noop;
} {0 {0 5 0}}

do_execsql_test 1.9 {
  PRAGMA journal_mode = delete;
  PRAGMA wal_checkpoint = noop;
} {delete 0 -1 -1}

finish_test