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
|
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#
import os, sys, traceback, time
import Ice, Test
def test(b):
if not b:
raise RuntimeError('test assertion failed')
class TestI(Test.TestIntf):
def transient(self, current=None):
communicator = current.adapter.getCommunicator()
adapter = communicator.createObjectAdapterWithEndpoints("TransientTestAdapter", "default")
adapter.activate()
adapter.destroy()
def deactivate(self, current=None):
current.adapter.deactivate()
time.sleep(0.1)
class RouterI(Ice.Router):
def __init__(self):
self._nextPort = 23456;
def getClientProxy(self, c):
return (None, False)
def getServerProxy(self, c):
port = self._nextPort
self._nextPort += 1
return c.adapter.getCommunicator().stringToProxy("dummy:tcp -h localhost -p {0} -t 30000".format(port))
def addProxies(self, proxies, c):
return []
class CookieI(Test.Cookie):
def message(self):
return 'blahblah'
class ServantLocatorI(Ice.ServantLocator):
def __init__(self):
self._deactivated = False
self._router = RouterI()
def __del__(self):
test(self._deactivated)
def locate(self, current):
test(not self._deactivated)
if current.id.name == 'router':
return (self._router, None)
test(current.id.category == '')
test(current.id.name == 'test')
return (TestI(), CookieI())
def finished(self, current, servant, cookie):
test(not self._deactivated)
if current.id.name == 'router':
return
test(isinstance(cookie, Test.Cookie))
test(cookie.message() == 'blahblah')
def deactivate(self, category):
test(not self._deactivated)
self._deactivated = True
|