File Coverage

blib/lib/Cisco/UCS/Chassis/PSU.pm
Criterion Covered Total %
statement 18 31 58.0
branch 0 4 0.0
condition n/a
subroutine 6 14 42.8
pod 0 2 0.0
total 24 51 47.0


line stmt bran cond sub pod time code
1             package Cisco::UCS::Chassis::PSU;
2              
3 1     1   4 use warnings;
  1         1  
  1         33  
4 1     1   3 use strict;
  1         0  
  1         16  
5              
6 1     1   3 use Carp qw(croak);
  1         1  
  1         37  
7 1     1   4 use Scalar::Util qw(weaken);
  1         1  
  1         31  
8 1     1   444 use Cisco::UCS::Chassis::PSU::Stats;
  1         1  
  1         68  
9              
10             our $VERSION = '0.51';
11              
12             our %ATTRIBUTES = (
13             id => 'id',
14             model => 'model',
15             operability => 'operability',
16             operational => 'operState',
17             performance => 'perf',
18             power => 'power',
19             presence => 'presence',
20             revision => 'revision',
21             serial => 'serial',
22             thermal => 'thermal',
23             vendor => 'vendor',
24             voltage => 'voltage',
25             );
26              
27             {
28 1     1   4 no strict 'refs';
  1         1  
  1         232  
29              
30             while ( my ($pseudo, $attribute) = each %ATTRIBUTES ) {
31             *{ __PACKAGE__ . '::' . $pseudo } = sub {
32 0     0     return $_[0]->{$attribute}
        0      
        0      
        0      
        0      
        0      
33             }
34             }
35             }
36              
37             sub new {
38 0     0 0   my ( $class, %args ) = @_;
39              
40 0           my $self = {};
41 0           bless $self, $class;
42              
43             defined $args{dn}
44             ? $self->{dn} = $args{dn}
45 0 0         : croak 'dn not defined';
46              
47             defined $args{ucs}
48             ? weaken($self->{ucs} = $args{ucs})
49 0 0         : croak 'ucs not defined';
50              
51 0           my %attr = %{ $self->{ucs}->resolve_dn(
52             dn => $self->{dn}
53 0           )->{outConfig}->{equipmentPsu}};
54            
55 0           while ( my ($k, $v) = each %attr ) { $self->{$k} = $v }
  0            
56            
57 0           return $self;
58             }
59              
60             sub stats {
61 0     0 0   my $self = shift;
62             return Cisco::UCS::Chassis::PSU::Stats->new(
63             $self->{ucs}->resolve_dn(
64             dn => "$self->{dn}/stats"
65             )->{outConfig}->{equipmentPsuStats} )
66 0           }
67              
68             1;
69              
70             __END__