summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3333_Regression/run_test.pl
blob: 170e79d117e3a4414014b13400c60ae8424199f7 (plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
     & eval 'exec perl -S $0 $argv:q'
     if 0;

# $Id$
# -*- perl -*-

use lib "$ENV{ACE_ROOT}/bin";
use PerlACE::TestTarget;

$status = 0;

my $server = PerlACE::TestTarget::create_target (1) || die "Create target 1 failed\n";
my $client = PerlACE::TestTarget::create_target (2) || die "Create target 2 failed\n";

my $iorbase = "server.ior";
my $forward_forever = "forward_forever.ior";
my $server_iorfile = $server->LocalFile ($iorbase);
my $server_forever = $server->LocalFile ($forward_forever);
my $client_iorfile = $client->LocalFile ($iorbase);
my $client_forever = $client->LocalFile ($forward_forever);
$server->DeleteFile($iorbase);
$server->DeleteFile($forward_forever);
$client->DeleteFile($iorbase);
$client->DeleteFile($forward_forever);

$SV = $server->CreateProcess ("Bug3333_Server", "-o $server_iorfile -p $server_forever -ORBObjRefStyle URL -ORBCollocation NO");
$CL = $client->CreateProcess ("Bug3333_Client", "-ORBDebugLevel0 -k file://$client_iorfile -l file://$client_forever");

print "Spawn server\n";
$server_status = $SV->Spawn ();
if ($server_status != 0) {
    print STDERR "ERROR: server returned $server_status\n";
    exit 1;
}
print "Wait for server ior file\n";
if ($server->WaitForFileTimed ($iorbase,
                               $server->ProcessStartWaitInterval()+10) == -1) {
    print STDERR "ERROR: cannot find file <$server_iorfile>\n";
    $SV->Kill (); $SV->TimedWait (1);
    exit 1;
}
if ($server->GetFile ($iorbase) == -1) {
    print STDERR "ERROR: cannot retrieve file <$server_iorfile>\n";
    $SV->Kill (); $SV->TimedWait (1);
    exit 1;
}
if ($server->PutFile ($iorbase) == -1) {
    print STDERR "ERROR: cannot set file <$server_iorfile>\n";
    $SV->Kill (); $SV->TimedWait (1);
    exit 1;
}
if ($server->WaitForFileTimed ($forward_forever,
                               $server->ProcessStartWaitInterval()) == -1) {
    print STDERR "ERROR: cannot find file <$client_iorfile>\n";
    $SV->Kill (); $SV->TimedWait (1);
    exit 1;
}
if ($server->GetFile ($forward_forever) == -1) {
    print STDERR "ERROR: cannot retrieve file <$client_iorfile>\n";
    $SV->Kill (); $SV->TimedWait (1);
    exit 1;
}
if ($server->PutFile ($forward_forever) == -1) {
    print STDERR "ERROR: cannot set file <$client_iorfile>\n";
    $SV->Kill (); $SV->TimedWait (1);
    exit 1;
}

print "Spawn client\n";
$client_status = $CL->SpawnWaitKill ($client->ProcessStartWaitInterval() + 45); # 60= 20x the actual roundtrip timeout policy value of 3sec, just to be sure.
if ($client_status != 0) {
    print STDERR "ERROR: client returned $client_status\n";
    $SHUTDOWN = $client->CreateProcess ("Bug3333_Client", " -k file://$server_iorfile -s");
    $SHUTDOWN->SpawnWaitKill ($client->ProcessStartWaitInterval() + 25);
    $status = 1;
}

print "Wait for server to finish\n";
$server_status = $SV->WaitKill ($server->ProcessStopWaitInterval() + 10);
if ($server_status != 0) {
    print STDERR "ERROR: server returned $server_status\n";
    $status = 1;
}

$server->DeleteFile($iorbase);
$server->DeleteFile($forward_forever);
$client->DeleteFile($iorbase);
$client->DeleteFile($forward_forever);

exit $status;