import Devel-Size 0.72 from CPAN
[p5sagit/Devel-Size.git] / t / recurse.t
1 #!/usr/bin/perl -w
2
3 # IMPORTANT NOTE:
4 #
5 # When testing total_size(), always remember that it dereferences things, so
6 # total_size([]) will NOT return the size of the ref + the array, it will only
7 # return the size of the array alone!
8
9 use Test::More;
10 use strict;
11
12 my $tests;
13
14 BEGIN
15    {
16    chdir 't' if -d 't';
17    plan tests => 6 + 4 * 12;
18
19    use lib '../lib';
20    use lib '../blib/arch';
21    use_ok('Devel::Size');
22    }
23
24 can_ok ('Devel::Size', qw/
25   size
26   total_size
27   /);
28
29 Devel::Size->import( qw(size total_size) );
30
31 die ("Uhoh, test uses an outdated version of Devel::Size")
32   unless is ($Devel::Size::VERSION, '0.72', 'VERSION MATCHES');
33
34 #############################################################################
35 # verify that pointer sizes in array slots are sensible:
36 # create an array with 4 slots, 2 of them used
37 my $array = [ 1,2,3,4 ]; pop @$array; pop @$array;
38
39 # the total size minus the array itself minus two scalars is 4 slots
40 my $ptr_size = total_size($array) - total_size( [] ) - total_size(1) * 2;
41
42 is ($ptr_size % 4, 0, '4 pointers are dividable by 4');
43 isnt ($ptr_size, 0, '4 pointers are not zero');
44
45 # size of one slot ptr
46 $ptr_size /= 4;
47
48 #############################################################################
49 # assert hash and hash key size
50
51 my $hash = {};
52 $hash->{a} = 1;
53 is (total_size($hash),
54     total_size( { a => undef } ) + total_size(1) - total_size(undef),
55     'assert hash and hash key size');
56
57 #############################################################################
58 # #24846 (Does not correctly recurse into references in a PVNV-type scalar)
59
60 # run the following tests with different sizes
61
62 for my $size (2, 3, 7, 100)
63   {
64   my $hash = { a => 1 };
65
66   # hash + key minus the value
67   my $hash_size = total_size($hash) - total_size(1);
68
69   $hash->{a} = 0/1;
70   $hash->{a} = [];
71
72   my $pvnv_size = total_size(\$hash->{a}) - total_size([]);
73   # size of one ref
74   my $ref_size = total_size(\\1) - total_size(1);
75
76   # $hash->{a} is now a PVNV, e.g. a scalar NV and a ref to an array:
77 #  SV = PVNV(0x81ff9a8) at 0x8170d48
78 #  REFCNT = 1
79 #  FLAGS = (ROK)
80 #  IV = 0
81 #  NV = 0
82 #  RV = 0x81717bc
83 #  SV = PVAV(0x8175d6c) at 0x81717bc
84 #    REFCNT = 1
85 #    FLAGS = ()
86 #    IV = 0
87 #    NV = 0
88 #    ARRAY = 0x0
89 #    FILL = -1
90 #    MAX = -1
91 #    ARYLEN = 0x0
92 #    FLAGS = (REAL)
93 #  PV = 0x81717bc ""
94 #  CUR = 0
95 #  LEN = 0
96
97   # Compare this to a plain array ref
98 #SV = RV(0x81a2834) at 0x8207a2c
99 #  REFCNT = 1
100 #  FLAGS = (TEMP,ROK)
101 #  RV = 0x8170b44
102 #  SV = PVAV(0x8175d98) at 0x8170b44
103 #    REFCNT = 2
104 #    FLAGS = ()
105 #    IV = 0
106 #    NV = 0
107 #    ARRAY = 0x0
108 #    FILL = -1
109 #    MAX = -1
110 #    ARYLEN = 0x0
111
112   # Get the size of the PVNV and the contained array
113   my $element_size = total_size(\$hash->{a});
114
115   ok ($element_size < total_size($hash), "element < hash with one element");
116   ok ($element_size > total_size(\[]), "PVNV + [] > [] alone");
117
118   # Dereferencing the PVNV (the argument to total_size) leaves us with
119   # just the array, and this should be equal to a dereferenced array:
120   is (total_size($hash->{a}), total_size([]), '[] vs. []');
121
122   # the hash with one key
123   # the PVNV in the hash
124   # the RV inside the PVNV
125   # the contents of the array (array size)
126
127   my $full_hash = total_size($hash);
128   my $array_size = total_size([]);
129   is ($full_hash, $element_size + $hash_size, 'properly recurses into PVNV');
130   is ($full_hash, $array_size + $pvnv_size + $hash_size, 'properly recurses into PVNV');
131
132   $hash->{a} = [0..$size];
133
134   # the outer references stripped away, so they should be the same
135   is (total_size([0..$size]), total_size( $hash->{a} ), "hash element vs. array");
136
137   # the outer references included, one is just a normal ref, while the other
138   # is a PVNV, so they shouldn't be the same:
139   isnt (total_size(\[0..$size]), total_size( \$hash->{a} ), "[0..size] vs PVNV");
140   # and the plain ref should be smaller
141   ok (total_size(\[0..$size]) < total_size( \$hash->{a} ), "[0..size] vs. PVNV");
142
143   $full_hash = total_size($hash);
144   $element_size = total_size(\$hash->{a});
145   $array_size = total_size(\[0..$size]);
146
147   print "# full_hash = $full_hash\n";
148   print "# hash_size = $hash_size\n";
149   print "# array size: $array_size\n";
150   print "# element size: $element_size\n";
151   print "# ref_size = $ref_size\n";
152   print "# pvnv_size: $pvnv_size\n";
153
154   # the total size is:
155
156   # the hash with one key
157   # the PVNV in the hash
158   # the RV inside the PVNV
159   # the contents of the array (array size)
160
161   is ($full_hash, $element_size + $hash_size, 'properly recurses into PVNV');
162 #  is ($full_hash, $array_size + $pvnv_size + $hash_size, 'properly recurses into PVNV');
163
164 #############################################################################
165 # repeat the former test, but mix in some undef elements
166
167   $array_size = total_size(\[0..$size, undef, undef]);
168
169   $hash->{a} = [0..$size, undef, undef];
170   $element_size = total_size(\$hash->{a});
171   $full_hash = total_size($hash);
172
173   print "# full_hash = $full_hash\n";
174   print "# hash_size = $hash_size\n";
175   print "# array size: $array_size\n";
176   print "# element size: $element_size\n";
177   print "# ref_size = $ref_size\n";
178   print "# pvnv_size: $pvnv_size\n";
179
180   is ($full_hash, $element_size + $hash_size, 'properly recurses into PVNV');
181
182 #############################################################################
183 # repeat the former test, but use a pre-extended array
184
185   $array = [ 0..$size, undef, undef ]; pop @$array;
186
187   $array_size = total_size($array);
188   my $scalar_size = total_size(1) * (1+$size) + total_size(undef) * 1 + $ptr_size
189     + $ptr_size * ($size + 2) + total_size([]);
190   is ($scalar_size, $array_size, "computed right size if full array");
191
192   $hash->{a} = [0..$size, undef, undef]; pop @{$hash->{a}};
193   $full_hash = total_size($hash);
194   $element_size = total_size(\$hash->{a});
195   $array_size = total_size(\$array);
196
197   print "# full_hash = $full_hash\n";
198   print "# hash_size = $hash_size\n";
199   print "# array size: $array_size\n";
200   print "# element size: $element_size\n";
201   print "# ref_size = $ref_size\n";
202   print "# pvnv_size: $pvnv_size\n";
203
204   is ($full_hash, $element_size + $hash_size, 'properly handles undef/non-undef inside arrays');
205
206   } # end for different sizes