Branch Coverage

blib/lib/FusionInventory/Agent/Task/Deploy/CheckProcessor.pm
Criterion Covered Total %
branch 0 58 0.0


line true false branch
24 0 0 if ($params{'check'}{'type'} eq 'winkeyExists')
25 0 0 unless $FusionInventory::Agent::Task::Deploy::CheckProcessor::OSNAME eq 'MSWin32'
33 0 0 defined $r ? :
36 0 0 if ($params{'check'}{'type'} eq 'winkeyEquals')
37 0 0 unless $FusionInventory::Agent::Task::Deploy::CheckProcessor::OSNAME eq 'MSWin32'
44 0 0 defined $r && $params{'check'}{'value'} eq $r ? :
47 0 0 if ($params{'check'}{'type'} eq 'winkeyMissing')
48 0 0 unless $FusionInventory::Agent::Task::Deploy::CheckProcessor::OSNAME eq 'MSWin32'
56 0 0 defined $r ? :
59 0 0 if ($params{'check'}{'type'} eq 'fileExists')
60 0 0 -f $path ? :
63 0 0 if ($params{'check'}{'type'} eq 'fileSizeEquals')
65 0 0 @s ? :
68 0 0 if ($params{'check'}{'type'} eq 'fileSizeGreater')
70 0 0 unless @s
72 0 0 $params{'check'}{'value'} < $s[7] ? :
75 0 0 if ($params{'check'}{'type'} eq 'fileSizeLower')
77 0 0 unless @s
78 0 0 $params{'check'}{'value'} > $s[7] ? :
81 0 0 if ($params{'check'}{'type'} eq 'fileMissing')
82 0 0 -f $path ? :
85 0 0 if ($params{'check'}{'type'} eq 'freespaceGreater')
87 0 0 $freespace > $params{'check'}{'value'} ? :
90 0 0 if ($params{'check'}{'type'} eq 'fileSHA512')
99 0 0 $sha512 eq $params{'check'}{'value'} ? :
102 0 0 if ($params{'check'}{'type'} eq 'directoryExists')
103 0 0 -d $path ? :
106 0 0 if ($params{'check'}{'type'} eq 'directoryMissing')
107 0 0 -d $path ? :