File Coverage

blib/lib/JSV/Keyword/Draft4/MaxLength.pm
Criterion Covered Total %
statement 16 16 100.0
branch 2 2 100.0
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 23 24 95.8


line stmt bran cond sub pod time code
1             package JSV::Keyword::Draft4::MaxLength;
2              
3 44     44   30656 use strict;
  44         94  
  44         1208  
4 44     44   213 use warnings;
  44         75  
  44         1087  
5 44     44   202 use parent qw(JSV::Keyword);
  44         80  
  44         228  
6              
7 44     44   2070 use JSV::Keyword qw(:constants);
  44         83  
  44         10045  
8              
9             sub instance_type() { INSTANCE_TYPE_STRING(); }
10             sub keyword() { "maxLength" }
11             sub keyword_priority() { 10; }
12              
13             sub validate {
14 26     26 0 51 my ($class, $context, $schema, $instance) = @_;
15              
16 26         85 my $keyword_value = $class->keyword_value($schema);
17              
18 26 100       93 if (length($instance) > $keyword_value) {
19 10         35 $context->log_error("The instance length is greater than maxLength value");
20             }
21             }
22              
23             1;