File: callbacks.pl

package info (click to toggle)
libparams-validate-perl 0.76-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 316 kB
  • ctags: 214
  • sloc: perl: 2,230; makefile: 36
file content (68 lines) | stat: -rw-r--r-- 1,387 bytes parent folder | download | duplicates (2)
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
use strict;

package Foo;

use Params::Validate qw(:all);

my %storage = map { lc $_ => $_ } ( qw( InMemory XML BerkeleyDB ) );

sub new
{
    my $class = shift;

    local $^W = 1;

    my %p = validate_with( params => \@_,
                           spec   =>
                           { storage =>
                             { callbacks =>
                               { 'is a valid storage type' =>
                                 sub { $storage{ lc $_[0] } } },
                             },
                           },
                           allow_extra => 1,
                         );

    return 1;
}

package main;

use Test;

BEGIN { plan test => 3 }

my %allowed = ( foo => 1, baz => 1 );
eval
{
    my @a = ( foo => 'foo' );
    validate( @a, { foo => { callbacks =>
                             { is_allowed => sub { $allowed{ lc $_[0] } } },
                           }
                  } );
};
ok( ! $@ );

eval
{
    my @a = ( foo => 'aksjgakl' );

    validate( @a, { foo => { callbacks =>
                             { is_allowed => sub { $allowed{ lc $_[0] } } },
                           }
                  } );
};
ok( $ENV{PERL_NO_VALIDATION} ? ! $@ :
    $@ =~ /is_allowed/ );

# duplicates code from Lingua::ZH::CCDICT that revelead bug fixed in
# 0.56.
eval
{
    Foo->new( storage => 'InMemory', file => 'something' );
};
ok( ! $@ );



1;