diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-12-21 10:48:21 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-12-21 10:48:21 -0800 |
commit | a08ee2271d2166fc8013cee8ebeddd9fb0987283 (patch) | |
tree | eed51afb5e28931600e0b2b5107d6e4ff484a1c2 | |
parent | cc61e5b207f090d5032c49bc5e27f1528250fff6 (diff) | |
download | vyatta-cfg-a08ee2271d2166fc8013cee8ebeddd9fb0987283.tar.gz vyatta-cfg-a08ee2271d2166fc8013cee8ebeddd9fb0987283.zip |
Move tests to vyatta-cfg-system
-rw-r--r-- | tests/interface.pl | 52 | ||||
-rw-r--r-- | tests/isip.pl | 23 |
2 files changed, 0 insertions, 75 deletions
diff --git a/tests/interface.pl b/tests/interface.pl deleted file mode 100644 index 9ebeb60..0000000 --- a/tests/interface.pl +++ /dev/null @@ -1,52 +0,0 @@ -#! /usr/bin/perl - -# Standalone test for Vyatta::Interface, not intended to be used -# directly - - -use strict; -use warnings; -use Vyatta::Interface; -use Vyatta::Misc; - -my @interfaces = getInterfaces(); -print "Interfaces: ", join(' ',@interfaces),"\n"; - -print "IP\n"; -foreach my $type (qw/all broadcast multicast pointtopoint loopback/) { - print "\t$type = "; - foreach my $addr (Vyatta::Misc::getInterfacesIPadresses($type)) { - print $addr, '(', is_ip_v4_or_v6($addr), ') '; - } - print "\n"; -} - - -foreach my $arg (@interfaces) { - print "$arg : "; - my $intf = new Vyatta::Interface($arg); - - if (! $intf) { - print "undefined\n"; - next; - } - - my $vif = $intf->vif(); - print "vif=$vif " if $vif; - printf "path = '%s'\ndevice=%s\n", $intf->path(), $intf->physicalDevice(); - - my @addresses = $intf->address(); - if ($#addresses eq -1) { - print "address is no set\n"; - } else { - print "address ", join(' ',@addresses), "\n"; - } - - foreach my $attr (qw(exists configured disabled using_dhcp flags up running)) { - my $val = $intf->$attr(); - print " $attr=$val" if ($val); - } - print "\n"; -} - -exit 0; diff --git a/tests/isip.pl b/tests/isip.pl deleted file mode 100644 index 35a04b7..0000000 --- a/tests/isip.pl +++ /dev/null @@ -1,23 +0,0 @@ -#! /usr/bin/perl - -# Standalone test for Vyatta::Misc::isIPInterfaces - -use strict; -use warnings; -use Vyatta::Misc; -use Vyatta::Interface; - -my $vc; -my @interfaces = getInterfaces(); -print "Interfaces: ", join(' ',@interfaces),"\n"; - -foreach my $lip (@ARGV) { - print $lip, " is"; - if (Vyatta::Misc::isIPinInterfaces($vc, $lip, @interfaces)) { - print " in\n"; - } else { - print " not in\n"; - } -} - -exit 0; |