summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/tests/Notify/Bug_3688_Regression/run_test.pl
blob: e2e8a36d14f441ec8c59b976bc4de0f89ccd8014 (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
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;
$debug_level = '0';

my $persistent_test = 0;
my $svcconf = "";
my $consumer_runtime = 10;

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

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

my $ior1file = "ecf.ior";

#Files which used by server1
my $server1_ior1file = $server1->LocalFile ($ior1file);
$server1->DeleteFile($ior1file);

$hostname = $server1->HostName ();
$port = $server1->RandomPort ();

$SV1 = $server1->CreateProcess ("../../../Notify_Service/Notify_Service",
                              "-ORBdebuglevel $debug_level " .
                              "-NoNameSvc -IORoutput $server1_ior1file $svcconf " .
                              "-ORBEndpoint iiop://$hostname:$port");

$SV2 = $server2->CreateProcess ("supplier",
                              "-ORBdebuglevel $debug_level " .
                              "NotifyService=iioploc://$hostname:$port/NotifyService");

$CL = $client->CreateProcess ("consumer",
                              "-ORBdebuglevel $debug_level " .
                              "NotifyService=iioploc://$hostname:$port/NotifyService " .
                              "-t $consumer_runtime");


print "\n*********** Starting the Notify_Service  ***********\n\n";
print $SV1->CommandLine ()."\n";

$server_status = $SV1->Spawn ();

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

if ($server1->WaitForFileTimed ($ior1file,
                               $server1->ProcessStartWaitInterval()) == -1) {
    print STDERR "ERROR: cannot find file <$server1_ior1file>\n";
    $SV1->Kill (); $SV1->TimedWait (1);
    exit 1;
}

print "\n*********** Starting the notification Consumer ***********\n\n";
print STDERR $SV2->CommandLine (). "\n";

$server_status = $SV2->Spawn ();

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

sleep ($server1->ProcessStartWaitInterval() / 3);


print "\n*********** Starting the notification Supplier ***********\n\n";
print STDERR $CL->CommandLine (). "\n";

$client_status = $CL->SpawnWaitKill ($client->ProcessStartWaitInterval());

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

$server_status = $SV2->WaitKill ($server2->ProcessStopWaitInterval());

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

$SV1-> Kill ();

$server1->DeleteFile($ior1file);

exit $status;