summaryrefslogtreecommitdiffstats
path: root/3rdparty/openpgm-svn-r1085/pgm/test/apdu.pl
blob: f4669c0ac2b4d03396045528a784967dd5dc38c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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