sl@0
|
1 |
# 2008 August 29
|
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 |
#
|
sl@0
|
12 |
# This file is focused on testing the pcache module.
|
sl@0
|
13 |
#
|
sl@0
|
14 |
# $Id: pcache.test,v 1.2 2008/09/05 05:29:09 danielk1977 Exp $
|
sl@0
|
15 |
|
sl@0
|
16 |
set testdir [file dirname $argv0]
|
sl@0
|
17 |
source $testdir/tester.tcl
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
# The pcache module limits the number of pages available to purgeable
|
sl@0
|
21 |
# caches to the sum of the 'cache_size' values for the set of open
|
sl@0
|
22 |
# caches. This block of tests, pcache-1.*, test that the library behaves
|
sl@0
|
23 |
# corrctly when it is forced to exceed this limit.
|
sl@0
|
24 |
#
|
sl@0
|
25 |
do_test pcache-1.1 {
|
sl@0
|
26 |
db close
|
sl@0
|
27 |
pcache_stats
|
sl@0
|
28 |
} {current 0 max 0 min 0 recyclable 0}
|
sl@0
|
29 |
|
sl@0
|
30 |
do_test pcache-1.2 {
|
sl@0
|
31 |
sqlite3 db test.db
|
sl@0
|
32 |
execsql {
|
sl@0
|
33 |
PRAGMA cache_size=10;
|
sl@0
|
34 |
PRAGMA auto_vacuum=0;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
pcache_stats
|
sl@0
|
37 |
} {current 1 max 10 min 10 recyclable 1}
|
sl@0
|
38 |
|
sl@0
|
39 |
do_test pcache-1.3 {
|
sl@0
|
40 |
execsql {
|
sl@0
|
41 |
BEGIN;
|
sl@0
|
42 |
CREATE TABLE t1(a, b, c);
|
sl@0
|
43 |
CREATE TABLE t2(a, b, c);
|
sl@0
|
44 |
CREATE TABLE t3(a, b, c);
|
sl@0
|
45 |
CREATE TABLE t4(a, b, c);
|
sl@0
|
46 |
CREATE TABLE t5(a, b, c);
|
sl@0
|
47 |
}
|
sl@0
|
48 |
pcache_stats
|
sl@0
|
49 |
} {current 6 max 10 min 10 recyclable 0}
|
sl@0
|
50 |
|
sl@0
|
51 |
do_test pcache-1.4 {
|
sl@0
|
52 |
execsql {
|
sl@0
|
53 |
CREATE TABLE t6(a, b, c);
|
sl@0
|
54 |
CREATE TABLE t7(a, b, c);
|
sl@0
|
55 |
CREATE TABLE t8(a, b, c);
|
sl@0
|
56 |
CREATE TABLE t9(a, b, c);
|
sl@0
|
57 |
}
|
sl@0
|
58 |
pcache_stats
|
sl@0
|
59 |
} {current 10 max 10 min 10 recyclable 0}
|
sl@0
|
60 |
|
sl@0
|
61 |
do_test pcache-1.5 {
|
sl@0
|
62 |
sqlite3 db2 test.db
|
sl@0
|
63 |
execsql "PRAGMA cache_size=10" db2
|
sl@0
|
64 |
pcache_stats
|
sl@0
|
65 |
} {current 11 max 20 min 20 recyclable 1}
|
sl@0
|
66 |
|
sl@0
|
67 |
do_test pcache-1.6 {
|
sl@0
|
68 |
execsql {
|
sl@0
|
69 |
BEGIN;
|
sl@0
|
70 |
SELECT * FROM sqlite_master;
|
sl@0
|
71 |
} db2
|
sl@0
|
72 |
pcache_stats
|
sl@0
|
73 |
} {current 11 max 20 min 20 recyclable 0}
|
sl@0
|
74 |
|
sl@0
|
75 |
# At this point connection db2 has a read lock on the database file and a
|
sl@0
|
76 |
# single pinned page in its cache. Connection [db] is holding 10 dirty
|
sl@0
|
77 |
# pages. It cannot recycle them because of the read lock held by db2.
|
sl@0
|
78 |
#
|
sl@0
|
79 |
do_test pcache-1.6 {
|
sl@0
|
80 |
execsql {
|
sl@0
|
81 |
CREATE INDEX i1 ON t1(a, b);
|
sl@0
|
82 |
CREATE INDEX i2 ON t2(a, b);
|
sl@0
|
83 |
CREATE INDEX i3 ON t3(a, b);
|
sl@0
|
84 |
CREATE INDEX i4 ON t4(a, b);
|
sl@0
|
85 |
CREATE INDEX i5 ON t5(a, b);
|
sl@0
|
86 |
CREATE INDEX i6 ON t6(a, b);
|
sl@0
|
87 |
CREATE INDEX i7 ON t7(a, b);
|
sl@0
|
88 |
CREATE INDEX i8 ON t8(a, b);
|
sl@0
|
89 |
CREATE INDEX i9 ON t9(a, b);
|
sl@0
|
90 |
}
|
sl@0
|
91 |
pcache_stats
|
sl@0
|
92 |
} {current 20 max 20 min 20 recyclable 0}
|
sl@0
|
93 |
|
sl@0
|
94 |
do_test pcache-1.7 {
|
sl@0
|
95 |
execsql {
|
sl@0
|
96 |
CREATE TABLE t10(a, b, c);
|
sl@0
|
97 |
}
|
sl@0
|
98 |
pcache_stats
|
sl@0
|
99 |
} {current 21 max 20 min 20 recyclable 0}
|
sl@0
|
100 |
|
sl@0
|
101 |
# Rolling back the transaction held by db2 at this point releases a pinned
|
sl@0
|
102 |
# page. Because the number of allocated pages is greater than the
|
sl@0
|
103 |
# configured maximum, this page should be freed immediately instead of
|
sl@0
|
104 |
# recycled.
|
sl@0
|
105 |
#
|
sl@0
|
106 |
do_test pcache-1.8 {
|
sl@0
|
107 |
execsql {ROLLBACK} db2
|
sl@0
|
108 |
pcache_stats
|
sl@0
|
109 |
} {current 20 max 20 min 20 recyclable 0}
|
sl@0
|
110 |
|
sl@0
|
111 |
do_test pcache-1.9 {
|
sl@0
|
112 |
execsql COMMIT
|
sl@0
|
113 |
pcache_stats
|
sl@0
|
114 |
} {current 20 max 20 min 20 recyclable 20}
|
sl@0
|
115 |
|
sl@0
|
116 |
do_test pcache-1.10 {
|
sl@0
|
117 |
db2 close
|
sl@0
|
118 |
pcache_stats
|
sl@0
|
119 |
} {current 10 max 10 min 10 recyclable 10}
|
sl@0
|
120 |
|
sl@0
|
121 |
do_test pcache-1.11 {
|
sl@0
|
122 |
execsql { PRAGMA cache_size = 20 }
|
sl@0
|
123 |
pcache_stats
|
sl@0
|
124 |
} {current 10 max 20 min 10 recyclable 10}
|
sl@0
|
125 |
|
sl@0
|
126 |
do_test pcache-1.12 {
|
sl@0
|
127 |
execsql {
|
sl@0
|
128 |
SELECT * FROM t1 ORDER BY a; SELECT * FROM t1;
|
sl@0
|
129 |
SELECT * FROM t2 ORDER BY a; SELECT * FROM t2;
|
sl@0
|
130 |
SELECT * FROM t3 ORDER BY a; SELECT * FROM t3;
|
sl@0
|
131 |
SELECT * FROM t4 ORDER BY a; SELECT * FROM t4;
|
sl@0
|
132 |
SELECT * FROM t5 ORDER BY a; SELECT * FROM t5;
|
sl@0
|
133 |
SELECT * FROM t6 ORDER BY a; SELECT * FROM t6;
|
sl@0
|
134 |
SELECT * FROM t7 ORDER BY a; SELECT * FROM t7;
|
sl@0
|
135 |
SELECT * FROM t8 ORDER BY a; SELECT * FROM t8;
|
sl@0
|
136 |
SELECT * FROM t9 ORDER BY a; SELECT * FROM t9;
|
sl@0
|
137 |
}
|
sl@0
|
138 |
pcache_stats
|
sl@0
|
139 |
} {current 19 max 20 min 10 recyclable 19}
|
sl@0
|
140 |
|
sl@0
|
141 |
do_test pcache-1.13 {
|
sl@0
|
142 |
execsql { PRAGMA cache_size = 15 }
|
sl@0
|
143 |
pcache_stats
|
sl@0
|
144 |
} {current 15 max 15 min 10 recyclable 15}
|
sl@0
|
145 |
|
sl@0
|
146 |
finish_test
|
sl@0
|
147 |
|