X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F34-glob.t;h=1fe3df7b2cbc2b6030fcbecf19bec05c7af7a862;hb=d86c036207e622521bd725d7be7829d55ffd71f3;hp=47e68926b4e04256c0b13741c77bc4ea3f07674b;hpb=edb40826793e6ae2d30fe2f1c61bfff7b1df3afe;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/t/34-glob.t b/t/34-glob.t index 47e6892..1fe3df7 100644 --- a/t/34-glob.t +++ b/t/34-glob.t @@ -5,36 +5,66 @@ use warnings; use Test::More; -eval "use Symbol qw/gensym/"; -if ($@) { - plan skip_all => "Symbol::gensym required for testing magic for globs"; -} else { - plan tests => 2 * 8 + 1; - diag "Using Symbol $Symbol::VERSION" if defined $Symbol::VERSION; +BEGIN { + local $@; + if (eval "use Symbol qw; 1") { + plan tests => 2 * 17 + 1; + defined and diag "Using Symbol $_" for $Symbol::VERSION; + } else { + plan skip_all => "Symbol::gensym required for testing magic for globs"; + } } -use Variable::Magic qw/cast dispell/; +use Variable::Magic qw; + +my %get = VMG_COMPAT_GLOB_GET ? (get => 1) : (); use lib 't/lib'; use Variable::Magic::TestWatcher; -my $wiz = init - [ qw/get set len clear free copy dup local fetch store exists delete/ ], +my $wiz = init_watcher + [ qw ], 'glob'; local *a = gensym(); -check { cast *a, $wiz } { }, 'cast'; +watch { cast *a, $wiz } +{ }, 'cast'; + +watch { local *b = *a } +{ %get }, 'assign to'; + +SKIP: { + skip 'This failed temporarily between perls 5.13.1 and 5.13.8 (included)' + => 5 * 2 if "$]" >= 5.013_001 and "$]" <= 5.013_008; + + my $cxt = 'void contex'; + my $exp = { set => 1 }; -check { local *b = *a } { }, 'assign to'; + watch { *a = \1 } $exp, "assign scalar slot in $cxt"; + watch { *a = [ qw ] } $exp, "assign array slot in $cxt"; + watch { *a = { u => 1 } } $exp, "assign hash slot in $cxt"; + watch { *a = sub { } } $exp, "assign code slot in $cxt"; + watch { *a = gensym() } $exp, "assign glob in $cxt"; +} + +{ + my $cxt = 'scalar context'; + my $exp = { %get, set => 1 }; + my $v; -check { *a = gensym() } { set => 1 }, 'assign'; + $v = watch { *a = \1 } $exp, "assign scalar slot in $cxt"; + $v = watch { *a = [ qw ] } $exp, "assign array slot in $cxt"; + $v = watch { *a = { u => 1 } } $exp, "assign hash slot in $cxt"; + $v = watch { *a = sub { } } $exp, "assign code slot in $cxt"; + $v = watch { *a = gensym() } $exp, "assign glob in $cxt"; +} -check { +watch { local *b = gensym(); - check { cast *b, $wiz } { }, 'cast 2'; -} { }, 'scope end'; + watch { cast *b, $wiz } +{ }, 'cast 2'; +} +{ }, 'scope end'; + +%get = () if "$]" >= 5.013_007; -check { undef *a } { }, 'undef'; +watch { undef *a } +{ %get }, 'undef'; -check { dispell *a, $wiz } { }, 'dispell'; +watch { dispell *a, $wiz } +{ %get }, 'dispell';