summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_1334_Regression/run_test.pl
blob: 3d4c39619180aea4ffef03b58bfd0feb15327e08 (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

# $Id$

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::Run_Test;

# The NameService IOR file
#
$nsiorfile = PerlACE::LocalFile("ns.ior");
unlink $nsiorfile;

# The client process
#
$CLIENT     = new PerlACE::Process(PerlACE::LocalFile("client"));

# Fire up the Name Service
#
$NS   = new PerlACE::Process ("../../Naming_Service/Naming_Service", "-o $nsiorfile");
$NS->Spawn ();

if (PerlACE::waitforfile_timed ($nsiorfile, 10) == -1)
{
   print STDERR "ERROR: cannot find Name Service IOR file <$nsiorfile>\n";
   $NS->Kill (); $NS->TimedWait (1);
   exit 1;
}


# Try the client with the name service ior in an environment variable of
# the form <service name>IOR.
# Expect it to succeed.
#
$ENV {'NameServiceIOR'} = "file://$nsiorfile";
$CLIENT->Arguments("");
if ($CLIENT->SpawnWaitKill (30) != 0)
{
   print STDERR "ERROR: Name Service not resolved by environment variable\n";
   $server = $NS->TerminateWaitKill (5);
   if ($server != 0)
   {
       print STDERR "ERROR: Closing Name Service returned $server\n";
       $status = 1;
   }
   unlink $nsiorfile;
   exit 1;
}

# Now try it with a duff ior in the environment variable.
# Expect it to fail.
#
$ENV {'NameServiceIOR'} = "Banana";
$CLIENT->Arguments("");
if ($CLIENT->SpawnWaitKill (30) != 1)
{
   print STDERR "ERROR: Name Service resolved with duff environment\n";
   $server = $NS->TerminateWaitKill (5);
   if ($server != 0)
   {
       print STDERR "ERROR: Closing Name Service returned $server\n";
       $status = 1;
   }
   unlink $nsiorfile;
   exit 1;
}

# Now try with a duff ior in the environment variable but overridden by
# a command line parameter.
# Expect it to succeed.
#
$ENV {'NameServiceIOR'} = "Custard";
$CLIENT->Arguments("-ORBInitRef NameService=file://$nsiorfile");
if ($CLIENT->SpawnWaitKill (30) != 0)
{
   print STDERR "ERROR: Name Service not resolved by command line override\n";
   $server = $NS->TerminateWaitKill (5);
   if ($server != 0)
   {
       print STDERR "ERROR: Closing Name Service returned $server\n";
       $status = 1;
   }
   unlink $nsiorfile;
   exit 1;
}

# Clean up and return
#
$server = $NS->TerminateWaitKill (5);
if ($server != 0)
{
    print STDERR "ERROR: Closing Name Service returned $server\n";
    $status = 1;
}
unlink $nsiorfile;

exit 0;