X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F32-hash.t;h=bf01b3dccfd522dda858c59b9a818677525257dd;hb=efeec3ba13ae51a34cf68c55022e8668cad3968c;hp=d04c366a3a1688f38baa4eff3ff307291a8941c1;hpb=8a8a3b11c775e80c62abb092c1f9164de418a49f;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/t/32-hash.t b/t/32-hash.t index d04c366..bf01b3d 100644 --- a/t/32-hash.t +++ b/t/32-hash.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 2 * 18 + 5 + 1; +use Test::More tests => 2 * 21 + 7 + 1; use Variable::Magic qw/cast dispell MGf_COPY VMG_UVAR/; @@ -11,7 +11,7 @@ use lib 't/lib'; use Variable::Magic::TestWatcher; my $wiz = init - [ qw/get set len free dup local fetch store exists delete/ ], # clear copy + [ qw/get set len clear free copy dup local fetch store exists delete/ ], 'hash'; my %n = map { $_ => int rand 1000 } qw/foo bar baz qux/; @@ -19,47 +19,47 @@ my %h = %n; check { cast %h, $wiz } { }, 'cast'; -my $s; -check { $s = $h{foo} } +{ (fetch => 1) x VMG_UVAR }, - # (copy => 1) x MGf_COPY # if clear magic +my $s = check { $h{foo} } +{ (fetch => 1) x VMG_UVAR }, 'assign element to'; is $s, $n{foo}, 'hash: assign element to correctly'; +for (1 .. 2) { + $s = check { exists $h{foo} } +{ (exists => 1) x VMG_UVAR }, "exists ($_)"; + ok $s, "hash: exists correctly ($_)"; +} + my %b; check { %b = %h } { }, 'assign to'; is_deeply \%b, \%n, 'hash: assign to correctly'; -check { $s = \%h } { }, 'reference'; +$s = check { \%h } { }, 'reference'; -my @b; -check { @b = @h{qw/bar qux/} } +my @b = check { @h{qw/bar qux/} } +{ (fetch => 2) x VMG_UVAR }, 'slice'; - # (copy => 2) x MGf_COPY # if clear magic is_deeply \@b, [ @n{qw/bar qux/} ], 'hash: slice correctly'; +check { %h = () } { clear => 1 }, 'empty in list context'; + check { %h = (a => 1, d => 3); () } - +{ (store => 2) x VMG_UVAR }, - # clear => 1, (copy => 2) x VMG_UVAR + +{ (store => 2, copy => 2) x VMG_UVAR, clear => 1 }, 'assign from list in void context'; check { %h = map { $_ => 1 } qw/a b d/; } - +{ (exists => 3, store => 3) x VMG_UVAR }, - # clear => 1, (copy => 3) x VMG_UVAR + +{ (exists => 3, store => 3, copy => 3) x VMG_UVAR, clear => 1 }, 'assign from map in list context'; check { $h{d} = 2; () } +{ (store => 1) x VMG_UVAR }, 'assign old element'; -check { $h{c} = 3; () } +{ (store => 1) x VMG_UVAR }, - # (copy => 1) x VMG_UVAR # maybe also if clear magic +check { $h{c} = 3; () } +{ (store => 1, copy => 1) x VMG_UVAR }, 'assign new element'; -check { $s = %h } { }, 'buckets'; +$s = check { %h } { }, 'buckets'; -check { @b = keys %h } { }, 'keys'; +@b = check { keys %h } { }, 'keys'; is_deeply [ sort @b ], [ qw/a b c d/ ], 'hash: keys correctly'; -check { @b = values %h } { }, 'values'; +@b = check { values %h } { }, 'values'; is_deeply [ sort { $a <=> $b } @b ], [ 1, 1, 2, 3 ], 'hash: values correctly'; check { while (my ($k, $v) = each %h) { } } { }, 'each'; @@ -69,6 +69,6 @@ check { check { cast %b, $wiz } { }, 'cast 2'; } { free => 1 }, 'scope end'; -check { undef %h } { }, 'undef'; # clear => 1 +check { undef %h } { clear => 1 }, 'undef'; check { dispell %h, $wiz } { }, 'dispell';