mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
106 lines
4.4 KiB
Python
106 lines
4.4 KiB
Python
|
from TCAction import TCActionBase
|
||
|
from NativeLog import NativeLog
|
||
|
|
||
|
|
||
|
class UDPSingle(TCActionBase.CommonTCActionBase):
|
||
|
|
||
|
def __init__(self, name, test_env, cmd_set, timeout=30, log_path=TCActionBase.LOG_PATH):
|
||
|
TCActionBase.CommonTCActionBase.__init__(self, name, test_env, cmd_set=cmd_set,
|
||
|
timeout=timeout, log_path=log_path)
|
||
|
# load param from excel
|
||
|
for i in range(1, len(cmd_set)):
|
||
|
if cmd_set[i][0] != "dummy":
|
||
|
cmd_string = "self." + cmd_set[i][0]
|
||
|
exec cmd_string
|
||
|
|
||
|
self.result_cntx = TCActionBase.ResultCheckContext(self, test_env, self.tc_name)
|
||
|
pass
|
||
|
|
||
|
def cleanup(self):
|
||
|
TCActionBase.CommonTCActionBase.cleanup(self)
|
||
|
# turn on logging
|
||
|
self.test_env.uart_ports["AT1"].set_uart_logging_flag(True)
|
||
|
|
||
|
def execute(self):
|
||
|
TCActionBase.TCActionBase.execute(self)
|
||
|
self.result_cntx.start()
|
||
|
|
||
|
# configurable params
|
||
|
try:
|
||
|
at_send_length = self.at_send_length
|
||
|
soc_send_length = self.soc_send_length
|
||
|
test_count = self.test_count
|
||
|
target_ip_str = self.target_ip_str
|
||
|
tx_enable = self.tx_enable
|
||
|
rx_enable = self.rx_enable
|
||
|
enable_log = self.enable_log
|
||
|
except StandardError, e:
|
||
|
NativeLog.add_trace_critical("Error configuration for UDPSingle script, error is %s" % e)
|
||
|
raise StandardError("Error configuration")
|
||
|
# configurable params
|
||
|
|
||
|
# step1, bind one PC UDP port
|
||
|
checker_stings = ["R SOC_COM L OK"]
|
||
|
test_action_string = ["SOC SOC1 BIND <test_udp_port9>"]
|
||
|
fail_string = "Fail, Fail on binding UDP socket"
|
||
|
if self.load_and_exe_one_step(checker_stings, test_action_string, fail_string) is False:
|
||
|
return
|
||
|
|
||
|
# step 2 create UDP link on target
|
||
|
checker_stings = ["R AT1 C CONNECT L OK"]
|
||
|
test_action_strings = ["ATC AT1 CIPSTART \"UDP\" <pc_ip> <test_udp_port9> <test_udp_port1> 1"]
|
||
|
fail_string = "Fail, Fail on create UDP link"
|
||
|
if self.load_and_exe_one_step(checker_stings, test_action_strings, fail_string) is False:
|
||
|
return
|
||
|
|
||
|
# step 3 send recv data
|
||
|
# turn off AT UART logging
|
||
|
if enable_log is False:
|
||
|
self.test_env.uart_ports["AT1"].set_uart_logging_flag(False)
|
||
|
|
||
|
for j in range(0, test_count):
|
||
|
data = "A" * at_send_length
|
||
|
fail_string = "Fail, Fail on send recv data"
|
||
|
|
||
|
# target sendto PC
|
||
|
if tx_enable is True:
|
||
|
checker_stings = ["P AT1 C >"]
|
||
|
test_action_strings = ["ATS AT1 AT+CIPSEND=%d" % at_send_length]
|
||
|
if self.load_and_exe_one_step(checker_stings, test_action_strings,
|
||
|
fail_string, check_time=20) is False:
|
||
|
NativeLog.add_trace_critical("Target fail on send cmd")
|
||
|
NativeLog.add_trace_critical("Test count is %d" % j)
|
||
|
|
||
|
checker_stings = ["P SOC_COM C RECV_LEN=%d P <test_udp_port1>" % at_send_length,
|
||
|
"P AT1 C OK"]
|
||
|
test_action_strings = ["ATSO AT1 %s" % data]
|
||
|
if self.load_and_exe_one_step(checker_stings, test_action_strings,
|
||
|
fail_string, check_time=20) is False:
|
||
|
NativeLog.add_trace_critical("Target sent UDP packet error")
|
||
|
NativeLog.add_trace_critical("Test count is %d" % j)
|
||
|
|
||
|
# PC send to target
|
||
|
if rx_enable is True:
|
||
|
checker_stings = (["P AT1 DL S+%d" % soc_send_length])
|
||
|
test_action_strings = (["SOC SOC1 SENDTO %d <test_udp_port1> %s" % (soc_send_length, target_ip_str)])
|
||
|
|
||
|
if self.load_and_exe_one_step(checker_stings, test_action_strings,
|
||
|
fail_string, check_time=20) is False:
|
||
|
NativeLog.add_trace_critical("PC sent UDP packet error")
|
||
|
NativeLog.add_trace_critical("Test count is %d" % j)
|
||
|
|
||
|
# finally, execute done
|
||
|
self.result_cntx.set_result("Succeed")
|
||
|
|
||
|
def result_check(self, port_name, data):
|
||
|
TCActionBase.CommonTCActionBase.result_check(self, port_name, data)
|
||
|
self.result_cntx.append_data(port_name, data)
|
||
|
|
||
|
|
||
|
def main():
|
||
|
pass
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|
||
|
|