1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
package Test::Sys::Info::Driver;
$Test::Sys::Info::Driver::VERSION = '0.23';
use strict;
use warnings;
use Test::More;
use Carp qw( croak );
use constant DRIVER_MODULES => (
'Sys::Info::OS',
'Sys::Info::Device',
'Sys::Info::Constants',
'Sys::Info::Driver::%s',
'Sys::Info::Driver::%s::OS',
'Sys::Info::Driver::%s::Device',
'Sys::Info::Driver::%s::Device::CPU',
);
sub new {
my $class = shift;
my $id = shift || croak 'Driver ID is missing';
my @suite = map {
my $name = $_;
$name =~ m{ \%s }xms ? sprintf( $name, $id ) : $name;
} DRIVER_MODULES;
foreach my $module ( @suite ) {
require_ok( $module );
ok( $module->import || 1, "$module imported" );
}
my $self = {
_id => $id,
_cpu => Sys::Info::Device->new('CPU'),
_os => Sys::Info::OS->new,
};
bless $self, $class;
return $self;
}
sub run {
my $self = shift;
my @tests = grep { m{ \A test_ }xms } sort keys %Test::Sys::Info::Driver::;
foreach my $test ( @tests ) {
$self->$test();
}
return 1;
}
sub test_os {
my $self = shift;
my $os = $self->os;
my @methods;
ok( defined $os->name , 'OS name is defined');
ok( defined $os->name(qw(long 1 ) ) , 'OS long name is defined');
ok( defined $os->name(qw(long 1 edition 1)), 'OS long name with edition is defined');
ok( defined $os->version , 'OS Version is defined');
ok( defined $os->build , 'OS build is defined');
ok( defined $os->uptime , 'Uptime is defined');
#ok( defined $os->login_name , 'Login name is defined');
#ok( defined $os->login_name( real => 1 ) , 'Real login name is defined');
ok( defined $os->tick_count , 'Tick count is defined');
#ok( defined $os->ip , 'IP is defined');
#these seem to fail on some environments disable defined test for now
push @methods, qw( ip login_name );
ok( $os->login_name( real => 1 ) || 1, 'Able to call login_name( real => 1 )' );
push @methods, qw(
edition
bitness
node_name host_name
domain_name workgroup
is_windows is_win32 is_win is_winnt is_win95 is_win9x
is_linux is_lin
is_bsd
is_unknown
is_admin is_admin_user is_adminuser
is_root is_root_user is_rootuser
is_su is_superuser is_super_user
logon_server
time_zone
tz
cdkey
product_type
);
$self->just_test_successful_call( $os, @methods );
ok( $os->cdkey( office => 1 ) || 1, 'cdkey() with office parameter called successfully');
# TODO: test the keys
ok( my %fs = $os->fs , 'FS is defined');
ok( my %meta = $os->meta, 'Meta is defined');
return;
}
sub test_device_cpu {
my $self = shift;
my $cpu = $self->cpu;
my @methods = qw(
ht
hyper_threading
bitness
load
speed
count
);
$self->just_test_successful_call( $cpu, @methods );
# TODO: more detailed tests
ok( $cpu->identify || 1, 'CPU identified' );
ok( my @cpu = $cpu->identify or (), 'CPU identified in list context' );
my $load_00 = $cpu->load( );
my $load_01 = $cpu->load(Sys::Info::Constants->DCPU_LOAD_LAST_01);
my $load_05 = $cpu->load(Sys::Info::Constants->DCPU_LOAD_LAST_05);
my $load_10 = $cpu->load(Sys::Info::Constants->DCPU_LOAD_LAST_10);
return;
}
sub just_test_successful_call {
my($self, $obj, @methods) = @_;
foreach my $method ( @methods ) {
ok( $obj->$method() || 1, "$method() called successfully");
}
return;
}
sub cpu { return shift->{_cpu} }
sub os { return shift->{_os} }
sub id { return shift->{_id} }
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Test::Sys::Info::Driver - Tests Sys::Info driver integrity.
=head1 VERSION
version 0.23
=head1 SYNOPSIS
-
=head1 DESCRIPTION
Can not be used directly. See L<Test::Sys::Info> for more information.
=head1 METHODS
=head2 new
=head2 cpu
=head2 id
=head2 os
=head2 run
=head2 test_os
=head2 test_device_cpu
=head2 just_test_successful_call
=head1 SEE ALSO
L<Sys::Info>, L<Test::Sys::Info>.
=head1 AUTHOR
Burak Gursoy <burak@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2009 by Burak Gursoy.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|