summaryrefslogtreecommitdiff
path: root/java/config/TestUtil.py
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2006-06-05 15:11:48 +0000
committerMatthew Newhook <matthew@zeroc.com>2006-06-05 15:11:48 +0000
commitc7830493b1a04964c872095e7b924d86c08b2b52 (patch)
tree106dd9f15a637962b24dd870e023f7b3dd236f61 /java/config/TestUtil.py
parentAdd addressFilter to build (diff)
downloadice-c7830493b1a04964c872095e7b924d86c08b2b52.tar.bz2
ice-c7830493b1a04964c872095e7b924d86c08b2b52.tar.xz
ice-c7830493b1a04964c872095e7b924d86c08b2b52.zip
added support for TrustOnly.
Diffstat (limited to 'java/config/TestUtil.py')
-rw-r--r--java/config/TestUtil.py43
1 files changed, 38 insertions, 5 deletions
diff --git a/java/config/TestUtil.py b/java/config/TestUtil.py
index 431b7b402f8..bcab8888793 100644
--- a/java/config/TestUtil.py
+++ b/java/config/TestUtil.py
@@ -21,8 +21,8 @@ protocol = "ssl"
# protocol compression.
#
-#compress = 0
-compress = 1
+compress = 0
+#compress = 1
#
# Set threadPerConnection to 1 in case you want to run the tests in
@@ -46,6 +46,7 @@ host = "127.0.0.1"
#
import sys, os, errno
+from threading import Thread
#
# If we are using SSL as the default protocol, we need to examine
@@ -180,6 +181,29 @@ def closePipe(pipe):
return status
+class ReaderThread(Thread):
+ def __init__(self, pipe, token):
+ self.pipe = pipe
+ self.token = token
+ Thread.__init__(self)
+
+ def run(self):
+
+ try:
+ while 1:
+ line = self.pipe.readline()
+ if not line: break
+ # supress object adapter ready messages.
+ if line[len(line)-7:len(line)] != " ready\n":
+ print self.token + ": " + line,
+ except IOError:
+ pass
+
+ self.status = closePipe(self.pipe)
+
+ def getStatus(self):
+ return self.status
+
for toplevel in [".", "..", "../..", "../../..", "../../../.."]:
toplevel = os.path.normpath(toplevel)
if os.path.exists(os.path.join(toplevel, "config", "TestUtil.py")):
@@ -292,10 +316,13 @@ def clientServerTestWithOptions(additionalServerOptions, additionalClientOptions
clientPipe = os.popen(clientCmd)
print "ok"
+ serverThread = ReaderThread(serverPipe, "Server")
+ serverThread.start()
printOutputFromPipe(clientPipe)
clientStatus = closePipe(clientPipe)
- serverStatus = closePipe(serverPipe)
+ serverThread.join()
+ serverStatus = serverThread.getStatus()
if clientStatus or serverStatus:
killServers()
@@ -323,10 +350,13 @@ def clientServerTestWithClasspath(serverClasspath, clientClasspath):
os.environ["CLASSPATH"] = classpath
print "ok"
+ serverThread = ReaderThread(serverPipe, "Server")
+ serverThread.start()
printOutputFromPipe(clientPipe)
clientStatus = closePipe(clientPipe)
- serverStatus = closePipe(serverPipe)
+ serverThread.join()
+ serverStatus = serverThread.getStatus()
if clientStatus or serverStatus:
killServers()
@@ -355,10 +385,13 @@ def mixedClientServerTestWithOptions(additionalServerOptions, additionalClientOp
clientPipe = os.popen(clientCmd + " 2>&1")
print "ok"
+ serverThread = ReaderThread(serverPipe, "Server")
+ serverThread.start()
printOutputFromPipe(clientPipe)
clientStatus = closePipe(clientPipe)
- serverStatus = closePipe(serverPipe)
+ serverThread.join()
+ serverStatus = serverThread.getStatus()
if clientStatus or serverStatus:
killServers()