summaryrefslogtreecommitdiff
path: root/python/test/Ice/scope/Server.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2018-06-28 15:46:50 +0200
committerJose <jose@zeroc.com>2018-06-28 15:46:50 +0200
commitb3763409f91afc54bf8f014d6e92772d6fc34dcb (patch)
treecdefc610ff161953073337ce0503e505078b4f9a /python/test/Ice/scope/Server.py
parentFixed dispatcher test hang (fixes #123) (diff)
downloadice-b3763409f91afc54bf8f014d6e92772d6fc34dcb.tar.bz2
ice-b3763409f91afc54bf8f014d6e92772d6fc34dcb.tar.xz
ice-b3763409f91afc54bf8f014d6e92772d6fc34dcb.zip
Add support cs:namespace metadata
Add support to map Slice modules to different namespaces using cs:namespace metadata Fixes #122 slice2cs generates invalid namespace qualification
Diffstat (limited to 'python/test/Ice/scope/Server.py')
-rwxr-xr-xpython/test/Ice/scope/Server.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/python/test/Ice/scope/Server.py b/python/test/Ice/scope/Server.py
index 895d26cf0bf..c3a70e62c03 100755
--- a/python/test/Ice/scope/Server.py
+++ b/python/test/Ice/scope/Server.py
@@ -13,6 +13,7 @@ import os, sys, traceback
import Ice
Ice.loadSlice('Test.ice')
import Test
+import Inner
class I1(Test.I):
@@ -87,12 +88,37 @@ class I3(Test.Inner.I):
current.adapter.getCommunicator().shutdown()
+class I4(Inner.Test.Inner2.I):
+
+ def opS(self, s1, current=None):
+ return (s1, s1)
+
+ def opSSeq(self, sseq1, current=None):
+ return (sseq1, sseq1)
+
+ def opSMap(self, smap1, current=None):
+ return (smap1, smap1)
+
+ def opC(self, c1, current=None):
+ return (c1, c1)
+
+ def opCSeq(self, cseq1, current=None):
+ return (cseq1, cseq1)
+
+ def opCMap(self, cmap1, current=None):
+ return (cmap1, cmap1)
+
+ def shutdown(self, current=None):
+ current.adapter.getCommunicator().shutdown()
+
+
def run(args, communicator):
communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010")
adapter = communicator.createObjectAdapter("TestAdapter")
adapter.add(I1(), Ice.stringToIdentity("i1"))
adapter.add(I2(), Ice.stringToIdentity("i2"))
adapter.add(I3(), Ice.stringToIdentity("i3"))
+ adapter.add(I4(), Ice.stringToIdentity("i4"))
adapter.activate()
communicator.waitForShutdown()
return True