1 eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
2 & eval 'exec perl -S $0 $argv:q'
8 # To test the FactoryRegistry either as a stand-alone application or as part
9 # of the replication manager
11 # Command line options:
12 # --debug_build use exes from this directory
13 # if not specified use exes from ./release
14 # -r use ReplicationManager rather than stand-alone factory
16 # use real IOGR-based recovery.
17 # -v display test progress messages (repeating option increases verbosity
19 # Process being tested:
21 # implements PortableGroup::FactoryRegistry interface.
23 # FT_ReplicationManager (if -r option is used)
25 # Processes used in test:
27 # implements GenericFactory interface to create TestReplicas
28 # TestReplica implements TestReplica interface.
29 # TestReplica implements PullMonitorable interface.
31 # client for TestReplica interface.
32 # client for PullMonitorable.
33 # Object Group Creator
34 # Creates groups of objects.
36 # Test Scenario (***Test: marks behavior being tested):
38 # First the test starts a factory registry,
39 # Then starts three factories. Each factory exists at a separate location.
40 # The locations are named shire, bree, and rivendell. In a "real" system
41 # these locations would be on separate computers.
43 # The factory at the shire location knows how to create hobbits.
44 # The factory at the bree location knows how to create hobbits, elves, and humans.
45 # The factory at rivendell can create elves.
46 # Hobbits, elves, and humans are actually TestReplica objects. A creation parameter
47 # included as part of the registration information specifies which species they are.
49 # ***Test: The factories register themselves with the factory registry. Registration
50 # information includes the location, the type of object created, a object reference
51 # to the factory and set of parameters to be passed to the factory's create_object
54 # An object group creator is started and asked to create three object groups:
55 # a group of hobbits, a group of elves; and another group of hobbits.
57 # ***Test: the object group creator asks the registry for the set of factories
58 # that can create the type of object needed, then uses the create_object method
59 # for each factory to create the actual object.
61 # [temporary until IOGR's are working: The object group creator writes the
62 # IOR's of the create objects to files -- using a file naming convention to
63 # distinguish members of the group. It will be enhanced to assemble these
64 # IORs into an IOGR and either write the IOGR to a file or register it with
65 # the Naming Service.]
67 # The object group creator is also told to unregister all factories that create humans.
68 # ***Test: It does so using the unregister_factory_by_type method.
70 # Three clients are started, one at a time. Each client is given a reference
73 # [temporary until IOGRs and transparent reinvocaton work: each client is
74 # given references to the members of the group and manages its own recovery
75 # (client mediated fault tolerance)]
77 # Each client sends a few requests to first member of the object group. Eventually
78 # this member fails and the requests are then rerouted to the second (and last)
79 # member of the group.
81 # When a clients job is done, it exits and asks the remaining group member to
84 # The factories are run with the quit-on-idle option so when the last object
85 # created at that location goes away, the factory exits.
87 # ***Test: As it exits the factory unregisters itself with the factory registry.
88 # ***Test: A command line option determines whether it uses a single
89 # unregister_factory_by_location call, or separate unregister_factory calles for
90 # each type of object created. In this test, the shire location uses unregister_factory,
91 # and bree and rivendell use unregister_factory_by_location.
93 # The factory registry is also run with the quit-on-idle option so when the last
94 # factory unregisters itself, the factory registry shuts down to end the test.
95 use lib
"$ENV{ACE_ROOT}/bin";
96 use PerlACE
::TestTarget
;
98 ########################
102 my($verbose) = 0; # 1: report perl actions before executing them
103 my($debug_builds) = 0; # 0: use exes from Release directories
104 my($simulated) = 1; # 1: use "client simulated" fault tolerance
107 if ($i eq "--debug_build"){
110 elsif ($i eq "-r"){ # use RegistrationManager
113 elsif ($i eq "--no_simulate"){ # reverse this once we have FT ORB support
120 print "unknown option $i. Expecting: --debug_build, -r --no_simulate, -v\n";
125 my($build_directory) = "/Release";
126 if ( $debug_builds ) {
127 $build_directory = "";
131 print "verbose: $verbose\n";
132 print "debug_builds: $debug_builds -> $build_directory\n";
133 print "simulated: $simulated\n";
136 # List of the proccess which must be killed before exit with error
141 @kill_list = (@kill_list, $goal);
145 foreach $goal (@kill_list){
146 $goal->Kill (); $goal->TimedWait (1);
151 my $rp_manager = PerlACE
::TestTarget
::create_target
(1) || die "Create target 1 failed\n";
152 my $rp_manager_controller = PerlACE
::TestTarget
::create_target
(2) || die "Create target 2 failed\n";
153 my $ft_replica1 = PerlACE
::TestTarget
::create_target
(3) || die "Create target 3 failed\n";
154 my $ft_replica2 = PerlACE
::TestTarget
::create_target
(4) || die "Create target 4 failed\n";
155 my $ft_replica3 = PerlACE
::TestTarget
::create_target
(5) || die "Create target 5 failed\n";
156 my $ft_creator = PerlACE
::TestTarget
::create_target
(6) || die "Create target 6 failed\n";
157 my $client1 = PerlACE
::TestTarget
::create_target
(7) || die "Create target 7 failed\n";
158 my $client2 = PerlACE
::TestTarget
::create_target
(8) || die "Create target 8 failed\n";
159 my $client3 = PerlACE
::TestTarget
::create_target
(9) || die "Create target 9 failed\n";
160 my $ft_registry = PerlACE
::TestTarget
::create_target
(10) || die "Create target 10 failed\n";
162 my($role1) = "hobbit";
164 my($role3) = "human";
166 my($location1) = "shire";
167 my($location2) = "bree";
168 my($location3) = "rivendell";
169 my($location4) = "rohan";
171 my($rm_ior) = "rm.ior";
172 my($registry_ior) = "registry.ior";
174 my($factory1_ior) = "factory1.ior";
175 my($factory2_ior) = "factory2.ior";
176 my($factory3_ior) = "factory3.ior";
178 my($replica1_ior) = "${role1}_${location1}_0.ior";
179 my($replica2_ior) = "${role1}_${location2}_0.ior";
180 my($replica3_ior) = "${role2}_${location2}_1.ior";
181 my($replica4_ior) = "${role2}_${location3}_0.ior";
182 my($replica5_ior) = "${role1}_${location1}_1.ior";
183 my($replica6_ior) = "${role1}_${location2}_2.ior";
185 my($replica1_iogr) = "${role1}_0.iogr";
186 my($replica2_iogr) = "${role2}_1.iogr";
187 my($replica3_iogr) = "${role1}_2.iogr";
189 my($client_data) = "persistent.dat";
191 # Files for rp_manager
192 my $rp_manager_ior = $rp_manager->LocalFile ($rm_ior);
193 $rp_manager->DeleteFile ($rm_ior);
195 # Files for ft_registry
196 my $ft_registry_registry_ior = $ft_registry->LocalFile ($registry_ior);
197 $ft_registry->DeleteFile ($registry_ior);
199 # Files for rp_manager_controller
201 my ($rp_manager_controller_registry_ior);
203 $rp_manager_controller_registry_ior = $rp_manager_controller->LocalFile ($registry_ior);
204 $rp_manager_controller->DeleteFile ($registry_ior);
207 # Files for ft_replica1
208 my $ft_replica1_factory1_ior = $ft_replica1->LocalFile ($factory1_ior);
209 my $ft_replica1_client_data = $ft_replica1->LocalFile ($client_data);
211 $ft_replica1->DeleteFile ($factory1_ior);
212 $ft_replica1->DeleteFile ($client_data);
214 my($ft_replica1_registry_ior);
217 $ft_replica1_registry_ior = $ft_replica1->LocalFile ($registry_ior);
218 $ft_replica1->DeleteFile ($registry_ior);
221 # Files for ft_replica2
222 my $ft_replica2_factory2_ior = $ft_replica2->LocalFile ($factory2_ior);
223 my $ft_replica2_client_data = $ft_replica2->LocalFile ($client_data);
225 $ft_replica2->DeleteFile ($factory2_ior);
226 $ft_replica2->DeleteFile ($client_data);
228 my($ft_replica2_registry_ior);
230 $ft_replica2_registry_ior = $ft_replica2->LocalFile ($registry_ior);
231 $ft_replica2->DeleteFile ($registry_ior);
235 # Files for ft_replica3
236 my $ft_replica3_factory3_ior = $ft_replica3->LocalFile ($factory3_ior);
237 my $ft_replica3_client_data = $ft_replica3->LocalFile ($client_data);
239 $ft_replica3->DeleteFile ($factory3_ior);
240 $ft_replica3->DeleteFile ($client_data);
242 my($ft_replica3_registry_ior);
244 $ft_replica3_registry_ior = $ft_replica3->LocalFile ($registry_ior);
245 $ft_replica3->DeleteFile ($registry_ior);
248 # Files for ft_creator
249 my $creator_replica1_ior = $ft_creator->LocalFile ($replica1_ior);
250 my $creator_replica2_ior = $ft_creator->LocalFile ($replica2_ior);
251 my $creator_replica3_ior = $ft_creator->LocalFile ($replica3_ior);
252 my $creator_replica4_ior = $ft_creator->LocalFile ($replica4_ior);
253 my $creator_replica5_ior = $ft_creator->LocalFile ($replica5_ior);
254 my $creator_replica6_ior = $ft_creator->LocalFile ($replica6_ior);
256 my $creator_replica1_iogr = $ft_creator->LocalFile ($replica1_iogr);
257 my $creator_replica2_iogr = $ft_creator->LocalFile ($replica2_iogr);
258 my $creator_replica3_iogr = $ft_creator->LocalFile ($replica3_iogr);
260 my($ft_creator_registry_ior);
262 $ft_creator_registry_ior = $ft_creator->LocalFile ($registry_ior);
263 $ft_creator->DeleteFile ($registry_ior);
266 $ft_creator->DeleteFile ($replica1_ior);
267 $ft_creator->DeleteFile ($replica2_ior);
268 $ft_creator->DeleteFile ($replica3_ior);
269 $ft_creator->DeleteFile ($replica4_ior);
270 $ft_creator->DeleteFile ($replica5_ior);
271 $ft_creator->DeleteFile ($replica6_ior);
273 $ft_creator->DeleteFile ($replica1_iogr);
274 $ft_creator->DeleteFile ($replica2_iogr);
275 $ft_creator->DeleteFile ($replica3_iogr);
278 my $client1_replica1_ior = $client1->LocalFile ($replica1_ior);
279 my $client1_replica2_ior = $client1->LocalFile ($replica2_ior);
280 my $client1_replica1_iogr = $client1->LocalFile ($replica1_iogr);
282 $client1->DeleteFile ($replica1_ior);
283 $client1->DeleteFile ($replica2_ior);
284 $client1->DeleteFile ($replica1_iogr);
287 my $client2_replica3_ior = $client2->LocalFile ($replica3_ior);
288 my $client2_replica4_ior = $client2->LocalFile ($replica4_ior);
289 my $client2_replica2_iogr = $client2->LocalFile ($replica2_iogr);
291 $client2->DeleteFile ($replica3_ior);
292 $client2->DeleteFile ($replica4_ior);
293 $client2->DeleteFile ($replica2_iogr);
296 my $client3_replica5_ior = $client3->LocalFile ($replica5_ior);
297 my $client3_replica6_ior = $client3->LocalFile ($replica6_ior);
298 my $client3_replica3_iogr = $client3->LocalFile ($replica3_iogr);
300 $client3->DeleteFile ($replica5_ior);
301 $client3->DeleteFile ($replica6_ior);
302 $client3->DeleteFile ($replica3_iogr);
304 $hostname = $rp_manager->HostName ();
305 $port = $rp_manager->RandomPort ();
307 $RM = $rp_manager->CreateProcess ("$ENV{'TAO_ROOT'}/orbsvcs/FT_ReplicationManager" .
308 "$build_directory/tao_ft_replicationmanager",
309 "-o $rp_manager_ior " .
310 "-ORBEndpoint iiop://$hostname:$port");
313 $RMC = $rp_manager_controller->CreateProcess (".$build_directory/replmgr_controller" ,
314 "-ORBInitRef ReplicationManager=corbaloc::$hostname:$port/ReplicationManager " .
318 $RMC = $rp_manager_controller->CreateProcess (".$build_directory/replmgr_controller" ,
319 "-f file://$rp_manager_controller_registry_ior " .
323 $REG = $ft_registry->CreateProcess (".$build_directory/ft_registry" ,
324 "-o $ft_registry_registry_ior " .
333 $REP1 = $ft_replica1->CreateProcess (".$build_directory/ft_replica" ,
334 "-o $ft_replica1_factory1_ior ".
335 "-ORBInitRef ReplicationManager=corbaloc::$hostname:$port/ReplicationManager " .
336 "-l $location1 -i $role1 -q -p $ft_replica1_client_data");
338 $REP2 = $ft_replica2->CreateProcess (".$build_directory/ft_replica" ,
339 "-o $ft_replica2_factory2_ior ".
340 "-ORBInitRef ReplicationManager=corbaloc::$hostname:$port/ReplicationManager " .
342 "-i $role1 -i $role2 -i $role3 -q -u " .
343 "-p $ft_replica2_client_data");
345 $REP3 = $ft_replica3->CreateProcess (".$build_directory/ft_replica" ,
346 "-o $ft_replica3_factory3_ior ".
347 "-ORBInitRef ReplicationManager=corbaloc::$hostname:$port/ReplicationManager " .
348 "-l $location3 -i $role2 -q -u -p $ft_replica1_client_data");
350 $CTR = $ft_creator->CreateProcess (".$build_directory/ft_create" ,
351 "-ORBInitRef ReplicationManager=corbaloc::$hostname:$port/ReplicationManager " .
352 "-n -r $role1 -r $role2 -r $role1 -u $role3 -i");
356 $REP1 = $ft_replica1->CreateProcess (".$build_directory/ft_replica" ,
357 "-o $ft_replica1_factory1_ior ".
358 "-f file://$ft_replica1_registry_ior " .
359 "-l $location1 -i $role1 -q -p $ft_replica1_client_data");
361 $REP2 = $ft_replica2->CreateProcess (".$build_directory/ft_replica" ,
362 "-o $ft_replica2_factory2_ior ".
363 "-f file://$ft_replica2_registry_ior " .
365 "-i $role1 -i $role2 -i $role3 -q -u " .
366 "-p $ft_replica2_client_data");
368 $REP3 = $ft_replica3->CreateProcess (".$build_directory/ft_replica" ,
369 "-o $ft_replica3_factory3_ior ".
370 "-f file://$ft_replica3_registry_ior " .
371 "-l $location3 -i $role2 -q -u -p $ft_replica1_client_data");
373 $CTR = $ft_creator->CreateProcess (".$build_directory/ft_create" ,
374 "-f file://$ft_creator_registry_ior " .
375 "-n -r $role1 -r $role2 -r $role1 -u $role3 -i");
378 my($CL1) = $client1->CreateProcess (".$build_directory/ft_client" ,
379 "-f file://$client1_replica1_ior " .
380 "-f file://$client1_replica2_ior " .
383 my($CL2) = $client2->CreateProcess (".$build_directory/ft_client" ,
384 "-f file://$client2_replica3_ior " .
385 "-f file://$client2_replica4_ior " .
388 my($CL3) = $client3->CreateProcess (".$build_directory/ft_client" ,
389 "-f file://$client3_replica5_ior " .
390 "-f file://$client3_replica6_ior " .
395 print "\nTEST: Preparing Client Mediated Fault Tolerance test.\n" if ($verbose);
397 print "\nTEST: Preparing IOGR based test.\n" if ($verbose);
398 $CL1->Arguments ("-f file://$client1_replica1_iogr -c testscript");
399 $CL2->Arguments ("-f file://$client2_replica2_iogr -c testscript");
400 $CL3->Arguments ("-f file://$client3_replica3_iogr -c testscript");
403 #######################
404 # Start FactoryRegistry
406 print "\nTEST: starting ReplicationManager " . $RM->CommandLine . "\n" if ($verbose);
410 print "TEST: waiting for registry's IOR\n" if ($verbose);
412 if ($rp_manager->WaitForFileTimed ($rm_ior,
413 $rp_manager->ProcessStartWaitInterval()) == -1) {
414 print STDERR
"ERROR: cannot find file <$rp_manager_ior>\n";
419 print "\nTEST: starting registry " . $REG->CommandLine . "\n" if ($verbose);
424 print "TEST: waiting for registry's IOR\n" if ($verbose);
426 if ($ft_registry->WaitForFileTimed ($registry_ior,
427 $ft_registry->ProcessStartWaitInterval()) == -1) {
428 print STDERR
"ERROR: cannot find file <$rp_manager_ior>\n";
432 if ($ft_registry->GetFile ($registry_ior) == -1) {
433 print STDERR
"ERROR: cannot retrieve file <$ft_registry_registry_ior\n";
436 if ($ft_replica1->PutFile ($registry_ior) == -1) {
437 print STDERR
"ERROR: cannot set file <$ft_replica1_registry_ior>\n";
440 if ($ft_replica2->PutFile ($registry_ior) == -1) {
441 print STDERR
"ERROR: cannot set file <$ft_replica2_registry_ior>\n";
444 if ($ft_replica3->PutFile ($registry_ior) == -1) {
445 print STDERR
"ERROR: cannot set file <$ft_replica3_registry_ior>\n";
448 if ($ft_creator->PutFile ($registry_ior) == -1) {
449 print STDERR
"ERROR: cannot set file <$ft_creator_registry_ior>\n";
457 print "\nTEST: starting factory 1 " . $REP1->CommandLine . "\n" if ($verbose);
460 add_to_kills
($REP1);
462 print "TEST: waiting for factory 1's IOR\n" if ($verbose);
463 if ($ft_replica1->WaitForFileTimed ($factory1_ior,
464 $ft_replica1->ProcessStartWaitInterval()) == -1) {
465 print STDERR
"ERROR: cannot find file <$ft_replica1_factory1_ior>\n";
469 print "\nTEST: starting factory 2 " . $REP2->CommandLine . "\n" if ($verbose);
472 add_to_kills
($REP2);
474 print "TEST: waiting for factory 2's IOR\n" if ($verbose);
475 if ($ft_replica2->WaitForFileTimed ($factory2_ior,
476 $ft_replica2->ProcessStartWaitInterval()) == -1) {
477 print STDERR
"ERROR: cannot find file <$ft_replica2_factory2_ior>\n";
481 print "\nTEST: starting factory 3 " . $REP3->CommandLine . "\n" if ($verbose);
484 add_to_kills
($REP3);
486 print "TEST: waiting for factory 3's IOR\n" if ($verbose);
487 if ($ft_replica3->WaitForFileTimed ($factory3_ior,
488 $ft_replica3->ProcessStartWaitInterval()) == -1) {
489 print STDERR
"ERROR: cannot find file <$ft_replica3_factory3_ior>\n";
492 ######################
493 # Create object groups
495 print "\nTEST: starting object group creator " . $CTR->CommandLine . "\n" if ($verbose);
500 print "TEST: waiting for Replica IOR files from object group creator\n" if ($verbose);
502 if ($ft_creator->WaitForFileTimed ($replica1_ior,
503 $ft_creator->ProcessStartWaitInterval()) == -1) {
504 print STDERR
"ERROR: cannot find file <$ft_creator_replica1_ior>\n";
508 if ($ft_creator->WaitForFileTimed ($replica2_ior,
509 $ft_creator->ProcessStartWaitInterval()) == -1) {
510 print STDERR
"ERROR: cannot find file <$ft_creator_replica2_ior>\n";
514 if ($ft_creator->WaitForFileTimed ($replica3_ior,
515 $ft_creator->ProcessStartWaitInterval()) == -1) {
516 print STDERR
"ERROR: cannot find file <$ft_creator_replica3_ior>\n";
520 if ($ft_creator->WaitForFileTimed ($replica4_ior,
521 $ft_creator->ProcessStartWaitInterval()) == -1) {
522 print STDERR
"ERROR: cannot find file <$ft_creator_replica4_ior>\n";
526 if ($ft_creator->WaitForFileTimed ($replica5_ior,
527 $ft_creator->ProcessStartWaitInterval()) == -1) {
528 print STDERR
"ERROR: cannot find file <$ft_creator_replica5_ior>\n";
532 if ($ft_creator->WaitForFileTimed ($replica6_ior,
533 $ft_creator->ProcessStartWaitInterval()) == -1) {
534 print STDERR
"ERROR: cannot find file <$ft_creator_replica6_ior>\n";
539 # replica1_ior: client1
540 if ($ft_creator->GetFile ($replica1_ior) == -1) {
541 print STDERR
"ERROR: cannot retrieve file <$ft_creator_replica1_ior\n";
544 if ($client1->PutFile ($replica1_ior) == -1) {
545 print STDERR
"ERROR: cannot set file <$client1_replica1_ior>\n";
548 # replica2_ior: client1
549 if ($ft_creator->GetFile ($replica2_ior) == -1) {
550 print STDERR
"ERROR: cannot retrieve file <$ft_creator_replica2_ior\n";
553 if ($client1->PutFile ($replica2_ior) == -1) {
554 print STDERR
"ERROR: cannot set file <$client1_replica2_ior>\n";
557 # replica3_ior: client2
558 if ($ft_creator->GetFile ($replica3_ior) == -1) {
559 print STDERR
"ERROR: cannot retrieve file <$ft_creator_replica3_ior\n";
562 if ($client2->PutFile ($replica3_ior) == -1) {
563 print STDERR
"ERROR: cannot set file <$client2_replica3_ior>\n";
566 # replica4_ior: client2
567 if ($ft_creator->GetFile ($replica4_ior) == -1) {
568 print STDERR
"ERROR: cannot retrieve file <$ft_creator_replica4_ior\n";
571 if ($client2->PutFile ($replica4_ior) == -1) {
572 print STDERR
"ERROR: cannot set file <$client2_replica4_ior>\n";
575 # replica5_ior: client3
576 if ($ft_creator->GetFile ($replica5_ior) == -1) {
577 print STDERR
"ERROR: cannot retrieve file <$ft_creator_replica5_ior\n";
580 if ($client3->PutFile ($replica5_ior) == -1) {
581 print STDERR
"ERROR: cannot set file <$client3_replica5_ior>\n";
584 # replica6_ior: client3
585 if ($ft_creator->GetFile ($replica6_ior) == -1) {
586 print STDERR
"ERROR: cannot retrieve file <$ft_creator_replica6_ior\n";
589 if ($client3->PutFile ($replica6_ior) == -1) {
590 print STDERR
"ERROR: cannot set file <$client3_replica6_ior>\n";
594 print "\nTEST: wait for object group creator.\n" if ($verbose);
595 $status_creator = $CTR->WaitKill ($ft_creator->ProcessStopWaitInterval());
597 if ($status_creator != 0) {
598 print STDERR
"TEST ERROR: configuration manager returned $status_creator\n";
604 print "\nTEST: starting client " . $CL1->CommandLine . "\n" if ($verbose);
605 $status_client = $CL1->SpawnWaitKill ($client1->ProcessStartWaitInterval() + 45);
606 if ($status_client != 0) {
607 print STDERR
"TEST ERROR: client returned $status_client\n";
611 print "\nTEST: starting client again " . $CL2->CommandLine . "\n" if ($verbose);
613 $status_client = $CL2->SpawnWaitKill ($client2->ProcessStartWaitInterval() + 45);
614 if ($status_client != 0) {
615 print STDERR
"TEST ERROR: client returned $status_client\n";
619 print "\nTEST: starting client, one more time with feeling " . $CL3->CommandLine . "\n" if ($verbose);
620 $status_client = $CL3->SpawnWaitKill ($client3->ProcessStartWaitInterval() + 45);
621 if ($status_client != 0) {
622 print STDERR
"TEST ERROR: client returned $status_client\n";
626 ######################
627 # Clean house and exit
629 print "\nTEST: wait for factory 1.\n" if ($verbose);
631 $status_replica = $REP1->WaitKill ($ft_replica1->ProcessStopWaitInterval() + 15);
632 if ($status_replica != 0) {
633 print STDERR
"TEST ERROR: replica returned $status_replica\n";
636 print "\nTEST: wait for factory 2.\n" if ($verbose);
637 $status_replica = $REP2->WaitKill ($ft_replica2->ProcessStopWaitInterval() + 15);
638 if ($status_replica != 0) {
639 print STDERR
"TEST ERROR: replica returned $status_replica\n";
643 print "\nTEST: wait for factory 3.\n" if ($verbose);
644 $status_replica = $REP3->WaitKill ($ft_replica3->ProcessStopWaitInterval() + 15);
645 if ($status_replica != 0) {
646 print STDERR
"TEST ERROR: replica returned $status_replica\n";
651 print "\nTEST: shutting down the replication manager.\n" if ($verbose);
652 $status_controller = $RMC->SpawnWaitKill ($rp_manager_controller->ProcessStartWaitInterval() + 285);
653 if ($status_controller != 0) {
654 print STDERR
"TEST ERROR: replication manager controller returned $status_controller\n";
658 print "\nTEST: wait for ReplicationManager.\n" if ($verbose);
659 $status_repmgr = $RM->WaitKill ($rp_manager->ProcessStopWaitInterval() + 15);
660 if ($status_repmgr != 0) {
661 print STDERR
"TEST ERROR: ReplicationManager returned $status_repmgr\n";
666 print "\nTEST: wait for FactoryRegistry.\n" if ($verbose);
667 $status_reg = $REG->WaitKill ($ft_registry->ProcessStopWaitInterval() + 15);
668 if ($status_reg != 0) {
669 print STDERR
"TEST ERROR: FactoryRegistry returned $status_reg\n";
674 print "\nTEST: releasing scratch files.\n" if ($verbose);
676 # Files for rp_manager
677 $rp_manager->DeleteFile ($rm_ior);
679 # Files for ft_registry
680 $ft_registry->DeleteFile ($registry_ior);
683 $rp_manager_controller->DeleteFile ($registry_ior);
686 # Files for ft_replica1
687 $ft_replica1->DeleteFile ($factory1_ior);
688 $ft_replica1->DeleteFile ($client_data);
691 $ft_replica1->DeleteFile ($registry_ior);
694 # Files for ft_replica2
695 $ft_replica2->DeleteFile ($factory2_ior);
696 $ft_replica2->DeleteFile ($client_data);
699 $ft_replica2->DeleteFile ($registry_ior);
701 # Files for ft_replica3
702 $ft_replica3->DeleteFile ($factory3_ior);
703 $ft_replica3->DeleteFile ($client_data);
706 $ft_replica3->DeleteFile ($registry_ior);
709 # Files for ft_creator
711 $ft_creator->DeleteFile ($registry_ior);
714 $ft_creator->DeleteFile ($replica1_ior);
715 $ft_creator->DeleteFile ($replica2_ior);
716 $ft_creator->DeleteFile ($replica3_ior);
717 $ft_creator->DeleteFile ($replica4_ior);
718 $ft_creator->DeleteFile ($replica5_ior);
719 $ft_creator->DeleteFile ($replica6_ior);
721 $ft_creator->DeleteFile ($replica1_iogr);
722 $ft_creator->DeleteFile ($replica2_iogr);
723 $ft_creator->DeleteFile ($replica3_iogr);
726 $client1->DeleteFile ($replica1_ior);
727 $client1->DeleteFile ($replica2_ior);
728 $client1->DeleteFile ($replica1_iogr);
731 $client2->DeleteFile ($replica3_ior);
732 $client2->DeleteFile ($replica4_ior);
733 $client2->DeleteFile ($replica2_iogr);
736 $client3->DeleteFile ($replica5_ior);
737 $client3->DeleteFile ($replica6_ior);
738 $client3->DeleteFile ($replica3_iogr);