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 108     108   68448 use strict;
  108         213  
  108         2832  
6 108     108   592 use warnings;
  108         189  
  108         2907  
7              
8 108     108   583 use base 'Validation::Class::Directive';
  108         189  
  108         7791  
9              
10 108     108   638 use Validation::Class::Util;
  108         213  
  108         714  
11              
12             our $VERSION = '7.900057'; # 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 9 my $self = shift;
23              
24 4         10 my ($proto, $field, $param) = @_;
25              
26 4 100 66     26 if (defined $field->{depends_on} && defined $param) {
27              
28 3         7 my $specification = $field->{depends_on};
29              
30 3 50 33     20 if ($field->{required} || $param) {
31              
32 3 100       17 my $dependents = isa_arrayref($specification) ?
33             $specification : [$specification]
34             ;
35              
36 3 50       5 if (@{$dependents}) {
  3         365  
37              
38 3         9 my @required_fields = ();
39              
40 3         5 foreach my $dependent (@{$dependents}) {
  3         8  
41              
42 3         11 my $field = $proto->fields->get($dependent);
43              
44 3 100 33     12 push @required_fields, $field->label || $field->name
45             unless $proto->params->has($dependent)
46             ;
47              
48             }
49              
50 3 100       14 if (my @r = @required_fields) {
51              
52 1   33     12 my$list=(join(' and ',join(', ',@r[0..$#r-1])||(),$r[-1]));
53              
54 1         10 $self->error(@_, $list);
55              
56             }
57              
58             }
59              
60             }
61              
62             }
63              
64 4         16 return $self;
65              
66             }
67              
68             1;
69              
70             __END__