summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/MC/run_test.pl
blob: 42c56ac0ea3893322c86a16ffea6cf6ac1fddb67 (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
150
151
152
153
154
155
156
157
158
159
160
161
162
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::Run_Test;

use strict;

PerlACE::add_lib_path ('../lib');

PerlACE::check_privilege_group();

# define the following as necessary to customize the test

my $static_build = 0;
$static_build = new PerlACE::ConfigList->check_config('STATIC');
#print "static_build " . $static_build . "\n";
my $orbdebuglevel = "";
#$orbdebuglevel = " -ORBDebugLevel 8 ";
my $ior = PerlACE::LocalFile('test_monitor.ior');
my $monitorior = PerlACE::LocalFile('monitor.ior');
my $namingior = PerlACE::LocalFile('naming.ior');
my $notifyior = PerlACE::LocalFile('notify.ior');
my $ready = PerlACE::LocalFile('ready.txt');
my $notify_conf = PerlACE::LocalFile("notify$PerlACE::svcconf_ext");
my $port = PerlACE::random_port();
my $nscorbaloc = "-ORBInitRef NameService=corbaloc:iiop:" .
                 "localhost:$port/NameService";
die "oops" if not open(FH, ">$notify_conf");
if($static_build){
  print FH "static TAO_MonitorAndControl \"-o monitor.ior " .
           "-ORBArg -ORBInitRef " .
           "-ORBArg NameService=corbaloc:iiop:localhost:$port/NameService\"\n";
  print FH "static TAO_MC_Notify_Service \"-DispatchingThreads 1 \"\n";
} else {
  print FH "dynamic TAO_MC_Notify_Service Service_Object * " .
            "TAO_CosNotification_MC_Ext:_make_TAO_MC_Notify_Service () \"\"\n";
  print FH "static Notify_Default_Event_Manager_Objects_Factory \"-DispatchingThreads 1\"\n";
  print FH "dynamic TAO_MonitorAndControl Service_Object * ".
            "TAO_CosNotification_MC:_make_TAO_MonitorAndControl () \"" .
               "-o monitor.ior " .
               "-ORBArg -ORBInitRef ".
               "-ORBArg NameService=corbaloc:iiop:localhost:$port/NameService" .
               "\"\n";
}  
close(FH);    
my $NS = new PerlACE::Process("../../../Naming_Service/Naming_Service",
                              "-ORBEndpoint iiop://localhost:$port " .
                              "-o $namingior");
my $TS = new PerlACE::Process("../../../Notify_Service/Notify_Service",
                               "$orbdebuglevel $nscorbaloc " .
                              "-IORoutput $notifyior " .
                              "-ORBSvcConf $notify_conf "
                              );

my $MON = new PerlACE::Process("test_monitor",
                               "-k file://$monitorior");
my $STS = new PerlACE::Process("Structured_Supplier",
                              "$nscorbaloc");
my $STC = new PerlACE::Process("Structured_Consumer",
                              "$nscorbaloc");

unlink($ior, $monitorior, $notifyior, $namingior, $ready);

print $NS->CommandLine()."\n";
$NS->Spawn();
if (PerlACE::waitforfile_timed(
                 $namingior,
                 $PerlACE::wait_interval_for_process_creation) == -1) {
  print STDERR "ERROR: waiting for the naming service to start\n";
  $NS->Kill();
  exit(1);
}

print $TS->CommandLine()."\n";
$TS->Spawn();
if (PerlACE::waitforfile_timed(
                 $notifyior,
                 $PerlACE::wait_interval_for_process_creation * 2) == -1) {
  print STDERR "ERROR: waiting for the notify service to start\n";
  $TS->Kill();
  $NS->Kill();
  exit(1);
}

if (PerlACE::waitforfile_timed(
                 $monitorior,
	$PerlACE::wait_interval_for_process_creation) == -1) {
    print STDERR "ERROR: waiting for the NS Monitoring service to start\n";
    $TS->Kill();
    $NS->Kill();
    exit(1);
}

print $MON->CommandLine()."\n";
$MON->Spawn();
if (PerlACE::waitforfile_timed(
                 $ior,
                 $PerlACE::wait_interval_for_process_creation) == -1) {
  print STDERR "ERROR: waiting for the supplier to start\n";
  $MON->Kill();
  $TS->Kill();
  $NS->Kill();
  exit(1);
}

print $STC->CommandLine()."\n";
my $client = $STC->Spawn();
if ($client != 0) {
  print STDERR "ERROR: starting the consumer\n";
  $STC->Kill();
  $MON->Kill();
  $TS->Kill();
  $NS->Kill();
  exit(1);
}

## Wait for the consumer to create the event channel in
## the Notify_Service and register it with the Name Service
if (PerlACE::waitforfile_timed(
                 $ready,
                 $PerlACE::wait_interval_for_process_creation) == -1) {
  print STDERR "ERROR: waiting for the consumer to start\n";
  $STC->Kill();
  $MON->Kill();
  $TS->Kill();
  $NS->Kill();
  exit(1);
}

print $STS->CommandLine()."\n";
my $server = $STS->SpawnWaitKill(30);
if ($server != 0) {
  print STDERR "ERROR: waiting for the supplier\n";
  $STS->Kill();
  $STC->Kill();
  $MON->Kill();
  $TS->Kill();
  $NS->Kill();
  exit(1);
}

$client = $STC->WaitKill(60);
if ($client != 0) {
  print STDERR "ERROR: waiting for the consumer\n";
  $STC->Kill();
  $MON->Kill();
  $TS->Kill();
  $NS->Kill();
  exit(1);
}

$MON->Kill();
$TS->Kill();
$NS->Kill();

unlink($ior, $monitorior, $notifyior, $namingior, $ready);
exit(0);