File Coverage

blib/lib/Validation/Class/Directive/DependsOn.pm
Criterion Covered Total %
statement 29 29 100.0
branch 10 12 83.3
condition 5 12 41.6
subroutine 5 5 100.0
pod 0 1 0.0
total 49 59 83.0


line stmt bran cond sub pod time code
1             # ABSTRACT: DependsOn Directive for Validation Class Field Definitions
2              
3             package Validation::Class::Directive::DependsOn;
4              
5 109     109   44087 use strict;
  109         235  
  109         2783  
6 109     109   496 use warnings;
  109         204  
  109         2461  
7              
8 109     109   569 use base 'Validation::Class::Directive';
  109         202  
  109         9231  
9              
10 109     109   671 use Validation::Class::Util;
  109         320  
  109         591  
11              
12             our $VERSION = '7.900058'; # VERSION
13              
14              
15             has 'mixin' => 1;
16             has 'field' => 1;
17             has 'multi' => 1;
18             has 'message' => '%s requires %s';
19              
20             sub validate {
21              
22 4     4 0 12 my $self = shift;
23              
24 4         15 my ($proto, $field, $param) = @_;
25              
26 4 100 66     31 if (defined $field->{depends_on} && defined $param) {
27              
28 3         12 my $specification = $field->{depends_on};
29              
30 3 50 33     21 if ($field->{required} || $param) {
31              
32 3 100       16 my $dependents = isa_arrayref($specification) ?
33             $specification : [$specification]
34             ;
35              
36 3 50       7 if (@{$dependents}) {
  3         11  
37              
38 3         10 my @required_fields = ();
39              
40 3         7 foreach my $dependent (@{$dependents}) {
  3         9  
41              
42 3         14 my $field = $proto->fields->get($dependent);
43              
44 3 100 33     13 push @required_fields, $field->label || $field->name
45             unless $proto->params->has($dependent)
46             ;
47              
48             }
49              
50 3 100       17 if (my @r = @required_fields) {
51              
52 1   33     14 my$list=(join(' and ',join(', ',@r[0..$#r-1])||(),$r[-1]));
53              
54 1         14 $self->error(@_, $list);
55              
56             }
57              
58             }
59              
60             }
61              
62             }
63              
64 4         11 return $self;
65              
66             }
67              
68             1;
69              
70             __END__