First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library.
13 # This file implements tests to verify database file format.
15 # $Id: filefmt.test,v 1.2 2007/04/06 21:42:22 drh Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
20 file delete -force test.db test.db-journal
22 # Database begins with valid 16-byte header string.
26 db eval {CREATE TABLE t1(x)}
28 hexio_read test.db 0 16
29 } {53514C69746520666F726D6174203300}
31 # If the 16-byte header is changed, the file will not open
34 hexio_write test.db 0 54
35 set x [catch {sqlite3 db test.db} err]
40 SELECT count(*) FROM sqlite_master
42 } {1 {file is encrypted or is not a database}}
45 hexio_write test.db 0 53
48 SELECT count(*) FROM sqlite_master
52 # The page-size is stored at offset 16
54 ifcapable pager_pragmas {
55 foreach pagesize {512 1024 2048 4096 8192 16384 32768} {
56 if {[info exists SQLITE_MAX_PAGE_SIZE]
57 && $pagesize>$SQLITE_MAX_PAGE_SIZE} continue
58 do_test filefmt-1.5.$pagesize.1 {
60 file delete -force test.db
62 db eval "PRAGMA auto_vacuum=OFF"
63 db eval "PRAGMA page_size=$pagesize"
64 db eval {CREATE TABLE t1(x)}
67 do_test filefmt-1.5.$pagesize.2 {
68 hexio_get_int [hexio_read test.db 16 2]
73 # The page-size must be a power of 2
77 hexio_write test.db 16 [hexio_render_int16 1025]
80 SELECT count(*) FROM sqlite_master
82 } {1 {file is encrypted or is not a database}}
85 # The page-size must be at least 512 bytes
89 hexio_write test.db 16 [hexio_render_int16 256]
92 SELECT count(*) FROM sqlite_master
94 } {1 {file is encrypted or is not a database}}
96 # Usable space per page (page-size minus unused space per page)
97 # must be at least 500 bytes
99 ifcapable pager_pragmas {
100 do_test filefmt-1.8 {
102 file delete -force test.db
104 db eval {PRAGMA page_size=512; CREATE TABLE t1(x)}
106 hexio_write test.db 20 10
109 SELECT count(*) FROM sqlite_master
111 } {1 {file is encrypted or is not a database}}