Re: [Another bug] Re: about Storable perl module (again)
[p5sagit/p5-mst-13.2.git] / ext / Storable / t / compat06.t
CommitLineData
7a6a85bf 1#!./perl
2
b12202d0 3# $Id: compat-0.6.t,v 1.0.1.1 2001/02/17 12:26:21 ram Exp $
7a6a85bf 4#
5# Copyright (c) 1995-2000, Raphael Manfredi
6#
9e21b3d0 7# You may redistribute only under the same terms as Perl 5, as specified
8# in the README file that comes with the distribution.
7a6a85bf 9#
10# $Log: compat-0.6.t,v $
b12202d0 11# Revision 1.0.1.1 2001/02/17 12:26:21 ram
12# patch8: added EBCDIC version of the test, from Peter Prymmer
13#
9e21b3d0 14# Revision 1.0 2000/09/01 19:40:41 ram
15# Baseline for first official release.
7a6a85bf 16#
17
18BEGIN {
0c384302 19 if ($ENV{PERL_CORE}){
20 chdir('t') if -d 't';
7dadce44 21 @INC = ('.', '../lib', '../ext/Storable/t');
372cb964 22 } else {
23 unshift @INC, 't';
0c384302 24 }
9f233367 25 require Config; import Config;
0c384302 26 if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
9f233367 27 print "1..0 # Skip: Storable was not built\n";
28 exit 0;
29 }
372cb964 30 require 'st-dump.pl';
7a6a85bf 31}
32
33sub ok;
34
35print "1..8\n";
36
37use Storable qw(freeze nfreeze thaw);
38
39package TIED_HASH;
40
41sub TIEHASH {
42 my $self = bless {}, shift;
43 return $self;
44}
45
46sub FETCH {
47 my $self = shift;
48 my ($key) = @_;
49 $main::hash_fetch++;
50 return $self->{$key};
51}
52
53sub STORE {
54 my $self = shift;
55 my ($key, $val) = @_;
56 $self->{$key} = $val;
57}
58
59package SIMPLE;
60
61sub make {
62 my $self = bless [], shift;
63 my ($x) = @_;
64 $self->[0] = $x;
65 return $self;
66}
67
68package ROOT;
69
70sub make {
71 my $self = bless {}, shift;
72 my $h = tie %hash, TIED_HASH;
73 $self->{h} = $h;
74 $self->{ref} = \%hash;
75 my @pool;
76 for (my $i = 0; $i < 5; $i++) {
77 push(@pool, SIMPLE->make($i));
78 }
79 $self->{obj} = \@pool;
80 my @a = ('string', $h, $self);
81 $self->{a} = \@a;
82 $self->{num} = [1, 0, -3, -3.14159, 456, 4.5];
83 $h->{key1} = 'val1';
84 $h->{key2} = 'val2';
85 return $self;
86};
87
88sub num { $_[0]->{num} }
89sub h { $_[0]->{h} }
90sub ref { $_[0]->{ref} }
91sub obj { $_[0]->{obj} }
92
93package main;
94
b12202d0 95my $is_EBCDIC = (ord('A') == 193) ? 1 : 0;
96
7a6a85bf 97my $r = ROOT->make;
98
99my $data = '';
b12202d0 100if (!$is_EBCDIC) { # ASCII machine
d40f9568 101 while (<DATA>) {
b12202d0 102 next if /^#/;
b2010bf6 103 $data .= unpack("u", $_);
104 }
b12202d0 105} else {
d40f9568 106 while (<DATA>) {
b12202d0 107 next if /^#$/; # skip comments
108 next if /^#\s+/; # skip comments
109 next if /^[^#]/; # skip uuencoding for ASCII machines
110 s/^#//; # prepare uuencoded data for EBCDIC machines
111 $data .= unpack("u", $_);
b2010bf6 112 }
7a6a85bf 113}
114
b12202d0 115my $expected_length = $is_EBCDIC ? 217 : 278;
b2010bf6 116ok 1, length $data == $expected_length;
b12202d0 117
7a6a85bf 118my $y = thaw($data);
119ok 2, 1;
120ok 3, ref $y eq 'ROOT';
121
122$Storable::canonical = 1; # Prevent "used once" warning
123$Storable::canonical = 1;
44e147de 124# Allow for long double string conversions.
125$y->{num}->[3] += 0;
126$r->{num}->[3] += 0;
7a6a85bf 127ok 4, nfreeze($y) eq nfreeze($r);
128
129ok 5, $y->ref->{key1} eq 'val1';
130ok 6, $y->ref->{key2} eq 'val2';
131ok 7, $hash_fetch == 2;
132
133my $num = $r->num;
134my $ok = 1;
135for (my $i = 0; $i < @$num; $i++) {
136 do { $ok = 0; last } unless $num->[$i] == $y->num->[$i];
137}
138ok 8, $ok;
139
140__END__
141#
142# using Storable-0.6@11, output of: print pack("u", nfreeze(ROOT->make));
143# original size: 278 bytes
144#
145M`P,````%!`(````&"(%8"(!8"'U8"@@M,RXQ-#$U.5@)```!R%@*`S0N-5A8
146M6`````-N=6T$`P````(*!'9A;#%8````!&ME>3$*!'9A;#)8````!&ME>3)B
147M"51)141?2$%32%A8`````6@$`@````,*!G-T<FEN9U@$``````I8!```````
148M6%A8`````6$$`@````4$`@````$(@%AB!E-)35!,15A8!`(````!"(%88@93
149M24U03$586`0"`````0B"6&(&4TE-4$Q%6%@$`@````$(@UAB!E-)35!,15A8
150M!`(````!"(188@9324U03$586%A8`````V]B:@0,!``````*6%A8`````W)E
151(9F($4D]/5%@`
b2010bf6 152#
d40f9568 153# using Storable-0.6@11, output of: print '#' . pack("u", nfreeze(ROOT->make));
b2010bf6 154# on OS/390 (cp 1047) original size: 217 bytes
155#
156#M!0,1!-G6UN,#````!00,!!$)X\G%Q&W(P>+(`P````(*!*6!D_$````$DH6H
157#M\0H$I8&3\@````22A:CR`````YF%A@0"````!@B!"(`(?0H(8/-+\?3Q]?D)
158#M```!R`H#]$OU`````Y6DE`0"````!001!N+)U-?3Q0(````!"(`$$@("````
159#M`0B!!!("`@````$(@@02`@(````!"(,$$@("`````0B$`````Y:"D00`````
160#E!`````&(!`(````#"@:BHYF)E8<$``````0$```````````!@0``