1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
#!./perl
use strict;
use warnings;
use Test::More tests => 26;
use List::Util qw(pairgrep pairfirst pairmap pairs unpairs pairkeys pairvalues);
no warnings 'misc'; # avoid "Odd number of elements" warnings most of the time
is_deeply( [ pairgrep { $b % 2 } one => 1, two => 2, three => 3 ],
[ one => 1, three => 3 ],
'pairgrep list' );
is( scalar( pairgrep { $b & 2 } one => 1, two => 2, three => 3 ),
2,
'pairgrep scalar' );
is_deeply( [ pairgrep { $a } 0 => "zero", 1 => "one", 2 ],
[ 1 => "one", 2 => undef ],
'pairgrep pads with undef' );
{
use warnings 'misc';
my $warnings = "";
local $SIG{__WARN__} = sub { $warnings .= $_[0] };
pairgrep { } one => 1, two => 2;
is( $warnings, "", 'even-sized list yields no warnings from pairgrep' );
pairgrep { } one => 1, two =>;
like( $warnings, qr/^Odd number of elements in pairgrep at /,
'odd-sized list yields warning from pairgrep' );
}
{
my @kvlist = ( one => 1, two => 2 );
pairgrep { $b++ } @kvlist;
is_deeply( \@kvlist, [ one => 2, two => 3 ], 'pairgrep aliases elements' );
}
is_deeply( [ pairfirst { length $a == 5 } one => 1, two => 2, three => 3 ],
[ three => 3 ],
'pairfirst list' );
is_deeply( [ pairfirst { length $a == 4 } one => 1, two => 2, three => 3 ],
[],
'pairfirst list empty' );
is( scalar( pairfirst { length $a == 5 } one => 1, two => 2, three => 3 ),
1,
'pairfirst scalar true' );
ok( !scalar( pairfirst { length $a == 4 } one => 1, two => 2, three => 3 ),
'pairfirst scalar false' );
is_deeply( [ pairmap { uc $a => $b } one => 1, two => 2, three => 3 ],
[ ONE => 1, TWO => 2, THREE => 3 ],
'pairmap list' );
is( scalar( pairmap { qw( a b c ) } one => 1, two => 2 ),
6,
'pairmap scalar' );
is_deeply( [ pairmap { $a => @$b } one => [1,1,1], two => [2,2,2], three => [3,3,3] ],
[ one => 1, 1, 1, two => 2, 2, 2, three => 3, 3, 3 ],
'pairmap list returning >2 items' );
is_deeply( [ pairmap { $b } one => 1, two => 2, three => ],
[ 1, 2, undef ],
'pairmap pads with undef' );
{
my @kvlist = ( one => 1, two => 2 );
pairmap { $b++ } @kvlist;
is_deeply( \@kvlist, [ one => 2, two => 3 ], 'pairmap aliases elements' );
}
# Calculating a 1000-element list should hopefully cause the stack to move
# underneath pairmap
is_deeply( [ pairmap { my @l = (1) x 1000; "$a=$b" } one => 1, two => 2, three => 3 ],
[ "one=1", "two=2", "three=3" ],
'pairmap copes with stack movement' );
is_deeply( [ pairs one => 1, two => 2, three => 3 ],
[ [ one => 1 ], [ two => 2 ], [ three => 3 ] ],
'pairs' );
is_deeply( [ pairs one => 1, two => ],
[ [ one => 1 ], [ two => undef ] ],
'pairs pads with undef' );
{
my @p = pairs one => 1, two => 2;
is( $p[0]->key, "one", 'pairs ->key' );
is( $p[0]->value, 1, 'pairs ->value' );
}
is_deeply( [ unpairs [ four => 4 ], [ five => 5 ], [ six => 6 ] ],
[ four => 4, five => 5, six => 6 ],
'unpairs' );
is_deeply( [ unpairs [ four => 4 ], [ five => ] ],
[ four => 4, five => undef ],
'unpairs with short item fills in undef' );
is_deeply( [ unpairs [ four => 4 ], [ five => 5, 5 ] ],
[ four => 4, five => 5 ],
'unpairs with long item truncates' );
is_deeply( [ pairkeys one => 1, two => 2 ],
[qw( one two )],
'pairkeys' );
is_deeply( [ pairvalues one => 1, two => 2 ],
[ 1, 2 ],
'pairvalues' );
# pairmap within pairmap
{
my @kvlist = (
o1 => [ iA => 'A', iB => 'B' ],
o2 => [ iC => 'C', iD => 'D' ],
);
is_deeply( [ pairmap { pairmap { $b } @$b } @kvlist ],
[ 'A', 'B', 'C', 'D', ],
'pairmap within pairmap' );
}
|