X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fbasic.t;h=416e39b74fe2dd6f7e1f37cb0bd5e73328023118;hb=3cba7a2c0211121aabb5cda50db17a5d84de1773;hp=4166e2dbc1e315cc952cf21ad7856cec40b4be9d;hpb=811a099c10b876edcc1167a58cf80bf42bc5eb4c;p=p5sagit%2FDevel-Size.git diff --git a/t/basic.t b/t/basic.t index 4166e2d..416e39b 100644 --- a/t/basic.t +++ b/t/basic.t @@ -1,9 +1,8 @@ #!/usr/bin/perl -w -use Test::More tests => 19; +use Test::More tests => 30; use strict; use Devel::Size qw(size total_size); -use Scalar::Util qw(weaken); can_ok ('Devel::Size', qw/ size @@ -11,7 +10,7 @@ can_ok ('Devel::Size', qw/ /); die ("Uhoh, test uses an outdated version of Devel::Size") - unless is ($Devel::Size::VERSION, '0.75_52', 'VERSION MATCHES'); + unless is ($Devel::Size::VERSION, '0.77_50', 'VERSION MATCHES'); ############################################################################# # some basic checks: @@ -84,8 +83,18 @@ cmp_ok (total_size(\&LARGE), '>', 8192, { my $a = []; my $b = \$a; - # making a weakref upgrades the target to PVMG and adds magic - weaken $b; + # Scalar::Util isn't in the core before 5.7.something. + # The test isn't really testing anything without the weaken(), but it + # isn't counter-productive or harmful to run it anyway. + unless (eval { + require Scalar::Util; + # making a weakref upgrades the target to PVMG and adds magic + Scalar::Util::weaken($b); + 1; + }) { + die $@ if $] >= 5.008; + } + is(total_size($a), total_size([]), 'Any intial reference is dereferenced and discarded'); } @@ -114,3 +123,51 @@ foreach(['undef', total_size(undef)], "Size doesn't change because OOK is used"); cmp_ok(length $uurk, '<', $before_size, 'but string is shorter'); } + +sub shared_hash_keys { + my %h = @_; + my $one = total_size([keys %h]); + cmp_ok($one, '>', 0, 'Size of one entry is sane'); + my $two = total_size([keys %h, keys %h]); + cmp_ok($two, '>', $one, 'Two take more space than one'); + my $increment = $two - $one; + is(total_size([keys %h, keys %h, keys %h]), $one + 2 * $increment, + 'Linear size increase for three'); + return $increment; +} + +{ + my $small = shared_hash_keys(Perl => 'Rules'); + my $big = shared_hash_keys('x' x 1024, ''); + SKIP: { + skip("[keys %h] doesn't copy as shared hash key scalars prior to 5.10.0", + 1) if $] < 5.010; + is ($small, $big, 'The "shared" part of shared hash keys is spotted'); + } +} + +{ + use vars '%DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG'; + my $hash_size = total_size(\%DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG); + cmp_ok($hash_size, '>', 0, 'Hash size is sane'); + my $stash_size + = total_size(\%DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG::); + cmp_ok($stash_size, '>', + $hash_size + length 'DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG_DANG', + 'Stash size is larger than hash size plus length of the name'); +} + +{ + my %h = (Perl => 'Rules'); + my $hash_size = total_size(\%h); + cmp_ok($hash_size, '>', 0, 'Hash size is sane'); + my $a = keys %h; + if ($] < 5.010) { + is(total_size(\%h), $hash_size, + "Creating iteration state doesn't need to allocate storage"); + # because all hashes carry the overhead of this storage from creation + } else { + cmp_ok(total_size(\%h), '>', $hash_size, + 'Creating iteration state allocates storage'); + } +}