本文整理汇总了Python中katcp.testutils.DeviceTestServer.until_messages方法的典型用法代码示例。如果您正苦于以下问题:Python DeviceTestServer.until_messages方法的具体用法?Python DeviceTestServer.until_messages怎么用?Python DeviceTestServer.until_messages使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类katcp.testutils.DeviceTestServer
的用法示例。
在下文中一共展示了DeviceTestServer.until_messages方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestDeviceClientIntegrated
# 需要导入模块: from katcp.testutils import DeviceTestServer [as 别名]
# 或者: from katcp.testutils.DeviceTestServer import until_messages [as 别名]
class TestDeviceClientIntegrated(unittest.TestCase, TestUtilMixin):
def setUp(self):
self.server = DeviceTestServer('', 0)
start_thread_with_cleanup(self, self.server, start_timeout=1)
host, port = self.server.bind_address
self.client = katcp.DeviceClient(host, port)
self.client.enable_thread_safety()
start_thread_with_cleanup(self, self.client, start_timeout=1)
self.client.wait_connected(timeout=1)
def test_versions(self):
"""Test that the versions parameter is populated."""
preamble_done = self.client.handle_reply = WaitingMock()
# Do a request and wait for it to be done so that we can be sure we received the
# full connection-header before testing
self.client.request(Message.request('watchdog'))
preamble_done.assert_wait_call_count(1, timeout=1)
versions = self.client.versions
self.assertIn('katcp', ' '.join(versions['katcp-library']))
self.assertIn('device', ' '.join(versions['katcp-device']))
self.assertTrue(' '.join(versions['katcp-protocol']))
def test_request(self):
"""Test request method."""
self.assertTrue(self.client.wait_protocol(1))
self.client.send_request(Message.request("watchdog"))
self.client._server_supports_ids = False
with self.assertRaises(katcp.core.KatcpVersionError):
self.client.send_request(Message.request("watchdog", mid=56))
self.client._server_supports_ids = True
self.client.send_request(Message.request("watchdog", mid=55))
msgs = self.server.until_messages(2).result(timeout=1)
self._assert_msgs_equal(msgs, [
r"?watchdog",
r"?watchdog[55]",
])
def test_send_message(self):
"""Test send_message method."""
self.client.send_message(Message.inform("random-inform"))
msgs = self.server.until_messages(1).result(timeout=1)
self._assert_msgs_equal(msgs, [
r"#random-inform",
])
def test_stop_and_restart(self):
"""Test stopping and then restarting a client."""
self.client.wait_running(timeout=1)
before_threads = threading.enumerate()
self.client.stop(timeout=1)
self.client.join(timeout=1)
# Test that we have fewer threads than before
self.assertLess(len(threading.enumerate()), len(before_threads))
self.assertFalse(self.client._running.isSet())
self.client.start(timeout=1)
self.client.wait_running(timeout=1)
# Now we should have the original number of threads again
self.assertEqual(len(threading.enumerate()), len(before_threads))
def test_is_connected(self):
"""Test is_connected method."""
self.assertTrue(self.client.is_connected())
# Use client.notify_connected to synchronise to the disconnection
disconnected = threading.Event()
self.client.notify_connected = (
lambda connected: disconnected.set() if not connected else None)
self.server.stop(timeout=1.)
# Restart server during cleanup to keep teardown happy
self.addCleanup(self.server.start)
self.server.join(timeout=1.)
# Wait for the client to be disconnected
disconnected.wait(1.5)
self.assertFalse(self.client.is_connected())
def test_wait_connected(self):
"""Test wait_connected method."""
start = time.time()
# Ensure that we are connected at the start of the test
self.assertTrue(self.client.wait_connected(1.0))
# Check that we did not wait more than the timeout.
self.assertTrue(time.time() - start < 1.0)
# Now we will cause the client to disconnect by stopping the server, and then
# checking that wait_connected returns fails, and waits approximately the right
# amount of time
# Use client.notify_connected to synchronise to the disconnection
disconnected = threading.Event()
self.client.notify_connected = (
lambda connected: disconnected.set() if not connected else None)
self.server.stop(timeout=0.1)
self.server.join(timeout=1)
# Restart server during cleanup to keep teardown happy
self.addCleanup(self.server.start)
# Wait for the client to be disconnected
disconnected.wait(1)
# Now check that wait_connected returns false
#.........这里部分代码省略.........