File Coverage

blib/lib/Validation/Class/Directive/Decimal.pm
Criterion Covered Total %
statement 25 29 86.2
branch 6 10 60.0
condition 2 6 33.3
subroutine 5 5 100.0
pod 0 1 0.0
total 38 51 74.5


line stmt bran cond sub pod time code
1             # ABSTRACT: Decimal Directive for Validation Class Field Definitions
2              
3             package Validation::Class::Directive::Decimal;
4              
5 108     108   69046 use strict;
  108         205  
  108         2779  
6 108     108   526 use warnings;
  108         607  
  108         2897  
7              
8 108     108   523 use base 'Validation::Class::Directive';
  108         206  
  108         7807  
9              
10 108     108   551 use Validation::Class::Util;
  108         205  
  108         740  
11              
12             our $VERSION = '7.900057'; # VERSION
13              
14              
15             has 'mixin' => 1;
16             has 'field' => 1;
17             has 'multi' => 0;
18             has 'message' => '%s requires a valid decimal number';
19              
20             sub validate {
21              
22 4     4 0 8 my ($self, $proto, $field, $param) = @_;
23              
24 4 50 33     26 if (defined $field->{decimal} && defined $param) {
25              
26             # checks for a valid decimal. Both the sign and exponent are optional
27              
28             # 0 => Any number of decimal places, including none
29             # 1 => Any number of decimal places greater than 0, or a float|double
30             # 2 => Exactly that many number of decimal places
31              
32 4 50 33     20 if ($field->{required} || $param) {
33              
34 4         7 my $type = $field->{decimal};
35              
36 4         8 my $lnum = '[0-9]+';
37 4         15 my $dnum = "[0-9]*[\.]${lnum}";
38 4         7 my $sign = '[+-]?';
39 4         10 my $exp = "(?:[eE]${sign}${lnum})?";
40              
41 4         4 my $dre;
42              
43 4 50       13 if ($type == 0) {
    50          
44 0         0 $dre = qr/^${sign}(?:${lnum}|${dnum})${exp}$/;
45             }
46              
47             elsif ($type == 1) {
48 4         61 $dre = qr/^${sign}${dnum}${exp}$/;
49             }
50              
51             else {
52 0         0 $type = "[0-9]\{${type}}";
53 0         0 $dnum = "(?:[0-9]*[\.]${type}|${lnum}[\.]${type})";
54 0         0 $dre = qr/^${sign}${dnum}${exp}$/;
55             }
56              
57 4 100       45 $self->error($proto, $field) unless $param =~ $dre;
58              
59             }
60              
61             }
62              
63 4         12 return $self;
64              
65             }
66              
67             1;
68              
69             __END__