本文整理汇总了Python中pysandesh.connection_info.ConnectionState.get_process_state_cb方法的典型用法代码示例。如果您正苦于以下问题:Python ConnectionState.get_process_state_cb方法的具体用法?Python ConnectionState.get_process_state_cb怎么用?Python ConnectionState.get_process_state_cb使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pysandesh.connection_info.ConnectionState
的用法示例。
在下文中一共展示了ConnectionState.get_process_state_cb方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_callback
# 需要导入模块: from pysandesh.connection_info import ConnectionState [as 别名]
# 或者: from pysandesh.connection_info.ConnectionState import get_process_state_cb [as 别名]
def test_callback(self):
vcinfos = []
self._update_conn_info("Test1", ConnectionStatus.UP, "Test1 UP", vcinfos)
(pstate, message) = ConnectionState.get_process_state_cb(vcinfos)
self.assertEqual(ProcessState.FUNCTIONAL, pstate)
self.assertEqual("", message)
self._update_conn_info("Test2", ConnectionStatus.DOWN, "Test2 DOWN", vcinfos)
(pstate, message) = ConnectionState.get_process_state_cb(vcinfos)
self.assertEqual(ProcessState.NON_FUNCTIONAL, pstate)
self.assertEqual("Test:Test2[Test2 DOWN] connection down", message)
self._update_conn_info("Test3", ConnectionStatus.DOWN, "Test3 DOWN", vcinfos)
(pstate, message) = ConnectionState.get_process_state_cb(vcinfos)
self.assertEqual(ProcessState.NON_FUNCTIONAL, pstate)
self.assertEqual("Test:Test2[Test2 DOWN], Test:Test3[Test3 DOWN] connection down", message)