File Coverage

blib/lib/Net/SecurityCenter/API/File.pm
Criterion Covered Total %
statement 15 25 60.0
branch 0 8 0.0
condition n/a
subroutine 5 7 71.4
pod 2 2 100.0
total 22 42 52.3


line stmt bran cond sub pod time code
1             package Net::SecurityCenter::API::File;
2              
3 2     2   705 use warnings;
  2         4  
  2         54  
4 2     2   8 use strict;
  2         4  
  2         31  
5              
6 2     2   7 use Carp;
  2         3  
  2         87  
7              
8 2     2   9 use parent 'Net::SecurityCenter::Base';
  2         4  
  2         10  
9              
10 2     2   104 use Net::SecurityCenter::Utils qw(:all);
  2         4  
  2         645  
11              
12             our $VERSION = '0.310';
13              
14             #-------------------------------------------------------------------------------
15             # METHODS
16             #-------------------------------------------------------------------------------
17              
18             sub upload {
19              
20 0     0 1   my ( $self, $file ) = @_;
21              
22 0 0         ( @_ == 2 ) or croak( 'Usage: ' . __PACKAGE__ . '->upload( $FILE )' );
23              
24 0           my $response = $self->client->upload($file);
25              
26 0 0         return if ( !$response );
27 0           return $response->{filename};
28              
29             }
30              
31             #-------------------------------------------------------------------------------
32              
33             sub clear {
34              
35 0     0 1   my ( $self, $file ) = @_;
36              
37 0 0         ( @_ == 2 ) or croak( 'Usage: ' . __PACKAGE__ . '->clear( $FILE )' );
38              
39 0           my $response = $self->client->post( '/file/clear', { filename => $file } );
40              
41 0 0         return if ( !$response );
42 0           return 1;
43              
44             }
45              
46             #-------------------------------------------------------------------------------
47              
48             1;
49              
50             __END__