本文整理汇总了Python中twisted.test.proto_helpers.MemoryReactor.connectTCP方法的典型用法代码示例。如果您正苦于以下问题:Python MemoryReactor.connectTCP方法的具体用法?Python MemoryReactor.connectTCP怎么用?Python MemoryReactor.connectTCP使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类twisted.test.proto_helpers.MemoryReactor
的用法示例。
在下文中一共展示了MemoryReactor.connectTCP方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_connectDestination
# 需要导入模块: from twisted.test.proto_helpers import MemoryReactor [as 别名]
# 或者: from twisted.test.proto_helpers.MemoryReactor import connectTCP [as 别名]
def test_connectDestination(self):
"""
L{MemoryReactor.connectTCP}, L{MemoryReactor.connectSSL}, and
L{MemoryReactor.connectUNIX} will return an L{IConnector} whose
C{getDestination} method returns an L{IAddress} with attributes which
reflect the values passed.
"""
memoryReactor = MemoryReactor()
for connector in [
memoryReactor.connectTCP("test.example.com", 8321, ClientFactory()),
memoryReactor.connectSSL("test.example.com", 8321, ClientFactory(), None),
]:
verifyObject(IConnector, connector)
address = connector.getDestination()
verifyObject(IAddress, address)
self.assertEqual(address.host, "test.example.com")
self.assertEqual(address.port, 8321)
connector = memoryReactor.connectUNIX(b"/fake/path", ClientFactory())
verifyObject(IConnector, connector)
address = connector.getDestination()
verifyObject(IAddress, address)
self.assertEqual(address.name, b"/fake/path")
示例2: connectTCP
# 需要导入模块: from twisted.test.proto_helpers import MemoryReactor [as 别名]
# 或者: from twisted.test.proto_helpers.MemoryReactor import connectTCP [as 别名]
def connectTCP(self, *a, **kw):
MemoryReactor.connectTCP(self, *a, **kw)
connector = MemoryConnector()
self.connectors.append(connector)
return connector