summaryrefslogtreecommitdiff
path: root/python/test/Ice/operations/ServerAMD.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2017-05-19 13:47:20 -0700
committerMark Spruiell <mes@zeroc.com>2017-05-19 13:47:20 -0700
commitd29d122b1bf3f526fa0b6b2158731f649a26be43 (patch)
treeb6e2b3e85190de5f54c6c096b2d42802a18cbdd7 /python/test/Ice/operations/ServerAMD.py
parentICE-7486 - Android compat test controller (diff)
downloadice-d29d122b1bf3f526fa0b6b2158731f649a26be43.tar.bz2
ice-d29d122b1bf3f526fa0b6b2158731f649a26be43.tar.xz
ice-d29d122b1bf3f526fa0b6b2158731f649a26be43.zip
ICE-7525 - Add Python coroutine test
Diffstat (limited to 'python/test/Ice/operations/ServerAMD.py')
-rwxr-xr-xpython/test/Ice/operations/ServerAMD.py431
1 files changed, 8 insertions, 423 deletions
diff --git a/python/test/Ice/operations/ServerAMD.py b/python/test/Ice/operations/ServerAMD.py
index 43616a7bc17..62edcc362c5 100755
--- a/python/test/Ice/operations/ServerAMD.py
+++ b/python/test/Ice/operations/ServerAMD.py
@@ -10,9 +10,14 @@
import os, sys, traceback, threading, time
-haveConcurrentFuture = sys.version_info.major > 3 or (sys.version_info.major == 3 and sys.version_info.minor >= 5)
-if haveConcurrentFuture:
- import concurrent.futures
+#
+# We want to test coroutines but older versions of Python cannot load a source file that uses the
+# async/await keywords, so we have two versions of MyDerivedClassI.
+#
+if sys.version_info >= (3,5):
+ from TestAMDCoroI import MyDerivedClassI
+else:
+ from TestAMDI import MyDerivedClassI
import Ice
slice_dir = Ice.getSliceDir()
@@ -23,426 +28,6 @@ if not slice_dir:
Ice.loadSlice("'-I" + slice_dir + "' Test.ice")
import Test
-def test(b):
- if not b:
- raise RuntimeError('test assertion failed')
-
-class FutureThread(threading.Thread):
- def __init__(self, f, r):
- threading.Thread.__init__(self)
- self.future = f
- self.result = r
-
- def run(self):
- time.sleep(0.01)
- self.future.set_result(self.result)
-
-class MyDerivedClassI(Test.MyDerivedClass):
- def __init__(self):
- self.threads = []
- self.threadLock = threading.Lock()
- self.lock = threading.Lock()
- self.opByteSOnewayCount = 0
-
- def ice_isA(self, id, current=None):
- test(current.mode == Ice.OperationMode.Nonmutating)
- return Test.MyDerivedClass.ice_isA(self, id, current)
-
- def ice_ping(self, current=None):
- test(current.mode == Ice.OperationMode.Nonmutating)
- Test.MyDerivedClass.ice_ping(self, current)
-
- def ice_ids(self, current=None):
- test(current.mode == Ice.OperationMode.Nonmutating)
- return Test.MyDerivedClass.ice_ids(self, current)
-
- def ice_id(self, current=None):
- test(current.mode == Ice.OperationMode.Nonmutating)
- return Test.MyDerivedClass.ice_id(self, current)
-
- def shutdown(self, current=None):
- with self.threadLock:
- for thread in self.threads:
- thread.join()
- self.threads = []
-
- current.adapter.getCommunicator().shutdown()
-
- def opVoid(self, current=None):
- test(current.mode == Ice.OperationMode.Normal)
-
- f = Ice.Future()
-
- with self.threadLock:
- thread = FutureThread(f, None)
- self.threads.append(thread)
- thread.start()
-
- return f
-
- def opByte(self, p1, p2, current=None):
- # Test the ability to use another Future type
- if haveConcurrentFuture:
- f = concurrent.futures.Future()
- with self.threadLock:
- thread = FutureThread(f, (p1, p1 ^ p2))
- self.threads.append(thread)
- thread.start()
- else:
- f = Ice.Future.completed((p1, p1 ^ p2))
- return f
-
- def opBool(self, p1, p2, current=None):
- return Ice.Future.completed((p2, p1))
-
- def opShortIntLong(self, p1, p2, p3, current=None):
- return Ice.Future.completed((p3, p1, p2, p3))
-
- def opFloatDouble(self, p1, p2, current=None):
- return Ice.Future.completed((p2, p1, p2))
-
- def opString(self, p1, p2, current=None):
- return Ice.Future.completed((p1 + " " + p2, p2 + " " + p1))
-
- def opMyEnum(self, p1, current=None):
- return Ice.Future.completed((Test.MyEnum.enum3, p1))
-
- def opMyClass(self, p1, current=None):
- p2 = p1
- p3 = Test.MyClassPrx.uncheckedCast(current.adapter.createProxy(Ice.stringToIdentity("noSuchIdentity")))
- return Ice.Future.completed((Test.MyClassPrx.uncheckedCast(current.adapter.createProxy(current.id)), p2, p3))
-
- def opStruct(self, p1, p2, current=None):
- p1.s.s = "a new string"
- return Ice.Future.completed((p2, p1))
-
- def opByteS(self, p1, p2, current=None):
- if sys.version_info[0] == 2:
- # By default sequence<byte> maps to a string.
- p3 = map(ord, p1)
- p3.reverse()
- r = map(ord, p1)
- r.extend(map(ord, p2))
- else:
- p3 = bytes(reversed(p1))
- r = p1 + p2
- return Ice.Future.completed((r, p3))
-
- def opBoolS(self, p1, p2, current=None):
- p3 = p1[0:]
- p3.extend(p2)
- r = p1[0:]
- r.reverse();
- return Ice.Future.completed((r, p3))
-
- def opShortIntLongS(self, p1, p2, p3, current=None):
- p4 = p1[0:]
- p5 = p2[0:]
- p5.reverse()
- p6 = p3[0:]
- p6.extend(p3)
- return Ice.Future.completed((p3, p4, p5, p6))
-
- def opFloatDoubleS(self, p1, p2, current=None):
- p3 = p1[0:]
- p4 = p2[0:]
- p4.reverse()
- r = p2[0:]
- r.extend(p1)
- return Ice.Future.completed((r, p3, p4))
-
- def opStringS(self, p1, p2, current=None):
- p3 = p1[0:]
- p3.extend(p2)
- r = p1[0:]
- r.reverse()
- return Ice.Future.completed((r, p3))
-
- def opByteSS(self, p1, p2, current=None):
- p3 = p1[0:]
- p3.reverse()
- r = p1[0:]
- r.extend(p2)
- return Ice.Future.completed((r, p3))
-
- def opBoolSS(self, p1, p2, current=None):
- p3 = p1[0:]
- p3.extend(p2)
- r = p1[0:]
- r.reverse()
- return Ice.Future.completed((r, p3))
-
- def opShortIntLongSS(self, p1, p2, p3, current=None):
- p4 = p1[0:]
- p5 = p2[0:]
- p5.reverse()
- p6 = p3[0:]
- p6.extend(p3)
- return Ice.Future.completed((p3, p4, p5, p6))
-
- def opFloatDoubleSS(self, p1, p2, current=None):
- p3 = p1[0:]
- p4 = p2[0:]
- p4.reverse()
- r = p2[0:]
- r.extend(p2)
- return Ice.Future.completed((r, p3, p4))
-
- def opStringSS(self, p1, p2, current=None):
- p3 = p1[0:]
- p3.extend(p2)
- r = p2[0:]
- r.reverse()
- return Ice.Future.completed((r, p3))
-
- def opStringSSS(self, p1, p2, current=None):
- p3 = p1[0:]
- p3.extend(p2)
- r = p2[0:]
- r.reverse()
- return Ice.Future.completed((r, p3))
-
- def opByteBoolD(self, p1, p2, current=None):
- p3 = p1.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opShortIntD(self, p1, p2, current=None):
- p3 = p1.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opLongFloatD(self, p1, p2, current=None):
- p3 = p1.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opStringStringD(self, p1, p2, current=None):
- p3 = p1.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opStringMyEnumD(self, p1, p2, current=None):
- p3 = p1.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opMyEnumStringD(self, p1, p2, current=None):
- p3 = p1.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opMyStructMyEnumD(self, p1, p2, current=None):
- p3 = p1.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opByteBoolDS(self, p1, p2, current=None):
- p3 = p2[0:]
- p3.extend(p1)
- r = p1[::-1]
- return Ice.Future.completed((r, p3))
-
- def opShortIntDS(self, p1, p2, current=None):
- p3 = p2[0:]
- p3.extend(p1)
- r = p1[::-1]
- return Ice.Future.completed((r, p3))
-
- def opLongFloatDS(self, p1, p2, current=None):
- p3 = p2[0:]
- p3.extend(p1)
- r = p1[::-1]
- return Ice.Future.completed((r, p3))
-
- def opStringStringDS(self, p1, p2, current=None):
- p3 = p2[0:]
- p3.extend(p1)
- r = p1[::-1]
- return Ice.Future.completed((r, p3))
-
- def opStringMyEnumDS(self, p1, p2, current=None):
- p3 = p2[0:]
- p3.extend(p1)
- r = p1[::-1]
- return Ice.Future.completed((r, p3))
-
- def opMyEnumStringDS(self, p1, p2, current=None):
- p3 = p2[0:]
- p3.extend(p1)
- r = p1[::-1]
- return Ice.Future.completed((r, p3))
-
- def opMyStructMyEnumDS(self, p1, p2, current=None):
- p3 = p2[0:]
- p3.extend(p1)
- r = p1[::-1]
- return Ice.Future.completed((r, p3))
-
- def opByteByteSD(self, p1, p2, current=None):
- p3 = p2.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opBoolBoolSD(self, p1, p2, current=None):
- p3 = p2.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opShortShortSD(self, p1, p2, current=None):
- p3 = p2.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opIntIntSD(self, p1, p2, current=None):
- p3 = p2.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opLongLongSD(self, p1, p2, current=None):
- p3 = p2.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opStringFloatSD(self, p1, p2, current=None):
- p3 = p2.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opStringDoubleSD(self, p1, p2, current=None):
- p3 = p2.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opStringStringSD(self, p1, p2, current=None):
- p3 = p2.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opMyEnumMyEnumSD(self, p1, p2, current=None):
- p3 = p2.copy()
- r = p1.copy()
- r.update(p2)
- return Ice.Future.completed((r, p3))
-
- def opIntS(self, s, current=None):
- return Ice.Future.completed([-x for x in s])
-
- def opByteSOneway(self, s, current=None):
- with self.lock:
- self.opByteSOnewayCount += 1
- return Ice.Future.completed(None)
-
- def opByteSOnewayCallCount(self, current=None):
- with self.lock:
- count = self.opByteSOnewayCount
- self.opByteSOnewayCount = 0
- return Ice.Future.completed(count)
-
- def opDoubleMarshaling(self, p1, p2, current=None):
- d = 1278312346.0 / 13.0;
- test(p1 == d)
- for i in p2:
- test(i == d)
- return Ice.Future.completed(None)
-
- def opContext(self, current=None):
- return Ice.Future.completed(current.ctx)
-
- def opIdempotent(self, current=None):
- test(current.mode == Ice.OperationMode.Idempotent)
- return Ice.Future.completed(None)
-
- def opNonmutating(self, current=None):
- test(current.mode == Ice.OperationMode.Nonmutating)
- return Ice.Future.completed(None)
-
- def opDerived(self, current=None):
- return Ice.Future.completed(None)
-
- def opByte1(self, value, current=None):
- return Ice.Future.completed(value)
-
- def opShort1(self, value, current=None):
- return Ice.Future.completed(value)
-
- def opInt1(self, value, current=None):
- return Ice.Future.completed(value)
-
- def opLong1(self, value, current=None):
- return Ice.Future.completed(value)
-
- def opFloat1(self, value, current=None):
- return Ice.Future.completed(value)
-
- def opDouble1(self, value, current=None):
- return Ice.Future.completed(value)
-
- def opString1(self, value, current=None):
- return Ice.Future.completed(value)
-
- def opStringS1(self, value, current=None):
- return Ice.Future.completed(value)
-
- def opByteBoolD1(self, value, current=None):
- return Ice.Future.completed(value)
-
- def opStringS2(self, value, current=None):
- return Ice.Future.completed(value)
-
- def opByteBoolD2(self, value, current=None):
- return Ice.Future.completed(value)
-
- def opMyClass1(self, value, current=None):
- return Ice.Future.completed(value)
-
- def opMyStruct1(self, value, current=None):
- return Ice.Future.completed(value)
-
- def opStringLiterals(self, current=None):
- return Ice.Future.completed([
- Test.s0, Test.s1, Test.s2, Test.s3, Test.s4, Test.s5, Test.s6, Test.s7, Test.s8, Test.s9, Test.s10,
- Test.sw0, Test.sw1, Test.sw2, Test.sw3, Test.sw4, Test.sw5, Test.sw6, Test.sw7, Test.sw8, Test.sw9,
- Test.sw10,
- Test.ss0, Test.ss1, Test.ss2, Test.ss3, Test.ss4, Test.ss5,
- Test.su0, Test.su1, Test.su2])
-
- def opWStringLiterals(self, current=None):
- return self.opStringLiterals(current)
-
- def opMStruct1(self, current):
- return Ice.Future.completed(Test.MyClass.OpMStruct1MarshaledResult(Test.Structure(), current))
-
- def opMStruct2(self, p1, current):
- return Ice.Future.completed(Test.MyClass.OpMStruct2MarshaledResult((p1, p1), current))
-
- def opMSeq1(self, current):
- return Ice.Future.completed(Test.MyClass.OpMSeq1MarshaledResult([], current))
-
- def opMSeq2(self, p1, current):
- return Ice.Future.completed(Test.MyClass.OpMSeq2MarshaledResult((p1, p1), current))
-
- def opMDict1(self, current):
- return Ice.Future.completed(Test.MyClass.OpMDict1MarshaledResult({}, current))
-
- def opMDict2(self, p1, current):
- return Ice.Future.completed(Test.MyClass.OpMDict2MarshaledResult((p1, p1), current))
-
def run(args, communicator):
communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010:udp")
adapter = communicator.createObjectAdapter("TestAdapter")