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