Re-instate initial dereference in total_size()
[p5sagit/Devel-Size.git] / t / basic.t
1 #!/usr/bin/perl -w
2
3 use Test::More tests => 15;
4 use strict;
5 use Devel::Size qw(size total_size);
6 use Scalar::Util qw(weaken);
7
8 can_ok ('Devel::Size', qw/
9   size
10   total_size
11   /);
12
13 die ("Uhoh, test uses an outdated version of Devel::Size")
14   unless is ($Devel::Size::VERSION, '0.73_50', 'VERSION MATCHES');
15
16 #############################################################################
17 # some basic checks:
18
19 use vars qw($foo @foo %foo);
20 $foo = "12";
21 @foo = (1,2,3);
22 %foo = (a => 1, b => 2);
23
24 my $x = "A string";
25 my $y = "A much much longer string";        # need to be at least 7 bytes longer for 64 bit
26 cmp_ok(size($x), '<', size($y), 'size() of strings');
27 cmp_ok(total_size($x), '<', total_size($y), 'total_size() of strings');
28
29 my @x = (1..4);
30 my @y = (1..200);
31
32 my $size_1 = total_size(\@x);
33 my $size_2 = total_size(\@y);
34
35 cmp_ok($size_1, '<', $size_2, 'size() of array refs');
36
37 # the arrays alone shouldn't be the same size
38 $size_1 = size(\@x);
39 $size_2 = size(\@y);
40
41 isnt ( $size_1, $size_2, 'size() of array refs');
42
43 #############################################################################
44 # IV vs IV+PV (bug #17586)
45
46 $x = 12;
47 $y = 12; $y .= '';
48
49 $size_1 = size($x);
50 $size_2 = size($y);
51
52 cmp_ok($size_1, '<', $size_2, ' ."" makes string longer');
53
54 #############################################################################
55 # check that the tracking_hash is working
56
57 my($a,$b) = (1,2);
58 my @ary1 = (\$a, \$a);
59 my @ary2 = (\$a, \$b);
60
61 cmp_ok(total_size(\@ary1), '<', total_size(\@ary2),
62        'the tracking hash is working');
63
64 #############################################################################
65 # check that circular references don't mess things up
66
67 my($c1,$c2); $c2 = \$c1; $c1 = \$c2;
68
69 is (total_size($c1), total_size($c2), 'circular references');
70
71 #############################################################################
72 # GLOBS
73
74 cmp_ok(total_size(*foo), '>', 0, 'total_size(*foo) > 0');
75
76 #############################################################################
77 # CODE ref
78
79 my $code = sub { '1' };
80
81 cmp_ok(total_size($code), '>', 0, 'total_size($code) > 0');
82
83 ##########################################################
84 # RT#14849 (& RT#26781 and possibly RT#29238?)
85 cmp_ok( total_size( sub{ do{ my $t=0 }; } ), '>', 0,
86         'total_size( sub{ my $t=0 } ) > 0' );
87
88 # CPAN RT #58484 and #58485
89 cmp_ok(total_size(\&total_size), '>', 0, 'total_size(\&total_size) > 0');
90
91 use constant LARGE => 'N' x 8192;
92
93 cmp_ok (total_size(\&LARGE), '>', 8192,
94         'total_size for a constant includes the constant');
95
96 {
97     my $a = [];
98     my $b = \$a;
99     # making a weakref upgrades the target to PVMG and adds magic
100     is(total_size($a), total_size([]),
101        'Any intial reference is dereferenced and discarded');
102 }