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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
|
#!/usr/bin/perl
#
# Unit tests for abstract cache implementation
#
# Test the following methods:
# * new()
# * is_empty()
# * empty()
# * lookup(key)
# * remove(key)
# * insert(key,val)
# * update(key,val)
# * rekey(okeys,nkeys)
# * expire()
# * keys()
# * bytes()
# DESTROY()
#
# 20020327 You somehow managed to miss:
# * reduce_size_to(bytes)
#
# print "1..0\n"; exit;
print "1..42\n";
my ($N, @R, $Q, $ar) = (1);
use Tie::File;
print "ok $N\n";
$N++;
my $h = Tie::File::Cache->new(10000) or die;
print "ok $N\n";
$N++;
# (3) Are all the methods there?
{
my $good = 1;
for my $meth (qw(new is_empty empty lookup remove
insert update rekey expire ckeys bytes
set_limit adj_limit flush reduce_size_to
_produce _produce_lru )) {
unless ($h->can($meth)) {
print STDERR "# Method '$meth' is missing.\n";
$good = 0;
}
}
print $good ? "ok $N\n" : "not ok $N\n";
$N++;
}
# (4-5) Straight insert and removal FIFO test
$ar = 'a0';
for (1..10) {
$h->insert($_, $ar++);
}
1;
for (1..10) {
push @R, $h->expire;
}
$iota = iota('a',9);
print "@R" eq $iota
? "ok $N\n" : "not ok $N \# expected ($iota), got (@R)\n";
$N++;
check($h);
# (6-7) Remove from empty heap
$n = $h->expire;
print ! defined $n ? "ok $N\n" : "not ok $N \# expected UNDEF, got $n";
$N++;
check($h);
# (8-9) Interleaved insert and removal
$Q = 0;
@R = ();
for my $i (1..4) {
for my $j (1..$i) {
$h->insert($Q, "b$Q");
$Q++;
}
for my $j (1..$i) {
push @R, $h->expire;
}
}
$iota = iota('b', 9);
print "@R" eq $iota ? "ok $N\n" : "not ok $N \# expected ($iota), got (@R)\n";
$N++;
check($h);
# (10) It should be empty now
print $h->is_empty ? "ok $N\n" : "not ok $N\n";
$N++;
# (11-12) Insert and delete
$Q = 1;
for (1..10) {
$h->insert($_, "c$Q");
$Q++;
}
for (2, 4, 6, 8, 10) {
$h->remove($_);
}
@R = ();
push @R, $n while defined ($n = $h->expire);
print "@R" eq "c1 c3 c5 c7 c9" ?
"ok $N\n" : "not ok $N \# expected (c1 c3 c5 c7 c9), got (@R)\n";
$N++;
check($h);
# (13-14) Interleaved insert and delete
$Q = 1; my $QQ = 1;
@R = ();
for my $i (1..4) {
for my $j (1..$i) {
$h->insert($Q, "d$Q");
$Q++;
}
for my $j (1..$i) {
$h->remove($QQ) if $QQ % 2 == 0;
$QQ++;
}
}
push @R, $n while defined ($n = $h->expire);
print "@R" eq "d1 d3 d5 d7 d9" ?
"ok $N\n" : "not ok $N \# expected (d1 d3 d5 d7 d9), got (@R)\n";
$N++;
check($h);
# (15-16) Promote
$h->empty;
$Q = 1;
for (1..10) {
$h->insert($_, "e$Q");
unless ($h->_check_integrity) {
die "Integrity failed after inserting ($_, e$Q)\n";
}
$Q++;
}
1;
for (2, 4, 6, 8, 10) {
$h->_promote($_);
}
@R = ();
push @R, $n while defined ($n = $h->expire);
print "@R" eq "e1 e3 e5 e7 e9 e2 e4 e6 e8 e10" ?
"ok $N\n" :
"not ok $N \# expected (e1 e3 e5 e7 e9 e2 e4 e6 e8 e10), got (@R)\n";
$N++;
check($h);
# (17-22) Lookup
$Q = 1;
for (1..10) {
$h->insert($_, "f$Q");
$Q++;
}
1;
for (2, 4, 6, 4, 8) {
my $r = $h->lookup($_);
print $r eq "f$_" ? "ok $N\n" : "not ok $N \# expected f$_, got $r\n";
$N++;
}
check($h);
# (23) It shouldn't be empty
print ! $h->is_empty ? "ok $N\n" : "not ok $N\n";
$N++;
# (24-25) Lookup should have promoted the looked-up records
@R = ();
push @R, $n while defined ($n = $h->expire);
print "@R" eq "f1 f3 f5 f7 f9 f10 f2 f6 f4 f8" ?
"ok $N\n" :
"not ok $N \# expected (f1 f3 f5 f7 f9 f10 f2 f6 f4 f8), got (@R)\n";
$N++;
check($h);
# (26-29) Typical 'rekey' operation
$Q = 1;
for (1..10) {
$h->insert($_, "g$Q");
$Q++;
}
$h->rekey([6,7,8,9,10], [8,9,10,11,12]);
my %x = qw(1 g1 2 g2 3 g3 4 g4 5 g5
8 g6 9 g7 10 g8 11 g9 12 g10);
{
my $good = 1;
for my $k (keys %x) {
my $v = $h->lookup($k);
$v = "UNDEF" unless defined $v;
unless ($v eq $x{$k}) {
print "# looked up $k, got $v, expected $x{$k}\n";
$good = 0;
}
}
print $good ? "ok $N\n" : "not ok $N\n";
$N++;
}
check($h);
{
my $good = 1;
for my $k (6, 7) {
my $v = $h->lookup($k);
if (defined $v) {
print "# looked up $k, got $v, should have been undef\n";
$good = 0;
}
}
print $good ? "ok $N\n" : "not ok $N\n";
$N++;
}
check($h);
# (30-31) ckeys
@R = sort { $a <=> $b } $h->ckeys;
print "@R" eq "1 2 3 4 5 8 9 10 11 12" ?
"ok $N\n" :
"not ok $N \# expected (1 2 3 4 5 8 9 10 11 12) got (@R)\n";
$N++;
check($h);
1;
# (32-33) update
for (1..5, 8..12) {
$h->update($_, "h$_");
}
@R = ();
for (sort { $a <=> $b } $h->ckeys) {
push @R, $h->lookup($_);
}
print "@R" eq "h1 h2 h3 h4 h5 h8 h9 h10 h11 h12" ?
"ok $N\n" :
"not ok $N \# expected (h1 h2 h3 h4 h5 h8 h9 h10 h11 h12) got (@R)\n";
$N++;
check($h);
# (34-37) bytes
my $B;
$B = $h->bytes;
print $B == 23 ? "ok $N\n" : "not ok $N \# expected 23, got $B\n";
$N++;
check($h);
$h->update('12', "yobgorgle");
$B = $h->bytes;
print $B == 29 ? "ok $N\n" : "not ok $N \# expected 29, got $B\n";
$N++;
check($h);
# (38-41) empty
$h->empty;
print $h->is_empty ? "ok $N\n" : "not ok $N\n";
$N++;
check($h);
$n = $h->expire;
print ! defined $n ? "ok $N\n" : "not ok $N \# expected UNDEF, got $n";
$N++;
check($h);
# (42) very weak testing of DESTROY
undef $h;
# are we still alive?
print "ok $N\n";
$N++;
sub check {
my $h = shift;
print $h->_check_integrity ? "ok $N\n" : "not ok $N\n";
$N++;
}
sub iota {
my ($p, $n) = @_;
my $r;
my $i = 0;
while ($i <= $n) {
$r .= "$p$i ";
$i++;
}
chop $r;
$r;
}
|