You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
Perl
48 lines
1.2 KiB
Perl
11 years ago
|
#!/usr/bin/perl -w
|
||
|
|
||
10 years ago
|
use Test::Command tests => 14;
|
||
11 years ago
|
use Test::More;
|
||
|
use Time::HiRes qw(gettimeofday tv_interval);
|
||
|
|
||
|
# -a show targets that are alive
|
||
|
# -A show targets by address
|
||
|
# -b n amount of ping data to send, in bytes (default 56)
|
||
|
# -B f set exponential backoff factor to f
|
||
|
|
||
|
# fping -a
|
||
11 years ago
|
{
|
||
|
my $cmd = Test::Command->new(cmd => "fping -a 127.0.0.1 127.0.0.2");
|
||
|
$cmd->exit_is_num(0);
|
||
|
$cmd->stdout_is_eq("127.0.0.1\n127.0.0.2\n");
|
||
|
$cmd->stderr_is_eq("");
|
||
|
}
|
||
11 years ago
|
|
||
|
# fping -A
|
||
11 years ago
|
{
|
||
|
my $cmd = Test::Command->new(cmd => "fping -A localhost");
|
||
|
$cmd->exit_is_num(0);
|
||
|
$cmd->stdout_is_eq("127.0.0.1 is alive\n");
|
||
|
$cmd->stderr_is_eq("");
|
||
|
}
|
||
|
|
||
11 years ago
|
# fping -b
|
||
11 years ago
|
{
|
||
|
my $cmd = Test::Command->new(cmd => "fping -b 1000 127.0.0.1");
|
||
|
$cmd->exit_is_num(0);
|
||
|
$cmd->stdout_is_eq("127.0.0.1 is alive\n");
|
||
|
$cmd->stderr_is_eq("");
|
||
|
}
|
||
11 years ago
|
|
||
|
# fping -B
|
||
11 years ago
|
{
|
||
11 years ago
|
my $t0 = [gettimeofday];
|
||
11 years ago
|
my $cmd = Test::Command->new(cmd => "fping -t 100 -r 3 -B 2 8.8.8.7");
|
||
|
$cmd->exit_is_num(1);
|
||
|
$cmd->stdout_is_eq("8.8.8.7 is unreachable\n");
|
||
10 years ago
|
$cmd->stderr_like(qr{^(|(8.8.8.7: error while sending ping: No route to host\n)+)$});
|
||
11 years ago
|
my $elapsed = tv_interval($t0);
|
||
|
# 0.1 + 0.2 + 0.4 + 0.8 = 1.5
|
||
|
cmp_ok($elapsed, '>=', 1.5);
|
||
11 years ago
|
cmp_ok($elapsed, '<', 1.8);
|
||
11 years ago
|
}
|