X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F10-simple.t;h=1692b44a8616f35ae9064a6670207588ad4145b8;hb=HEAD;hp=99136bddb1dd0c960dcd1b5c7ea7d045c467e2eb;hpb=017450c5da83c82c9149b5170c757ce03679b9a9;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/t/10-simple.t b/t/10-simple.t index 99136bd..1692b44 100644 --- a/t/10-simple.t +++ b/t/10-simple.t @@ -3,46 +3,60 @@ use strict; use warnings; -use Test::More tests => 16; +use Test::More tests => 43; -use Variable::Magic qw/wizard gensig getsig cast dispell/; +use Variable::Magic qw; -my $sig = gensig; +my $inv_wiz_obj = qr/Invalid\s+wizard\s+object\s+at\s+\Q$0\E/; -my $wiz = eval { wizard sig => $sig }; -ok(!$@, "wizard creation error ($@)"); -ok(defined $wiz, 'wizard is defined'); -ok(ref $wiz eq 'SCALAR', 'wizard is a scalar ref'); -ok($sig == getsig $wiz, 'wizard signature is correct'); +my $args = 9; +++$args if MGf_LOCAL; +$args += 5 if VMG_UVAR; +for (0 .. 20) { + next if $_ == $args; + eval { Variable::Magic::_wizard(('hlagh') x $_) }; + like($@, qr/Wrong\s+number\s+of\s+arguments\s+at\s+\Q$0\E/, '_wizard called directly with a wrong number of arguments croaks'); +} + +for (0 .. 3) { + eval { wizard(('dong') x (2 * $_ + 1)) }; + like($@, qr/Wrong\s+number\s+of\s+arguments\s+for\s+&?wizard\(\)\s+at\s+\Q$0\E/, 'wizard called with an odd number of arguments croaks'); +} + +my $wiz = eval { wizard }; +is($@, '', 'wizard doesn\'t croak'); +ok(defined $wiz, 'wizard is defined'); +is(ref $wiz, 'SCALAR', 'wizard is a scalar ref'); -my $a = 1; my $res = eval { cast $a, $wiz }; -ok(!$@, "cast croaks ($@)"); -ok($res, 'cast invalid'); +is($@, '', 'cast doesn\'t croak'); +ok($res, 'cast is valid'); $res = eval { dispell $a, $wiz }; -ok(!$@, "dispell from wizard croaks ($@)"); -ok($res, 'dispell from wizard invalid'); +is($@, '', 'dispell from wizard doesn\'t croak'); +ok($res, 'dispell from wizard is valid'); $res = eval { cast $a, $wiz }; -ok(!$@, "re-cast croaks ($@)"); -ok($res, 're-cast invalid'); +is($@, '', 're-cast doesn\'t croak'); +ok($res, 're-cast is valid'); + +$res = eval { dispell $a, \"blargh" }; +like($@, $inv_wiz_obj, 're-dispell from wrong wizard croaks'); +is($res, undef, 're-dispell from wrong wizard doesn\'t return anything'); + +$res = eval { dispell $a, undef }; +like($@, $inv_wiz_obj, 're-dispell from undef croaks'); +is($res, undef, 're-dispell from undef doesn\'t return anything'); $res = eval { dispell $a, $wiz }; -ok(!$@, "re-dispell croaks ($@)"); -ok($res, 're-dispell invalid'); +is($@, '', 're-dispell from good wizard doesn\'t croak'); +ok($res, 're-dispell from good wizard is valid'); $res = eval { dispell my $b, $wiz }; -ok(!$@, "dispell non-magic object fails ($@)"); -ok($res == 0, 'dispell non-magic object doesn\'t return 0'); - -$sig = gensig; -{ - my $wiz = wizard sig => $sig; - my $b = 2; - my $res = cast $b, $wiz; -} +is($@, '', 'dispell non-magic object doesn\'t croak'); +is($res, 0, 'dispell non-magic object returns 0'); + my $c = 3; -$res = eval { cast $c, $sig }; -ok(!$@, "cast from obsolete signature croaks ($@)"); -ok(!defined($res), 'cast from obsolete signature returns undef'); +$res = eval { cast $c, undef }; +like($@, $inv_wiz_obj, 'cast from undef croaks'); +is($res, undef, 'cast from undef doesn\'t return anything');