📄 run_test_demo.pl
字号:
if (PerlACE::waitforfile_timed ($notifier_ior, 5) == -1) {
print STDERR "TEST ERROR: cannot find file <$notifier_ior>\n";
$RM->Kill (); $RM->TimedWait (1);
$NOT->Kill (); $NOT->TimedWait (1);
exit 1;
}
##############################
# Start FaultDetectorFactory 1
print "\nTEST: Starting FaultDetectorFactory at $location1 " . $DET1->CommandLine . "\n" if ($verbose);
$DET1->Spawn ();
print "TEST: waiting for FaultDetector's IOR\n" if ($verbose);
if (PerlACE::waitforfile_timed ($detector1_ior, 5) == -1) {
print STDERR "TEST ERROR: cannot find file <$detector1_ior>\n";
$RM->Kill (); $RM->TimedWait (1);
$NOT->Kill (); $NOT->TimedWait (1);
$DET1->Kill (); $DET1->TimedWait (1);
exit 1;
}
##############################
# Start FaultDetectorFactory 2
print "\nTEST: Starting FaultDetectorFactory at $location2 " . $DET2->CommandLine . "\n" if ($verbose);
$DET2->Spawn ();
print "TEST: waiting for FaultDetector's IOR\n" if ($verbose);
if (PerlACE::waitforfile_timed ($detector2_ior, 5) == -1) {
print STDERR "TEST ERROR: cannot find file <$detector2_ior>\n";
$RM->Kill (); $RM->TimedWait (1);
$NOT->Kill (); $NOT->TimedWait (1);
$DET1->Kill (); $DET1->TimedWait (1);
$DET2->Kill (); $DET2->TimedWait (1);
exit 1;
}
#################
# Start Factories
print "\nTEST: Starting replica factory at $location1 " . $FAC1->CommandLine . "\n" if ($verbose);
$FAC1->Spawn ();
print "TEST: waiting for factory 1's IOR\n" if ($verbose);
if (PerlACE::waitforfile_timed ($factory1_ior, 5) == -1) {
print STDERR "TEST ERROR: cannot find file <$factory1_ior>\n";
$RM->Kill (); $RM->TimedWait (1);
$NOT->Kill (); $NOT->TimedWait (1);
$DET1->Kill (); $DET1->TimedWait (1);
$DET2->Kill (); $DET2->TimedWait (1);
$FAC1->Kill (); $FAC1->TimedWait (1);
exit 1;
}
print "\nTEST: Starting replica factory at $location2 " . $FAC2->CommandLine . "\n" if ($verbose);
$FAC2->Spawn ();
print "TEST: waiting for factory 2's IOR\n" if ($verbose);
if (PerlACE::waitforfile_timed ($factory2_ior, 5) == -1) {
print STDERR "TEST ERROR: cannot find file <$factory2_ior>\n";
$RM->Kill (); $RM->TimedWait (1);
$NOT->Kill (); $NOT->TimedWait (1);
$DET1->Kill (); $DET1->TimedWait (1);
$DET2->Kill (); $DET2->TimedWait (1);
$FAC1->Kill (); $FAC1->TimedWait (1);
$FAC2->Kill (); $FAC2->TimedWait (1);
exit 1;
}
print "\nTEST: Starting replica factory at $location3 " . $FAC3->CommandLine . "\n" if ($verbose);
$FAC3->Spawn ();
print "TEST: waiting for factory 3's IOR\n" if ($verbose);
if (PerlACE::waitforfile_timed ($factory3_ior, 5) == -1) {
print STDERR "TEST ERROR: cannot find file <$factory3_ior>\n";
$RM->Kill (); $RM->TimedWait (1);
$NOT->Kill (); $NOT->TimedWait (1);
$DET1->Kill (); $DET1->TimedWait (1);
$DET2->Kill (); $DET2->TimedWait (1);
$FAC1->Kill (); $FAC1->TimedWait (1);
$FAC2->Kill (); $FAC2->TimedWait (1);
$FAC3->Kill (); $FAC3->TimedWait (1);
exit 1;
}
######################
# Create object groups
print "\nTEST: Starting object group creator " . $OGC->CommandLine . "\n" if ($verbose);
$OGC->Spawn ();
print "\nTEST: wait for object group creator.\n" if ($verbose);
$config = $OGC->WaitKill (30);
if ($config != 0) {
print STDERR "TEST ERROR: Object Group Creator returned $config\n";
$RM->Kill (); $RM->TimedWait (1);
$NOT->Kill (); $NOT->TimedWait (1);
$DET1->Kill (); $DET1->TimedWait (1);
$DET2->Kill (); $DET2->TimedWait (1);
$FAC1->Kill (); $FAC1->TimedWait (1);
$FAC2->Kill (); $FAC2->TimedWait (1);
$FAC3->Kill (); $FAC3->TimedWait (1);
exit 1;
}
#############
# Run clients
print "\nTEST: Starting client using first group of hobbits " . $CL1->CommandLine . "\n" if ($verbose);
$client = $CL1->SpawnWaitKill (60);
if ($client != 0) {
print STDERR "TEST ERROR: client returned $client\n";
$status = 1;
}
print "\nTEST: Starting client using group of elves " . $CL2->CommandLine . "\n" if ($verbose);
$client2 = $CL2->SpawnWaitKill (60);
if ($client2 != 0) {
print STDERR "TEST ERROR: client returned $client2\n";
$status = 1;
}
print "\nTEST: Starting client using second group of hobbits " . $CL3->CommandLine . "\n" if ($verbose);
$client3 = $CL3->SpawnWaitKill (60);
if ($client3 != 0) {
print STDERR "TEST ERROR: client returned $client3\n";
$status = 1;
}
######################
# Clean house and exit
print "\nTEST: wait for factory 1.\n" if ($verbose);
$factory1 = $FAC1->WaitKill (30);
if ($factory1 != 0) {
print STDERR "TEST ERROR: replica returned $factory 1\n";
$status = 1;
}
print "\nTEST: wait for factory 2.\n" if ($verbose);
$factory2 = $FAC2->WaitKill (30);
if ($factory2 != 0) {
print STDERR "TEST ERROR: factory 2 returned $factory2\n";
$status = 1;
}
print "\nTEST: wait for factory 3.\n" if ($verbose);
$factory3 = $FAC3->WaitKill (30);
if ($factory3 != 0) {
print STDERR "TEST ERROR: factory 3 returned $factory3\n";
$status = 1;
}
print "\nTEST: wait for FaultDetectorFactory 1.\n" if ($verbose);
$detector1 = $DET1->WaitKill (30);
if ($detector1 != 0) {
print STDERR "TEST ERROR: FaultDetectorFactory returned $detector1\n";
$status = 1;
}
print "\nTEST: wait for FaultDetectorFactory 2.\n" if ($verbose);
$detector2 = $DET2->WaitKill (30);
if ($detector2 != 0) {
print STDERR "TEST ERROR: FaultDetectorFactory returned $detector2\n";
$status = 1;
}
print "\nTEST: shutting down the replication manager.\n" if ($verbose);
$controller = $RMC->SpawnWaitKill (300);
if ($controller != 0) {
print STDERR "TEST ERROR: replication manager controller returned $controller\n";
$status = 1;
}
print "\nTEST: wait for ReplicationManager.\n" if ($verbose);
#$RM->Kill ();
$repmgr = $RM->WaitKill (30);
if ($repmgr != 0) {
print STDERR "TEST ERROR: ReplicationManager returned $repmgr\n";
$status = 1;
}
print "\nTEST: wait for FaultNotifier.\n" if ($verbose);
$notifier = $NOT->WaitKill (30);
if ($notifier != 0) {
print STDERR "TEST ERROR: FaultNotifier returned $notifier\n";
$status = 1;
}
if ($status == 0 && 0) {
print "\nTEST: releasing scratch files.\n" if ($verbose);
unlink $rm_ior;
unlink $detector1_ior;
unlink $detector2_ior;
unlink $notifier_ior;
unlink $factory1_ior;
unlink $factory2_ior;
unlink $factory3_ior;
unlink $replica1_ior;
unlink $replica2_ior;
unlink $replica3_ior;
unlink $replica4_ior;
unlink $replica5_ior;
unlink $replica6_ior;
unlink $replica1_iogr;
unlink $replica2_iogr;
unlink $client_data;
}
exit $status;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -