summaryrefslogtreecommitdiffstats
path: root/3rdparty/openpgm-svn-r1085/pgm/test/apdu.pl
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/openpgm-svn-r1085/pgm/test/apdu.pl')
-rwxr-xr-x3rdparty/openpgm-svn-r1085/pgm/test/apdu.pl56
1 files changed, 56 insertions, 0 deletions
diff --git a/3rdparty/openpgm-svn-r1085/pgm/test/apdu.pl b/3rdparty/openpgm-svn-r1085/pgm/test/apdu.pl
new file mode 100755
index 0000000..f4669c0
--- /dev/null
+++ b/3rdparty/openpgm-svn-r1085/pgm/test/apdu.pl
@@ -0,0 +1,56 @@
+#!/usr/bin/perl
+# apdu.pl
+# 6.1. Data Reception
+
+use strict;
+use PGM::Test;
+
+BEGIN { require "test.conf.pl"; }
+
+$| = 1;
+
+my $mon = PGM::Test->new(tag => 'mon', host => $config{mon}{host}, cmd => $config{mon}{cmd});
+my $sim = PGM::Test->new(tag => 'sim', host => $config{sim}{host}, cmd => $config{sim}{cmd});
+my $app = PGM::Test->new(tag => 'app', host => $config{app}{host}, cmd => $config{app}{cmd});
+
+$mon->connect;
+$sim->connect;
+$app->connect;
+
+sub close_ssh {
+ $mon = $sim = $app = undef;
+ print "finished.\n";
+}
+
+$SIG{'INT'} = sub { print "interrupt caught.\n"; close_ssh(); };
+
+$mon->say ("filter $config{app}{ip}");
+print "mon: ready.\n";
+
+$app->say ("set network $config{app}{network}");
+$app->say ("create ao");
+$app->say ("bind ao");
+$app->say ("listen ao");
+
+$sim->say ("set network $config{sim}{network}");
+$sim->say ("create ao");
+$sim->say ("bind ao");
+
+print "sim: publish APDU.\n";
+$sim->say ("send ao ringo x 1000");
+
+print "app: wait for data ...\n";
+my $data = $app->wait_for_data;
+print "app: received data [$data].\n";
+
+my $ref_data = "ringo" x 1000;
+die "incoming data corrupt\n" unless ($data == $ref_data);
+
+print "test completed successfully.\n";
+
+$mon->disconnect (1);
+$sim->disconnect;
+$app->disconnect;
+close_ssh;
+
+# eof