This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move Memoize from ext/ to cpan/
[perl5.git] / cpan / Memoize / t / tie_storable.t
CommitLineData
a0cb3900
JH
1#!/usr/bin/perl
2# -*- mode: perl; perl-indent-level: 2 -*-
3
484fdf61 4use lib qw(. ..);
a0cb3900 5use Memoize 0.45 qw(memoize unmemoize);
a0cb3900
JH
6# $Memoize::Storable::Verbose = 0;
7
06916929 8eval {require Memoize::Storable};
899dc88a
JH
9if ($@) {
10 print "1..0\n";
11 exit 0;
12}
13
a0cb3900
JH
14sub i {
15 $_[0];
16}
17
18sub c119 { 119 }
19sub c7 { 7 }
20sub c43 { 43 }
21sub c23 { 23 }
22sub c5 { 5 }
23
24sub n {
25 $_[0]+1;
26}
27
28eval {require Storable};
29if ($@) {
30 print "1..0\n";
31 exit 0;
32}
33
34print "1..4\n";
35
2359510d 36$file = "storable$$";
899dc88a 371 while unlink $file;
a0cb3900 38tryout('Memoize::Storable', $file, 1); # Test 1..4
899dc88a 391 while unlink $file;
a0cb3900
JH
40
41sub tryout {
42 my ($tiepack, $file, $testno) = @_;
43
899dc88a
JH
44 tie my %cache => $tiepack, $file
45 or die $!;
a0cb3900
JH
46
47 memoize 'c5',
899dc88a 48 SCALAR_CACHE => [HASH => \%cache],
a0cb3900
JH
49 LIST_CACHE => 'FAULT'
50 ;
51
52 my $t1 = c5();
53 my $t2 = c5();
54 print (($t1 == 5) ? "ok $testno\n" : "not ok $testno\n");
55 $testno++;
56 print (($t2 == 5) ? "ok $testno\n" : "not ok $testno\n");
57 unmemoize 'c5';
58 1;
59 1;
60
61 # Now something tricky---we'll memoize c23 with the wrong table that
62 # has the 5 already cached.
63 memoize 'c23',
899dc88a 64 SCALAR_CACHE => [HASH => \%cache],
a0cb3900
JH
65 LIST_CACHE => 'FAULT'
66 ;
67
68 my $t3 = c23();
69 my $t4 = c23();
70 $testno++;
71 print (($t3 == 5) ? "ok $testno\n" : "not ok $testno\n");
72 $testno++;
73 print (($t4 == 5) ? "ok $testno\n" : "not ok $testno\n");
74 unmemoize 'c23';
75}
76