X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F22-len.t;h=6f556e672f7e9b1cc59f85a151161476637976fc;hb=a924275b5f3d7c1c612add18c8bf7a6f358e703f;hp=a35375fb21a1dcbcae9775d82b0273a34707dc03;hpb=3bc98bdbdb230943e7fb3135e325f10013acac2d;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/t/22-len.t b/t/22-len.t index a35375f..6f556e6 100644 --- a/t/22-len.t +++ b/t/22-len.t @@ -3,9 +3,12 @@ use strict; use warnings; -use Test::More tests => 39 + (2 * 2 + 1); +use Test::More tests => 39 + (2 * 2 + 1) + (5 + 2 * 3); -use Variable::Magic qw; +use Variable::Magic qw< + wizard cast dispell + VMG_COMPAT_SCALAR_LENGTH_NOLEN VMG_COMPAT_SCALAR_NOLEN +>; use lib 't/lib'; use Variable::Magic::TestValue; @@ -65,95 +68,101 @@ is $d, 0, 'len: get last empty array index have correct default length'; is $b, -1, 'len: get last empty array index correctly'; SKIP: { - skip 'length() no longer calls mg_len magic' => 16 if VMG_COMPAT_SCALAR_LENGTH_NOLEN; - - $c = 0; - $n = 1 + int rand 1000; - # length magic on scalars needs also get magic to be triggered. - $wiz = wizard get => sub { return 'anything' }, - len => sub { $d = $_[2]; ++$c; return $n }; - - my $x = 6789; - - $c = 0; - cast $x, $wiz; - is $c, 0, 'len: cast on scalar doesn\'t trigger magic'; - - $c = 0; - $d = undef; - $b = length $x; - is $c, 1, 'len: get scalar length triggers magic correctly'; - is $d, 4, 'len: get scalar length have correct default length'; - is $b, $n, 'len: get scalar length correctly'; - - $n = 0; - - $c = 0; - $d = undef; - $b = length $x; - is $c, 1, 'len: get scalar length 0 triggers magic correctly'; - is $d, 4, 'len: get scalar length 0 have correct default length'; - is $b, $n, 'len: get scalar length 0 correctly'; - - $n = undef; - $x = ''; - cast $x, $wiz; - - $c = 0; - $d = undef; - $b = length $x; - is $c, 1, 'len: get empty scalar length triggers magic correctly'; - is $d, 0, 'len: get empty scalar length have correct default length'; - is $b, 0, 'len: get empty scalar length correctly'; - - $x = "\x{20AB}ongs"; - cast $x, $wiz; + skip 'len magic is no longer called for scalars' => 16 + 6 + if VMG_COMPAT_SCALAR_NOLEN; - { - use bytes; + SKIP: { + skip 'length() no longer calls len magic on plain scalars' => 16 + if VMG_COMPAT_SCALAR_LENGTH_NOLEN; + + $c = 0; + $n = 1 + int rand 1000; + # length magic on scalars needs also get magic to be triggered. + my $wiz = wizard get => sub { return 'anything' }, + len => sub { $d = $_[2]; ++$c; return $n }; + + my $x = 6789; + + $c = 0; + cast $x, $wiz; + is $c, 0, 'len: cast on scalar doesn\'t trigger magic'; $c = 0; $d = undef; $b = length $x; - is $c, 1, 'len: get utf8 scalar length in bytes triggers magic correctly'; - is $d, 7, 'len: get utf8 scalar length in bytes have correct default length'; - is $b, $d, 'len: get utf8 scalar length in bytes correctly'; - } + is $c, 1, 'len: get scalar length triggers magic correctly'; + is $d, 4, 'len: get scalar length have correct default length'; + is $b, $n, 'len: get scalar length correctly'; - $c = 0; - $d = undef; - $b = length $x; - is $c, 1, 'len: get utf8 scalar length triggers magic correctly'; - is $d, 5, 'len: get utf8 scalar length have correct default length'; - is $b, $d, 'len: get utf8 scalar length correctly'; -} + $n = 0; -{ - our $c; - # length magic on scalars needs also get magic to be triggered. - my $wiz = wizard get => sub { 0 }, - len => sub { $d = $_[2]; ++$c; return $_[2] }; + $c = 0; + $d = undef; + $b = length $x; + is $c, 1, 'len: get scalar length 0 triggers magic correctly'; + is $d, 4, 'len: get scalar length 0 have correct default length'; + is $b, $n, 'len: get scalar length 0 correctly'; - { - my $x = "banana"; + $n = undef; + $x = ''; cast $x, $wiz; - local $c = 0; - pos($x) = 2; - is $c, 1, 'len: pos scalar triggers magic correctly'; - is $d, 6, 'len: pos scalar have correct default length'; - is $x, 'banana', 'len: pos scalar works correctly' - } + $c = 0; + $d = undef; + $b = length $x; + is $c, 1, 'len: get empty scalar length triggers magic correctly'; + is $d, 0, 'len: get empty scalar length have correct default length'; + is $b, 0, 'len: get empty scalar length correctly'; - { - my $x = "hl\x{20AB}gh"; # Force utf8 on string + $x = "\x{20AB}ongs"; cast $x, $wiz; - local $c = 0; - substr($x, 2, 1) = 'a'; - is $c, 1, 'len: substr utf8 scalar triggers magic correctly'; - is $d, 5, 'len: substr utf8 scalar have correct default length'; - is $x, 'hlagh', 'len: substr utf8 scalar correctly'; + { + use bytes; + + $c = 0; + $d = undef; + $b = length $x; + is $c, 1, 'len: get utf8 scalar length in bytes triggers magic correctly'; + is $d, 7, 'len: get utf8 scalar length in bytes have correct default length'; + is $b, $d,'len: get utf8 scalar length in bytes correctly'; + } + + $c = 0; + $d = undef; + $b = length $x; + is $c, 1, 'len: get utf8 scalar length triggers magic correctly'; + is $d, 5, 'len: get utf8 scalar length have correct default length'; + is $b, $d, 'len: get utf8 scalar length correctly'; + } + + { + our $c; + # length magic on scalars needs also get magic to be triggered. + my $wiz = wizard get => sub { 0 }, + len => sub { $d = $_[2]; ++$c; return $_[2] }; + + { + my $x = "banana"; + cast $x, $wiz; + + local $c = 0; + pos($x) = 2; + is $c, 1, 'len: pos scalar triggers magic correctly'; + is $d, 6, 'len: pos scalar have correct default length'; + is $x, 'banana', 'len: pos scalar works correctly' + } + + { + my $x = "hl\x{20AB}gh"; # Force utf8 on string + cast $x, $wiz; + + local $c = 0; + substr($x, 2, 1) = 'a'; + is $c, 1, 'len: substr utf8 scalar triggers magic correctly'; + is $d, 5, 'len: substr utf8 scalar have correct default length'; + is $x, 'hlagh', 'len: substr utf8 scalar correctly'; + } } } @@ -167,3 +176,35 @@ SKIP: { dispell @val, $wv; is_deeply \@val, [ 4, 5, 8 ], 'len: after value'; } + +{ + local $@; + + my $wua = eval { wizard len => \undef }; + is $@, '', 'len: noop wizard (for arrays) creation does not croak'; + + my @a = ('a' .. 'z'); + eval { cast @a, $wua }; + is $@, '', 'len: noop wizard (for arrays) cast does not croak'; + + my $l; + eval { $l = $#a }; + is $@, '', 'len: noop wizard (for arrays) invocation does not croak'; + is $l, 25, 'len: noop magic on an array returns the previous length'; + + my $wus = eval { wizard get => \undef, len => \undef }; + is $@, '', 'len: noop wizard (for strings) creation does not croak'; + + for ([ 'euro', 'string' ], [ "\x{20AC}uro", 'unicode string' ]) { + my ($euro, $desc) = @$_; + + eval { cast $euro, $wus }; + is $@, '', 'len: noop wizard (for strings) cast does not croak'; + + eval { pos($euro) = 2 }; + is $@, '', 'len: noop wizard (for strings) invocation does not croak'; + + my ($rest) = ($euro =~ /(.*)/g); + is $rest, 'ro', "len: noop magic on a $desc returns the previous length"; + } +}