summaryrefslogtreecommitdiff
path: root/python/test/Ice/slicing/exceptions/Server.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/test/Ice/slicing/exceptions/Server.py')
-rwxr-xr-xpython/test/Ice/slicing/exceptions/Server.py36
1 files changed, 15 insertions, 21 deletions
diff --git a/python/test/Ice/slicing/exceptions/Server.py b/python/test/Ice/slicing/exceptions/Server.py
index 4ade2ca8d9c..c29a5c86979 100755
--- a/python/test/Ice/slicing/exceptions/Server.py
+++ b/python/test/Ice/slicing/exceptions/Server.py
@@ -8,11 +8,12 @@
#
# **********************************************************************
-import os, sys, traceback
+from TestHelper import TestHelper
+TestHelper.loadSlice("-I. --all ServerPrivate.ice")
import Ice
-Ice.loadSlice('-I. --all ServerPrivate.ice')
import Test
+
class TestI(Test.TestIntf):
def shutdown(self, current=None):
current.adapter.getCommunicator().shutdown()
@@ -155,22 +156,15 @@ class TestI(Test.TestIntf):
p = Test.RelayPrx.uncheckedCast(current.con.createProxy(r.ice_getIdentity()))
p.unknownPreservedAsKnownPreserved()
-def run(args, communicator):
- properties = communicator.getProperties()
- properties.setProperty("Ice.Warn.Dispatch", "0")
- properties.setProperty("TestAdapter.Endpoints", "default -p 12010 -t 10000")
- adapter = communicator.createObjectAdapter("TestAdapter")
- object = TestI()
- adapter.add(object, Ice.stringToIdentity("Test"))
- adapter.activate()
- communicator.waitForShutdown()
- return True
-
-try:
- with Ice.initialize(sys.argv) as communicator:
- status = run(sys.argv, communicator)
-except:
- traceback.print_exc()
- status = False
-
-sys.exit(not status)
+
+class Server(TestHelper):
+ def run(self, args):
+ properties = self.createTestProperties(args)
+ properties.setProperty("Ice.Warn.Dispatch", "0")
+ with self.initialize(properties=properties) as communicator:
+ communicator.getProperties().setProperty("TestAdapter.Endpoints",
+ "{0} -t 10000".format(self.getTestEndpoint()))
+ adapter = communicator.createObjectAdapter("TestAdapter")
+ adapter.add(TestI(), Ice.stringToIdentity("Test"))
+ adapter.activate()
+ communicator.waitForShutdown()