summaryrefslogtreecommitdiff
path: root/tests/interface.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/interface.pl')
-rw-r--r--tests/interface.pl35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/interface.pl b/tests/interface.pl
new file mode 100644
index 0000000..5fe4278
--- /dev/null
+++ b/tests/interface.pl
@@ -0,0 +1,35 @@
+#! /usr/bin/perl
+
+# Standalone test for Vyatta::Interface, not intended to be used
+# directly
+
+
+use strict;
+use warnings;
+use Vyatta::Interface;
+
+foreach my $arg (@ARGV) {
+ 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' device=%s\n", $intf->path(), $intf->physicalDevice();
+
+ foreach my $attr (qw(exists configured disabled dhcp address up running)) {
+ my $val = $intf->$attr();
+
+ if ($val) {
+ print "\t$attr = $val\n";
+ } else {
+ print "\t$attr is not set\n";
+ }
+ }
+}
+
+exit 0;