Added test for planetflow 2.
authorSapan Bhatia <sapanb@cs.princeton.edu>
Fri, 14 Mar 2008 21:14:46 +0000 (21:14 +0000)
committerSapan Bhatia <sapanb@cs.princeton.edu>
Fri, 14 Mar 2008 21:14:46 +0000 (21:14 +0000)
qaapi/qa/tests/node/pf2test.pl [new file with mode: 0644]

diff --git a/qaapi/qa/tests/node/pf2test.pl b/qaapi/qa/tests/node/pf2test.pl
new file mode 100644 (file)
index 0000000..4a8df91
--- /dev/null
@@ -0,0 +1,28 @@
+#!/usr/bin/perl
+
+print "Warning! This test runs only once. I.e., it will usually not run twice in succession till syslog sees some new activitt\n";
+print "Preparing...";
+
+system("cp /var/log/messages /tmp/pf2_test");
+
+# ping magic IP address
+print "Sending out packet...\n";
+system("su -c \"ping -c 1 64.34.177.39\" pl_netflow -"); # hm. Sapan doesn't own this IP anymore. We should change it at some point.
+
+print "Waiting for flow to appear...\n";
+sleep(10);
+
+open PIP,"|/usr/bin/diff -u /tmp/pf2_test /var/log/messages";
+
+while (<PIP>) {
+       if (/Received test flow to corewars.org from slice ([0-9]+)/) {
+               $xid = int($1);
+               print "Slice id: $xid";
+               ($xid==0 || $xid==-1) && die("Slice id incorrect");
+       }
+}
+
+close PIP;
+
+print "Test successful.";
+