X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F10-base.t;h=bd1050efd0d36983a8cf39c1f32e90bd708c7d65;hb=9225a4d4d98ce59fb492c93299851d7f7a738518;hp=f3eaee68f99624b6ff6775fbfd218f40dc35219d;hpb=8d2bccf19c13e6c8105cf04cb13481dfe133014f;p=perl%2Fmodules%2Fsubs-auto.git diff --git a/t/10-base.t b/t/10-base.t index f3eaee6..bd1050e 100644 --- a/t/10-base.t +++ b/t/10-base.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 60; +use Test::More tests => 91; my %_re = ( bareword => sub { qr/^Bareword\s+['"]?\s*$_[0]\s*['"]?\s+not\s+allowed\s+while\s+["']?\s*strict\s+subs\s*['"]?\s+in\s+use\s+at\s+$_[1]\s+line\s+$_[2]/ }, @@ -88,21 +88,50 @@ my %h = ( my $foo; our @foo; -my $y = eval { - foo 1, 2, \%h; -}; +eval { foo 1, 2, \%h }; _got_ok('compiling to foo(1,2,\\\%h)'); is($foo, 15, 'foo really was executed'); -eval { - wut 13, "what" -}; +eval { foo(3, 4, \%h) }; +_got_ok('compiling to foo(3,4,\\\%h)'); +is($foo, 19, 'foo() really was executed'); + +eval { local @_ = (5, 6, \%h); &foo }; +_got_ok('compiling to foo(5,6,\\\%h)'); +is($foo, 23, '&foo really was executed'); + +eval { &foo(7, 8, \%h) }; +_got_ok('compiling to foo(7,8,\\\%h)'); +is($foo, 27, '&foo() really was executed'); + +eval { wut 13, "what" }; _got_ok('compiling to wut(13,"what")'); is($wut, 17, 'wut really was executed'); +eval { wut(17, "what") }; +_got_ok('compiling to wut(17,"what")'); +is($wut, 21, 'wut() really was executed'); + +eval { local @_ = (21, "what"); &wut }; +_got_ok('compiling to wut(21,"what")'); +is($wut, 25, '&wut really was executed'); + +eval { &wut(25, "what") }; +_got_ok('compiling to wut(25,"what")'); +is($wut, 29, '&wut() really was executed'); + eval { qux }; _got_undefined('qux', __LINE__-1); +eval { qux() }; +_got_undefined('qux', __LINE__-1); + +eval { &qux }; +_got_undefined('qux', __LINE__-1); + +eval { &qux() }; +_got_undefined('qux', __LINE__-1); + { no strict 'refs'; is(*{'::feh'}{CODE}, undef, 'feh isn\'t defined'); @@ -133,9 +162,7 @@ sub foo { } } -eval { - foo 3, 4, { }; -}; +eval { foo 3, 4, { } }; _got_ok('compiling to foo(3,4,{})'); is($foo, 7, 'foo really was executed'); @@ -182,6 +209,10 @@ _got_ok('compiling to bareword'); $cb->(); is($b, 'blech', 'bareword ok'); +eval { foo 13, 1, { } }; +_got_ok('compiling to foo(13,1,{})'); +is($foo, 14, 'foo really was executed'); + $warn = undef; { local $SIG{__WARN__} = sub { $warn = $_[0] =~ /Subroutine\s+\S+redefined/; diag $_[0] }; @@ -235,18 +266,61 @@ sub wut { $wut = ($_[0] || 0) + length($_[1] || ''); '::wut' } sub yay { @yay = @_; '::yay' } -{ - use subs::auto; - eval "no subs::auto; meh"; - _got_bareword("meh", 1, eval => 1); +# === Restarting from there =================================================== +use subs::auto; + +eval "no subs::auto; meh"; +_got_bareword("meh", 1, eval => 1); # eval "use subs::auto; meh"; # _got_undefined('meh', 1, eval => 1, todo => 'Fails because of some bug in perl or Variable::Magic'); # eval "meh"; # _got_undefined('meh', 1, eval => 1, todo => 'Fails because of some bug in perl or Variable::Magic'); -} my $buf = ''; -open DONGS, '>', \$buf or die "open-in-memory: $!"; +{ + no subs::auto; + open DONGS, '>', \$buf or die "open-in-memory: $!"; +} print DONGS "hlagh\n"; is($buf, "hlagh\n", 'filehandles should\'t be touched'); close DONGS; + +seek DATA, 0, 1; +my @fruits = ; +chomp @fruits; +is_deeply(\@fruits, [ qw/apple pear banana/ ], 'DATA filehandle ok'); + +eval { foo 7, 9, { } }; +_got_ok('compiling to foo(7,9,{})'); +is($foo, 16, 'foo really was executed'); + +eval { foo(8, 10, { }) }; +_got_ok('compiling to foo(8,10,{})'); +is($foo, 18, 'foo() really was executed'); + +eval { local @_ = (9, 11, { }); &foo }; +_got_ok('compiling to foo(9,11,{})'); +is($foo, 20, '&foo really was executed'); + +eval { &foo(10, 12, { }) }; +_got_ok('compiling to foo(10,12,{})'); +is($foo, 22, '&foo() really was executed'); + +eval { blech }; +_got_undefined('blech', __LINE__-1); + +eval { blech() }; +_got_undefined('blech', __LINE__-1); + +eval { &blech }; +_got_undefined('blech', __LINE__-1); + +eval { &blech() }; +_got_undefined('blech', __LINE__-1); + +ok(-f $0 && -r _, '-X _'); + +__DATA__ +apple +pear +banana