File: test.pl

package info (click to toggle)
libmemoize-expirelru-perl 0.55-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 88 kB
  • ctags: 13
  • sloc: perl: 334; makefile: 2
file content (231 lines) | stat: -rwxr-xr-x 4,553 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
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
#!/usr/local/bin/perl -w
###########################################################################
# File    - test.pl
#	    Created 12 Feb, 2000, Brent B. Powers
#
# Purpose - test for Memoize::ExpireLRU
#
# ToDo    - Test when tied to other module
#
#
###########################################################################
use strict;
use Memoize;

my $n = 0;
use vars qw($dbg);
$dbg = 0;
$| = 1;

print "1..46\n";

use Memoize::ExpireLRU;
++$n;
print "ok $n\n";

my %CALLS = ();
sub routine ( $ ) {
    return shift;
}
sub routine3 ( $ ) {
    return shift;
}

my($flag) = 1; ## 1 gives routine2 as a list, 0 as a scalar
sub routine2 ( $ ) {
    if ($flag) {
	my($z) = shift;
	return (1, $z);
    } else {
	return shift;
    }
}

sub show ( $ ) {
    print "not " unless shift;
    ++$n;
    print "ok $n\n";
}


memoize('routine',
	SCALAR_CACHE => ['TIE',
			 'Memoize::ExpireLRU',
			 CACHESIZE => 4,
			 TUNECACHESIZE => 6,
			 INSTANCE => 'routine',
			],
	LIST_CACHE => 'FAULT');

if ($flag) {
    memoize('routine2',
	    LIST_CACHE => ['TIE',
			   'Memoize::ExpireLRU',
			   CACHESIZE => 1,
			   TUNECACHESIZE => 5,
			   INSTANCE => 'routine2',
			  ],
	    SCALAR_CACHE => 'FAULT',);
} else {
    memoize('routine2',
	    SCALAR_CACHE => ['TIE',
			     'Memoize::ExpireLRU',
			     CACHESIZE => 1,
			     TUNECACHESIZE => 5,
			     INSTANCE => 'routine2',
			    ],
	    LIST_CACHE => 'FAULT');
}

memoize('routine3',
	SCALAR_CACHE => ['TIE',
			 'Memoize::ExpireLRU',
			 CACHESIZE => 4,
			 INSTANCE => 'routine3',
			],
	LIST_CACHE => 'FAULT');

$Memoize::ExpireLRU::DEBUG = 1;
$Memoize::ExpireLRU::DEBUG = 0;
show(1);

# 3--6
## Fill the cache
for (0..3) {
    show(routine($_) == $_);
    $CALLS{$_} = $_;
}


# 7--10
## Ensure that the return values were correct
for (keys %CALLS) {
    show($CALLS{$_} == (0,1,2,3)[$_]);
}

# 11--14
## Check returns from the cache
for (0..3) {
  show(routine($_) == $_);
}

# 15--18
## Make sure we can get each one of the array
foreach (0,2,0,0) {
    show(routine($_) == $_);
}

## Make sure we can get each one of the aray, where the timestamps are
## different
my($i);
for (0..3) {
#     sleep(1);
    $i = routine($_);
}

# 19
show(1);

# 20-23
for (0,2,0,0) {
    show(routine($_) == $_);
}

## Check getting a new one
## Force the order
for (3,2,1,0) {
    $i = routine($_);
}

# 24--25
## Push off the last one, and ensure that the
## one we pushed off is really pushed off
for (4, 3) {
    show(routine($_) == $_);
}


# 26--30
## Play with the second function
## First, fill it
my(@a);
for (5,4,3,2,1,0) {
    if ($flag) {
	show((routine2($_))[1] == $_);
    } else {
	show($_ == routine2($_));
    }
}


## Now, hit each of them, in order
# 31 -- 35
## Force at least one cache hit
if ($flag) {
    @a = routine2(0);
} else {
    routine2(0);
}

for (1..4) {
    if ($flag) {
	show((routine2($_))[1] == $_);
    } else {
	show($_ == routine2($_));
    }
}

## 36-44
for (0,1,2,3,4,5,5,4,3) {
    show($_ == routine3($_));
}

my($q) = <<EOT;
routine2:
    Cache Keys:
        '4'
    Test Cache Keys:
        '3'
        '2'
        '1'
        '0'
EOT

# 45
show($q eq Memoize::ExpireLRU::DumpCache('routine2'));

$q = <<EOT;
ExpireLRU Statistics:

                   ExpireLRU instantiation: routine
                                Cache Size: 4
                   Experimental Cache Size: 6
                                Cache Hits: 20
                              Cache Misses: 6
Additional Cache Hits at Experimental Size: 1
                             Distribution : Hits
                                        0 : 3
                                        1 : 2
                                        2 : 5
                                        3 : 10
                                     ----   -----
                                        4 : 1
                                        5 : 0

                   ExpireLRU instantiation: routine2
                                Cache Size: 1
                   Experimental Cache Size: 5
                                Cache Hits: 1
                              Cache Misses: 10
Additional Cache Hits at Experimental Size: 4
                             Distribution : Hits
                                        0 : 1
                                     ----   -----
                                        1 : 1
                                        2 : 1
                                        3 : 1
                                        4 : 1
EOT

# 46
show($q eq Memoize::ExpireLRU::ShowStats);