当前位置: 首页>>代码示例>>Python>>正文


Python SocketManager.wait_until_ready方法代码示例

本文整理汇总了Python中agentzero.core.SocketManager.wait_until_ready方法的典型用法代码示例。如果您正苦于以下问题:Python SocketManager.wait_until_ready方法的具体用法?Python SocketManager.wait_until_ready怎么用?Python SocketManager.wait_until_ready使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在agentzero.core.SocketManager的用法示例。


在下文中一共展示了SocketManager.wait_until_ready方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_socket_manager_can_poll_asynchronously

# 需要导入模块: from agentzero.core import SocketManager [as 别名]
# 或者: from agentzero.core.SocketManager import wait_until_ready [as 别名]
def test_socket_manager_can_poll_asynchronously():
    ("SocketManager should leverage a non-blocking socket "
     "collection can be used seamlessly in a blocking fashion [TCP SOCKET]")

    # Given a socket manager for a server
    server = SocketManager(zmq, context)
    # And a reply socket listening on a tcp port
    server.ensure_and_bind('reply-server', zmq.REP, 'tcp://0.0.0.0:3458', zmq.POLLIN | zmq.POLLOUT)

    # And a socket manager for a client
    client = SocketManager(zmq, context)

    # And a request client connected to the server
    client.ensure_and_connect('request-client', zmq.REQ, 'tcp://0.0.0.0:3458', zmq.POLLIN | zmq.POLLOUT)

    # And send a request from the client
    requester = client.wait_until_ready('request-client', zmq.POLLOUT, timeout=2)
    requester.send_json({'client': 42})

    # Then I should receive a request from the client
    replier = server.wait_until_ready('reply-server', zmq.POLLIN, timeout=2)
    replier.should_not.be.none
    request = replier.recv_json()

    # And the request should be the one that the client just sent
    request.should.equal({'client': 42})
开发者ID:adamchainz,项目名称:agentzero,代码行数:28,代码来源:test_socket_manager.py

示例2: test_socket_manager_wait_until_ready

# 需要导入模块: from agentzero.core import SocketManager [as 别名]
# 或者: from agentzero.core.SocketManager import wait_until_ready [as 别名]
def test_socket_manager_wait_until_ready(ready, engage, gevent, time):
    ("SocketManager().wait_until_ready() whould engage and poll "
     "continously until the socket becomes available")

    # Background: time.time() is mocked tick for 3 iterations
    time.time.side_effect = range(3)

    # Background: SocketManager().ready() is mocked to return a socket
    # only after the second iteration
    socket = Mock(name='socket-ready-to-go')
    ready.side_effect = [None, socket]

    # Given a zmq mock
    zmq = Mock()

    # And a context
    context = Mock()

    # And a socket manager
    manager = SocketManager(zmq, context)

    # When I call wait_until_ready
    result = manager.wait_until_ready(
        "foobar",
        "some-mechanism",
        timeout=2,
        polling_timeout=42
    )

    # Then it should have returned the socket
    result.should.equal(socket)

    # And it should have engaged twice
    engage.assert_has_calls([
        call(42),
        call(42),
    ])

    # And ready should also have been called twice
    ready.assert_has_calls([
        call('foobar', 'some-mechanism'),
        call('foobar', 'some-mechanism'),
    ])

    # And gevent.sleep should have been called twice
    gevent.sleep.assert_has_calls([
        call(),
        call(),
    ])
开发者ID:adamchainz,项目名称:agentzero,代码行数:51,代码来源:test_socket_manager.py


注:本文中的agentzero.core.SocketManager.wait_until_ready方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。