File: basic.t

package info (click to toggle)
libdata-find-perl 0.03-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 100 kB
  • sloc: perl: 239; makefile: 2
file content (75 lines) | stat: -rw-r--r-- 1,438 bytes parent folder | download
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
#!perl

use strict;
use warnings;

use Data::Find qw( diter dfind dwith );
use Test::More;

my @cases = (
  {
    name => 'all',
    args => [
      {
        ar => [ 1, 2, 3 ],
        ha => { one => 1, two => 2, three => 3 }
      }
    ],
    expect => [
      '{ar}[0]',     '{ar}[1]', '{ar}[2]', '{ha}{one}',
      '{ha}{three}', '{ha}{two}',
    ],
  },
  {
    name => 'odd',
    args => [
      {
        ar => [ 1, 2, 3 ],
        ha => { one => 1, two => 2, three => 3 }
      },
      sub {
        my $v = shift;
        defined $v && !ref $v && $v % 2 == 1;
       }
    ],
    expect => [ '{ar}[0]', '{ar}[2]', '{ha}{one}', '{ha}{three}', ],
  },
  {
    name => 'three',
    args => [
      {
        ar => [ 1, 2, 3 ],
        ha => { one => 1, two => 2, three => 3 }
      },
      3,
    ],
    expect => [ '{ar}[2]', '{ha}{three}', ],
  },
  {
    name => 'circular',
    args => sub {
      my $foo = { ar => [ 'a', 'b', 'c' ], };
      $foo->{me} = $foo;
      return [ $foo, qr{c} ];
    },
    expect => [ '{ar}[2]', ],
  },
);

plan tests => @cases * 2;

for my $case ( @cases ) {
  my $name = $case->{name};
  my $args = $case->{args};
  $args = $args->() if 'CODE' eq ref $args;
  my @got  = dfind @$args;
  my @got2 = ();
  dwith @$args, sub {
    push @got2, shift;
  };
  is_deeply [@got],  $case->{expect}, "$name: dfind";
  is_deeply [@got2], $case->{expect}, "$name: dwith";
}

# vim:ts=2:sw=2:et:ft=perl