File: cksumvfs.test

package info (click to toggle)
sqlcipher 4.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 119,596 kB
  • sloc: ansic: 290,487; tcl: 24,958; javascript: 13,486; java: 8,153; sh: 7,784; makefile: 2,251; yacc: 1,727; cs: 307; sql: 73
file content (93 lines) | stat: -rw-r--r-- 1,731 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
# 2024 March 19
#
# 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.
#
#***********************************************************************
#

set testdir [file dirname $argv0]
source $testdir/tester.tcl
set testprefix cksumvfs


db close
sqlite3_shutdown
#test_sqlite3_log logfunc
sqlite3_initialize

proc logfunc {args} {
  puts "LOG: $args"
}

sqlite3_register_cksumvfs
sqlite3 db test.db

file_control_reservebytes db 8
execsql {
  PRAGMA page_size = 4096;
}

set text [db one "SELECT hex(randomblob(5000))"]

do_execsql_test 1.0 {
  CREATE TABLE t1(a INTEGER PRIMARY KEY, b, c);
  INSERT INTO t1 VALUES(1, $text, NULL);
}

do_execsql_test 1.1 {
  SELECT * FROM t1;
} [list 1 $text {}]

do_execsql_test 1.2 {
  DELETE FROM t1;
}

do_test 1.3 {
  execsql BEGIN
  for {set ii 1500} {$ii < 10000} {incr ii} {
    execsql { INSERT INTO t1 VALUES(NULL, randomblob(5000), randomblob($ii)) }
  }
  execsql COMMIT
} {}

do_execsql_test 1.4 {
  SELECT count(b) FROM t1
} {8500}

do_execsql_test 1.5 {
  PRAGMA journal_mode = wal;
  DELETE FROM t1;
} {wal}

do_execsql_test 1.6 {
  PRAGMA wal_checkpoint;
} {/0 # #/}

do_execsql_test 1.7 {
  WITH s(i) AS (
    VALUES(1) UNION ALL SELECT i+1 FROM s WHERE i<100
  )
  INSERT INTO t1 SELECT NULL, randomblob(5000), randomblob(i) FROM s;
  SELECT count(*) FROM t1;
} {100}

db_save_and_close
db_restore_and_reopen

do_execsql_test 1.8 {
  SELECT count(*) FROM t1;
} {100}

db close
sqlite3 db test.db

do_execsql_test 1.9 {
  SELECT count(*) FROM t1;
} {100}

finish_test