本文整理汇总了Python中network.Network.send_text方法的典型用法代码示例。如果您正苦于以下问题:Python Network.send_text方法的具体用法?Python Network.send_text怎么用?Python Network.send_text使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类network.Network
的用法示例。
在下文中一共展示了Network.send_text方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_send_text_correct_call
# 需要导入模块: from network import Network [as 别名]
# 或者: from network.Network import send_text [as 别名]
def test_send_text_correct_call(self, send_message_function_mock):
message = 'a'
for i in range(253):
message += 'm'
Network.send_text(self.socket_mock, message)
send_message_function_mock.assert_has_calls([call(self.socket_mock, 'L' + message),
])
示例2: test_send_text_correct_call_long_message
# 需要导入模块: from network import Network [as 别名]
# 或者: from network.Network import send_text [as 别名]
def test_send_text_correct_call_long_message(self, send_message_function_mock):
text = 'a'
for i in range(253):
text += 'b'
text += 'c'
Network.send_text(self.socket_mock, text)
send_message_function_mock.assert_has_calls([call(self.socket_mock, 'M' + text[:-1]),
call(self.socket_mock, 'Lc'),
])
示例3: connect_and_get_result_from_command
# 需要导入模块: from network import Network [as 别名]
# 或者: from network.Network import send_text [as 别名]
def connect_and_get_result_from_command(command, args=None):
n = Network.connect_ipv4(SERVER_ADDRESS, SERVER_PORT)
json_object = {}
json_object["command"] = command
if args:
json_object["args"] = args
json_string = json.dumps(json_object)
Network.send_text(n, json_string)
response = Network.receive_text(n)
json_response = json.loads(response)
if json_response["status"] == "ok":
if "result" in json_response:
return json_response["result"]
else:
raise CommandException(json_response["message"])