summaryrefslogtreecommitdiff
path: root/TAO/tests/POA/TIE/run_test.pl
blob: a4bee9c2726741b9adc42f44ad61111c02b7f6bd (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
     & eval 'exec perl -S $0 $argv:q'
     if 0;

# -*- perl -*-

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

$status = 0;
$debug_level = '0';

foreach $i (@ARGV) {
    if ($i eq '-debug') {
        $debug_level = '10';
    }
}

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

my $iorbase = "ior";

@iors = ($iorbase . "_1",
         $iorbase . "_2",
         $iorbase . "_3",
         $iorbase . "_4",
         $iorbase . "_5",
         $iorbase . "_6");


my $server_iorfile1 = $server->LocalFile ($iors[0]);
my $server_iorfile2 = $server->LocalFile ($iors[1]);
my $server_iorfile3 = $server->LocalFile ($iors[2]);
my $server_iorfile4 = $server->LocalFile ($iors[3]);
my $server_iorfile5 = $server->LocalFile ($iors[4]);
my $server_iorfile6 = $server->LocalFile ($iors[5]);

my $client1_iorfile1 = $client1->LocalFile ($iors[0]);
my $client1_iorfile2 = $client1->LocalFile ($iors[1]);
my $client1_iorfile3 = $client1->LocalFile ($iors[2]);
my $client1_iorfile4 = $client1->LocalFile ($iors[3]);

my $client2_iorfile5 = $client2->LocalFile ($iors[4]);
my $client2_iorfile6 = $client2->LocalFile ($iors[5]);

# Unlink all ior files
foreach $i (@iors){
    $server->DeleteFile ($i);
    if ($i == 'ior_5' or $i == 'ior_6'){
        $client2->DeleteFile ($i);
    }
    else{
        $client1->DeleteFile ($i);
    }
}

$SV = $server->CreateProcess ("server", "-ORBdebuglevel $debug_level " .
                              "-a $server_iorfile1 " .
                              "-b $server_iorfile2 " .
                              "-c $server_iorfile3 " .
                              "-d $server_iorfile4 " .
                              "-e $server_iorfile5 " .
                              "-f $server_iorfile6");

$CL1 = $client1->CreateProcess ("client", "-ORBdebuglevel $debug_level " .
                              "-a file://$client1_iorfile1 " .
                              "-b file://$client1_iorfile2 " .
                              "-c file://$client1_iorfile3 " .
                              "-d file://$client1_iorfile4");

$CL2 = $client2->CreateProcess ("client", "-ORBdebuglevel $debug_level " .
                              "-e file://$client2_iorfile5 " .
                              "-f file://$client2_iorfile6");

$server_status = $SV->Spawn ();

if ($server_status != 0) {
    print STDERR "ERROR: server returned $server_status\n";
    exit 1;
}

# In this example all the files are written out at the same time. So  make a
# check only for the first file

if ($server->WaitForFileTimed ($iors[5],
                               $server->ProcessStartWaitInterval()) == -1) {
    print STDERR "ERROR: cannot find file <$server_iorfile6>\n";
    $SV->Kill (); $SV->TimedWait (1);
    exit 1;
}

foreach $i (@iors){
    if ($server->GetFile ($i) == -1) {
        print STDERR "ERROR: cannot retrieve file <$i>\n";
        $SV->Kill (); $SV->TimedWait (1);
        exit 1;
    }
    if ($i == 'ior_5' or $i == 'ior_6'){
        if ($client2->PutFile ($i) == -1) {
            print STDERR "ERROR: cannot set file <$i>\n";
            $SV->Kill (); $SV->TimedWait (1);
            exit 1;
        }

    }
    else{
        if ($client1->PutFile ($i) == -1) {
            print STDERR "ERROR: cannot set file <$i>\n";
            $SV->Kill (); $SV->TimedWait (1);
            exit 1;
        }
    }
}

$client_status = $CL1->SpawnWaitKill ($client1->ProcessStartWaitInterval() + 45);

if ($client_status != 0) {
    print STDERR "ERROR: client returned $client_status\n";
    $status = 1;
}

$client_status = $CL2->SpawnWaitKill ($client2->ProcessStartWaitInterval() + 45);

if ($client_status != 0) {
    print STDERR "ERROR: client returned $client_status\n";
    $status = 1;
}

$server_status = $SV->TerminateWaitKill ($server->ProcessStopWaitInterval());

if ($server_status != 0) {
    print STDERR "ERROR: server returned $server_status\n";
    $status = 1;
}

# Unlink all ior files
foreach $i (@iors){
    $server->DeleteFile ($i);
    if ($i == 'ior_5' or $i == 'ior_6'){
        $client2->DeleteFile ($i);
    }
    else{
        $client1->DeleteFile ($i);
    }
}

exit $status;