2017-09-20 09:17:51 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-11-01 11:30:42 +00:00
|
|
|
import re
|
|
|
|
import time
|
|
|
|
|
|
|
|
from TCAction import PerformanceTCBase
|
|
|
|
from TCAction import TCActionBase
|
|
|
|
from NativeLog import NativeLog
|
|
|
|
|
2017-09-20 09:17:51 +00:00
|
|
|
|
2016-11-01 11:30:42 +00:00
|
|
|
class UnitTest(PerformanceTCBase.PerformanceTCBase):
|
2017-09-20 09:17:51 +00:00
|
|
|
def __init__(self, test_case, test_env, cmd_set, timeout=30, log_path=TCActionBase.LOG_PATH):
|
|
|
|
PerformanceTCBase.PerformanceTCBase.__init__(self, test_case, test_env, cmd_set=cmd_set,
|
2016-11-01 11:30:42 +00:00
|
|
|
timeout=timeout, log_path=log_path)
|
2017-09-20 09:17:51 +00:00
|
|
|
self.case = cmd_set[1][0]
|
2016-11-02 11:08:55 +00:00
|
|
|
self.test_timeout = 20
|
2017-09-20 09:17:51 +00:00
|
|
|
self.reset_reason = test_case['reset']
|
2016-11-01 11:30:42 +00:00
|
|
|
self.result_cntx = TCActionBase.ResultCheckContext(self, test_env, self.tc_name)
|
|
|
|
|
|
|
|
def send_commands(self):
|
|
|
|
self.flush_data("UT1")
|
|
|
|
try:
|
2017-09-20 09:17:51 +00:00
|
|
|
self.serial_write_line("UT1", "\"" + self.case + "\"")
|
2016-11-02 11:08:55 +00:00
|
|
|
data = ""
|
2017-09-20 09:17:51 +00:00
|
|
|
|
2016-11-02 11:08:55 +00:00
|
|
|
for _ in range(self.timeout):
|
2017-09-20 09:17:51 +00:00
|
|
|
time.sleep(1) # wait for test to run before reading result
|
2016-11-02 11:08:55 +00:00
|
|
|
data += self.serial_read_data("UT1")
|
2017-09-20 09:17:51 +00:00
|
|
|
if re.search('[^0].* Tests 0 F',
|
|
|
|
data): # check that number of tests run != 0 and number of tests failed == 0
|
2016-11-02 12:54:22 +00:00
|
|
|
self.set_result("Succeed")
|
2016-11-02 11:41:33 +00:00
|
|
|
break
|
2016-11-01 11:30:42 +00:00
|
|
|
else:
|
2016-11-02 11:08:55 +00:00
|
|
|
self.set_result("Fail")
|
2016-12-07 05:58:51 +00:00
|
|
|
|
2017-09-20 09:17:51 +00:00
|
|
|
reset_list = self.reset_reason.split(",") if self.reset_reason else ''
|
|
|
|
pattern = re.compile(r"(ets [\w]{3} [\d]{1,2} [\d]{4} [\d]{2}:[\d]{2}:[\d]{2}[^(\)]*\([\w].*?\))"
|
|
|
|
r"|(Guru Meditation Error: Core [\d] panic'ed \([\w].*?\))")
|
|
|
|
reset_exception = pattern.findall(data)
|
|
|
|
if reset_list and len(reset_list) == len(reset_exception):
|
|
|
|
for i, reset in enumerate(reset_list):
|
|
|
|
temp_reset = reset_exception[i]
|
|
|
|
if reset not in "".join(temp_reset):
|
|
|
|
self.set_result("Fail")
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
self.set_result("Succeed")
|
|
|
|
|
|
|
|
except StandardError, e:
|
2016-11-01 11:30:42 +00:00
|
|
|
NativeLog.add_exception_log(e)
|
2016-12-07 05:58:51 +00:00
|
|
|
|
2016-11-01 11:30:42 +00:00
|
|
|
def execute(self):
|
|
|
|
TCActionBase.TCActionBase.execute(self)
|
|
|
|
self.send_commands()
|
2016-12-07 05:58:51 +00:00
|
|
|
|
2017-09-20 09:17:51 +00:00
|
|
|
|
2016-11-01 11:30:42 +00:00
|
|
|
def main():
|
|
|
|
pass
|
|
|
|
|
2017-09-20 09:17:51 +00:00
|
|
|
|
2016-11-01 11:30:42 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
pass
|