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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#
import sys, Ice, Test
def test(b):
if not b:
raise RuntimeError('test assertion failed')
def testExceptions(obj):
try:
obj.requestFailedException()
test(False)
except Ice.ObjectNotExistException as ex:
test(ex.id == obj.ice_getIdentity())
test(ex.facet == obj.ice_getFacet())
test(ex.operation == "requestFailedException")
except:
test(False)
try:
obj.unknownUserException()
test(False)
except Ice.UnknownUserException as ex:
test(ex.unknown == "reason")
except:
test(False)
try:
obj.unknownLocalException()
test(False)
except Ice.UnknownLocalException as ex:
test(ex.unknown == "reason")
except:
test(False)
try:
obj.unknownException()
test(False)
except Ice.UnknownException as ex:
test(ex.unknown == "reason")
pass
try:
obj.userException()
test(False)
except Ice.UnknownUserException as ex:
test(ex.unknown.find("::Test::TestIntfUserException") >= 0)
except Ice.OperationNotExistException:
pass
except AttributeError:
pass
except:
test(False)
try:
obj.localException()
test(False)
except Ice.UnknownLocalException as ex:
test(ex.unknown.find("Ice.SocketException") >= 0 or ex.unknown.find("Ice::SocketException") >= 0)
except:
test(False)
try:
obj.pythonException()
test(False)
except Ice.UnknownException as ex:
test(ex.unknown.find("RuntimeError: message") >= 0)
except Ice.OperationNotExistException:
pass
except AttributeError:
pass
except:
test(False)
try:
obj.unknownExceptionWithServantException()
test(False)
except Ice.UnknownException as ex:
test(ex.unknown == "reason")
except:
test(False)
try:
obj.impossibleException(False)
test(False)
except Ice.UnknownUserException:
# Operation doesn't throw, but locate() and finished() throw TestIntfUserException.
pass
except:
test(False)
try:
obj.impossibleException(True)
test(False)
except Ice.UnknownUserException:
# Operation doesn't throw, but locate() and finished() throw TestIntfUserException.
pass
except:
test(False)
try:
obj.intfUserException(False)
test(False)
except Test.TestImpossibleException:
# Operation doesn't throw, but locate() and finished() throw TestImpossibleException.
pass
except:
test(False)
try:
obj.intfUserException(True)
test(False)
except Test.TestImpossibleException:
# Operation throws TestIntfUserException, but locate() and finished() throw TestImpossibleException.
pass
except:
test(False)
def allTests(helper, communicator):
sys.stdout.write("testing stringToProxy... ")
sys.stdout.flush()
base = communicator.stringToProxy("asm:{0}".format(helper.getTestEndpoint()))
test(base)
print("ok")
sys.stdout.write("testing checked cast... ")
sys.stdout.flush()
obj = Test.TestIntfPrx.checkedCast(base)
test(obj)
test(obj == base)
print("ok")
sys.stdout.write("testing ice_ids... ")
sys.stdout.flush()
try:
obj = communicator.stringToProxy("category/locate:{0}".format(helper.getTestEndpoint()))
obj.ice_ids()
test(False)
except Ice.UnknownUserException as ex:
test(ex.unknown == "::Test::TestIntfUserException")
except:
test(False)
try:
obj = communicator.stringToProxy("category/finished:{0}".format(helper.getTestEndpoint()))
obj.ice_ids()
test(False)
except Ice.UnknownUserException as ex:
test(ex.unknown == "::Test::TestIntfUserException")
except:
test(False)
print("ok")
sys.stdout.write("testing servant locator... ")
sys.stdout.flush()
base = communicator.stringToProxy("category/locate:{0}".format(helper.getTestEndpoint()))
obj = Test.TestIntfPrx.checkedCast(base)
try:
Test.TestIntfPrx.checkedCast(
communicator.stringToProxy("category/unknown:{0}".format(helper.getTestEndpoint())))
except Ice.ObjectNotExistException:
pass
print("ok")
sys.stdout.write("testing default servant locator... ")
sys.stdout.flush()
base = communicator.stringToProxy("anothercat/locate:{0}".format(helper.getTestEndpoint()))
obj = Test.TestIntfPrx.checkedCast(base)
base = communicator.stringToProxy("locate:{0}".format(helper.getTestEndpoint()))
obj = Test.TestIntfPrx.checkedCast(base)
try:
Test.TestIntfPrx.checkedCast(
communicator.stringToProxy("anothercat/unknown:{0}".format(helper.getTestEndpoint())))
except Ice.ObjectNotExistException:
pass
try:
Test.TestIntfPrx.checkedCast(communicator.stringToProxy("unknown:{0}".format(helper.getTestEndpoint())))
except Ice.ObjectNotExistException:
pass
print("ok")
sys.stdout.write("testing locate exceptions... ")
sys.stdout.flush()
base = communicator.stringToProxy("category/locate:{0}".format(helper.getTestEndpoint()))
obj = Test.TestIntfPrx.checkedCast(base)
testExceptions(obj)
print("ok")
sys.stdout.write("testing finished exceptions... ")
sys.stdout.flush()
base = communicator.stringToProxy("category/finished:{0}".format(helper.getTestEndpoint()))
obj = Test.TestIntfPrx.checkedCast(base)
testExceptions(obj)
print("ok")
sys.stdout.write("testing servant locator removal... ")
sys.stdout.flush()
base = communicator.stringToProxy("test/activation:{0}".format(helper.getTestEndpoint()))
activation = Test.TestActivationPrx.checkedCast(base)
activation.activateServantLocator(False)
try:
obj.ice_ping()
test(False)
except Ice.ObjectNotExistException:
pass
print("ok")
sys.stdout.write("testing servant locator addition... ")
sys.stdout.flush()
activation.activateServantLocator(True)
try:
obj.ice_ping()
except:
test(False)
print("ok")
sys.stdout.write("testing invalid locate return values ... ")
sys.stdout.flush()
try:
communicator.stringToProxy("invalidReturnValue:{0}".format(helper.getTestEndpoint())).ice_ping()
except Ice.ObjectNotExistException:
pass
try:
communicator.stringToProxy("invalidReturnType:{0}".format(helper.getTestEndpoint())).ice_ping()
except Ice.ObjectNotExistException:
pass
print ("ok")
return obj
|