]> git.gsnw.org Git - fping.git/commitdiff
Added tests -g for long prefixes
authorMartin Topholm <mph@hoth.dk>
Sat, 3 Sep 2016 18:47:18 +0000 (20:47 +0200)
committerMartin Topholm <mph@hoth.dk>
Sat, 3 Sep 2016 18:53:21 +0000 (20:53 +0200)
Expanded tests for -g option to hopefully cover both long prefixes and
too long prefixes.

ci/test-06-options-f-h.pl

index 8b252cc8d554301a5aec4abdeac0b459ef7beb5a..b5eaac5b3a58a3c16ef9f7cfa9aa4503078f6f28 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
 
-use Test::Command tests => 18;
+use Test::Command tests => 24;
 use File::Temp;
 
 #  -f file    read list of targets from a file ( - means stdin) (only if no -g specified)
@@ -53,6 +53,22 @@ $cmd->stdout_is_eq("127.0.0.1 is alive\n127.0.0.2 is alive\n");
 $cmd->stderr_is_eq("");
 }
 
+# fping -g (cidr - long prefixes)
+{
+my $cmd = Test::Command->new(cmd => "fping -g 127.0.0.2/31");
+$cmd->exit_is_num(0);
+$cmd->stdout_is_eq("127.0.0.2 is alive\n127.0.0.3 is alive\n");
+$cmd->stderr_is_eq("");
+}
+
+# fping -g (cidr - too long prefixes)
+{
+my $cmd = Test::Command->new(cmd => "fping -g 127.0.0.2/33");
+$cmd->exit_is_num(1);
+$cmd->stdout_is_eq("");
+$cmd->stderr_is_eq("Error: netmask must be between 1 and 32 (is: 33)\n");
+}
+
 # fping -H
 {
 my $cmd = Test::Command->new(cmd => "fping -H 1 127.0.0.1");