當前位置: 首頁>>代碼示例>>Python>>正文


Python EventSocket._parent_output_empty_cb方法代碼示例

本文整理匯總了Python中eventsocket.EventSocket._parent_output_empty_cb方法的典型用法代碼示例。如果您正苦於以下問題:Python EventSocket._parent_output_empty_cb方法的具體用法?Python EventSocket._parent_output_empty_cb怎麽用?Python EventSocket._parent_output_empty_cb使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在eventsocket.EventSocket的用法示例。


在下文中一共展示了EventSocket._parent_output_empty_cb方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_write_cb_with_no_data

# 需要導入模塊: from eventsocket import EventSocket [as 別名]
# 或者: from eventsocket.EventSocket import _parent_output_empty_cb [as 別名]
  def test_write_cb_with_no_data(self):
    sock = EventSocket()
    sock._sock = mock()
    sock._parent_output_empty_cb = mock()
    sock._debug = True
    sock._logger = mock()
    mock( sock, '_flag_activity' )
    sock._write_buf = deque()

    assert_equals( None, sock._write_cb() )
    assert_equals( sock._error_msg, "error writing socket output buffer" )
開發者ID:agoragames,項目名稱:py-eventsocket,代碼行數:13,代碼來源:evented_socket_test.py

示例2: test_write_cb_when_eagain_raised

# 需要導入模塊: from eventsocket import EventSocket [as 別名]
# 或者: from eventsocket.EventSocket import _parent_output_empty_cb [as 別名]
  def test_write_cb_when_eagain_raised(self):
    sock = EventSocket()
    sock._sock = mock()
    sock._parent_output_empty_cb = mock()  # assert not called
    sock._write_buf = deque(['data1','data2'])

    expect( sock._sock.send ).args( 'data1' ).raises(
      EnvironmentError(errno.EAGAIN,'try again') )
    expect( sock._flag_activity )

    assert_true( sock._write_cb() )
    assert_equals( deque(['data1','data2']), sock._write_buf )
開發者ID:agoragames,項目名稱:py-eventsocket,代碼行數:14,代碼來源:evented_socket_test.py

示例3: test_write_cb_when_not_all_data_sent

# 需要導入模塊: from eventsocket import EventSocket [as 別名]
# 或者: from eventsocket.EventSocket import _parent_output_empty_cb [as 別名]
  def test_write_cb_when_not_all_data_sent(self):
    sock = EventSocket()
    sock._sock = mock()
    sock._parent_output_empty_cb = mock()  # assert not called
    sock._write_buf = deque(['data1','data2'])

    expect( sock._sock.send ).args( 'data1' ).returns( 5 )
    expect( sock._sock.send ).args( 'data2' ).returns( 2 )
    expect( sock._flag_activity )

    assert_true( sock._write_cb() )
    assert_equals( deque(['ta2']), sock._write_buf )
開發者ID:agoragames,項目名稱:py-eventsocket,代碼行數:14,代碼來源:evented_socket_test.py

示例4: test_write_cb_when_other_environment_error_raised

# 需要導入模塊: from eventsocket import EventSocket [as 別名]
# 或者: from eventsocket.EventSocket import _parent_output_empty_cb [as 別名]
  def test_write_cb_when_other_environment_error_raised(self):
    sock = EventSocket()
    sock._sock = mock()
    sock._peername = 'peer'
    sock._logger = mock()
    sock._debug = True
    sock._parent_output_empty_cb = mock()  # assert not called
    sock._write_buf = deque(['data1','data2'])

    expect( sock._sock.send ).args( 'data1' ).raises(
      EnvironmentError(errno.ECONNABORTED,'try again') )

    assert_raises( EnvironmentError, sock._write_cb )
開發者ID:agoragames,項目名稱:py-eventsocket,代碼行數:15,代碼來源:evented_socket_test.py

示例5: test_write_cb_sends_all_data_and_theres_an_output_empty_cb

# 需要導入模塊: from eventsocket import EventSocket [as 別名]
# 或者: from eventsocket.EventSocket import _parent_output_empty_cb [as 別名]
  def test_write_cb_sends_all_data_and_theres_an_output_empty_cb(self):
    sock = EventSocket()
    sock._sock = mock()
    sock._parent_output_empty_cb = mock()
    sock._write_buf = deque(['data1','data2'])

    expect( sock._sock.send ).args( 'data1' ).returns( 5 )
    expect( sock._sock.send ).args( 'data2' ).returns( 5 )
    expect( sock._flag_activity )
    expect( sock._parent_output_empty_cb ).args( sock )

    assert_equals( None, sock._write_cb() )
    assert_equals( 0, len(sock._write_buf) )
開發者ID:agoragames,項目名稱:py-eventsocket,代碼行數:15,代碼來源:evented_socket_test.py

示例6: test_write_cb_when_not_all_data_sent_and_logging

# 需要導入模塊: from eventsocket import EventSocket [as 別名]
# 或者: from eventsocket.EventSocket import _parent_output_empty_cb [as 別名]
  def test_write_cb_when_not_all_data_sent_and_logging(self):
    sock = EventSocket()
    sock._sock = mock()
    sock._peername = 'peer'
    sock._logger = mock()
    sock._debug = True
    sock._parent_output_empty_cb = mock()  # assert not called
    sock._write_buf = deque(['data1','data2'])

    expect( sock._sock.send ).args( 'data1' ).returns( 5 )
    expect( sock._sock.send ).args( 'data2' ).returns( 2 )
    expect( sock._logger.debug ).args( str, 7, 10, 'peer' )
    expect( sock._flag_activity )

    assert_true( sock._write_cb() )
    assert_equals( deque(['ta2']), sock._write_buf )
開發者ID:agoragames,項目名稱:py-eventsocket,代碼行數:18,代碼來源:evented_socket_test.py

示例7: test_write_cb_when_eagain_raised_and_logging

# 需要導入模塊: from eventsocket import EventSocket [as 別名]
# 或者: from eventsocket.EventSocket import _parent_output_empty_cb [as 別名]
  def test_write_cb_when_eagain_raised_and_logging(self):
    sock = EventSocket()
    sock._sock = mock()
    sock._peername = 'peer'
    sock._logger = mock()
    sock._debug = True
    sock._parent_output_empty_cb = mock()  # assert not called
    sock._write_buf = deque(['data1','data2'])

    expect( sock._sock.send ).args( 'data1' ).raises(
      EnvironmentError(errno.EAGAIN,'try again') )
    expect( sock._logger.debug ).args( str, EnvironmentError, 'peer' )
    expect( sock._logger.debug ).args( str, 0, 10, 'peer' )
    expect( sock._flag_activity )

    assert_true( sock._write_cb() )
    assert_equals( deque(['data1','data2']), sock._write_buf )
開發者ID:agoragames,項目名稱:py-eventsocket,代碼行數:19,代碼來源:evented_socket_test.py


注:本文中的eventsocket.EventSocket._parent_output_empty_cb方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。