Commit 041b2b2d authored by Robert Schmidt's avatar Robert Schmidt

Remove prematureExit/exitStatus, and implement in task main loop

Use the previous commit on returning success from each task execution
function, and implement handling of errors in the main loop. Add a
script with which this is visible using Custom_Commands.
parent 7b895488
...@@ -84,7 +84,6 @@ def CreateWorkspace(sshSession, sourcePath, ranRepository, ranCommitID, ranTarge ...@@ -84,7 +84,6 @@ def CreateWorkspace(sshSession, sourcePath, ranRepository, ranCommitID, ranTarge
if sshSession.getBefore().count(f'HEAD is now at {ranCommitID[:6]}') != 1: if sshSession.getBefore().count(f'HEAD is now at {ranCommitID[:6]}') != 1:
sshSession.command('git log --oneline | head -n5', '\$', 5) sshSession.command('git log --oneline | head -n5', '\$', 5)
logging.error(f'problems during checkout, is at: {sshSession.getBefore()}') logging.error(f'problems during checkout, is at: {sshSession.getBefore()}')
self.exitStatus = 1
return False return False
else: else:
logging.debug('successful checkout') logging.debug('successful checkout')
...@@ -319,7 +318,6 @@ class Containerize(): ...@@ -319,7 +318,6 @@ class Containerize():
self.yamlPath = ['', '', ''] self.yamlPath = ['', '', '']
self.services = ['', '', ''] self.services = ['', '', '']
self.nb_healthy = [0, 0, 0] self.nb_healthy = [0, 0, 0]
self.exitStatus = 0
self.eNB_logFile = ['', '', ''] self.eNB_logFile = ['', '', '']
self.testCase_id = '' self.testCase_id = ''
...@@ -991,7 +989,6 @@ class Containerize(): ...@@ -991,7 +989,6 @@ class Containerize():
deployStatus,allServices = DeployServices(mySSH,self.services[self.eNB_instance]) deployStatus,allServices = DeployServices(mySSH,self.services[self.eNB_instance])
if deployStatus != 0: if deployStatus != 0:
mySSH.close() mySSH.close()
self.exitStatus = 1
logging.error('Could not deploy') logging.error('Could not deploy')
HTML.CreateHtmlTestRow('Could not deploy', 'KO', CONST.ALL_PROCESSES_OK) HTML.CreateHtmlTestRow('Could not deploy', 'KO', CONST.ALL_PROCESSES_OK)
return False return False
...@@ -1014,7 +1011,6 @@ class Containerize(): ...@@ -1014,7 +1011,6 @@ class Containerize():
imagesInfo += ("Healthy deployment!") imagesInfo += ("Healthy deployment!")
HTML.CreateHtmlTestRowQueue('N/A', 'OK', [(imagesInfo)]) HTML.CreateHtmlTestRowQueue('N/A', 'OK', [(imagesInfo)])
else: else:
self.exitStatus = 1
imagesInfo += ("Unhealthy deployment! -- Check logs for reason!") imagesInfo += ("Unhealthy deployment! -- Check logs for reason!")
HTML.CreateHtmlTestRowQueue('N/A', 'KO', [(imagesInfo)]) HTML.CreateHtmlTestRowQueue('N/A', 'KO', [(imagesInfo)])
return status return status
...@@ -1035,14 +1031,16 @@ class Containerize(): ...@@ -1035,14 +1031,16 @@ class Containerize():
if not copyin_res: if not copyin_res:
HTML.htmleNBFailureMsg='Could not copy logfile(s) to analyze it!' HTML.htmleNBFailureMsg='Could not copy logfile(s) to analyze it!'
HTML.CreateHtmlTestRow('N/A', 'KO', CONST.ENB_PROCESS_NOLOGFILE_TO_ANALYZE) HTML.CreateHtmlTestRow('N/A', 'KO', CONST.ENB_PROCESS_NOLOGFILE_TO_ANALYZE)
self.exitStatus = 1
return False return False
else: else:
log_results = [CheckLogs(self, mySSH, self.yamlPath[0].split('/'), service_name, HTML, RAN) for service_name, _ in services] log_results = [CheckLogs(self, mySSH, self.yamlPath[0].split('/'), service_name, HTML, RAN) for service_name, _ in services]
self.exitStatus = 1 if any(log_results) else 0 success = any(log_results)
logging.info('\u001B[1m Undeploying OAI Object Pass\u001B[0m') if self.exitStatus == 0 else logging.error('\u001B[1m Undeploying OAI Object Failed\u001B[0m')
mySSH.close() mySSH.close()
return self.exitStatus == 0 if success:
logging.info('\u001B[1m Undeploying OAI Object Pass\u001B[0m')
else:
logging.error('\u001B[1m Undeploying OAI Object Failed\u001B[0m')
return success
def CheckAndAddRoute(self, svrName, ipAddr, userName, password): def CheckAndAddRoute(self, svrName, ipAddr, userName, password):
logging.debug('Checking IP routing on ' + svrName) logging.debug('Checking IP routing on ' + svrName)
......
...@@ -446,6 +446,8 @@ class HTMLManagement(): ...@@ -446,6 +446,8 @@ class HTMLManagement():
self.htmlFile.write(f' <td bgcolor = "lightgreen" >{status}</td>\n') self.htmlFile.write(f' <td bgcolor = "lightgreen" >{status}</td>\n')
elif (str(status) == 'KO'): elif (str(status) == 'KO'):
self.htmlFile.write(f' <td bgcolor = "lightcoral" >{status}</td>\n') self.htmlFile.write(f' <td bgcolor = "lightcoral" >{status}</td>\n')
elif str(status) == 'SKIP':
self.htmlFile.write(f' <td bgcolor = "lightgray" >{status}</td>\n')
else: else:
addOrangeBK = True addOrangeBK = True
self.htmlFile.write(f' <td bgcolor = "orange" >{status}</td>\n') self.htmlFile.write(f' <td bgcolor = "orange" >{status}</td>\n')
......
...@@ -900,7 +900,6 @@ class OaiCiTest(): ...@@ -900,7 +900,6 @@ class OaiCiTest():
CONTAINERS.UndeployObject(HTML,RAN) CONTAINERS.UndeployObject(HTML,RAN)
else: else:
CONTAINERS.UndeployGenObject(HTML,RAN, self) CONTAINERS.UndeployGenObject(HTML,RAN, self)
RAN.prematureExit=True
#this function is called only if eNB/gNB fails to start #this function is called only if eNB/gNB fails to start
#RH to be re-factored #RH to be re-factored
...@@ -930,7 +929,6 @@ class OaiCiTest(): ...@@ -930,7 +929,6 @@ class OaiCiTest():
CONTAINERS.UndeployObject(HTML,RAN) CONTAINERS.UndeployObject(HTML,RAN)
else: else:
CONTAINERS.UndeployGenObject(HTML,RAN,self) CONTAINERS.UndeployGenObject(HTML,RAN,self)
RAN.prematureExit=True
def LogCollectBuild(self,RAN): def LogCollectBuild(self,RAN):
# Some pipelines are using "none" IP / Credentials # Some pipelines are using "none" IP / Credentials
......
...@@ -52,7 +52,6 @@ class PhySim: ...@@ -52,7 +52,6 @@ class PhySim:
self.ranCommitID= "" self.ranCommitID= ""
self.ranAllowMerge= "" self.ranAllowMerge= ""
self.ranTargetBranch= "" self.ranTargetBranch= ""
self.exitStatus=0
self.forced_workspace_cleanup=False self.forced_workspace_cleanup=False
#private attributes #private attributes
self.__workSpacePath='' self.__workSpacePath=''
...@@ -111,7 +110,6 @@ class PhySim: ...@@ -111,7 +110,6 @@ class PhySim:
if res_enc is None and res_dec is None: if res_enc is None and res_dec is None:
logging.error(f'no statistics: res_enc {res_enc} res_dec {res_dec}') logging.error(f'no statistics: res_enc {res_enc} res_dec {res_dec}')
HTML.CreateHtmlTestRowQueue(self.runargs, 'KO', ['no statistics']) HTML.CreateHtmlTestRowQueue(self.runargs, 'KO', ['no statistics'])
self.exitStatus = 1
os.system(f'mv {self.__runLogFile} {self.__runLogPath}/.') os.system(f'mv {self.__runLogFile} {self.__runLogPath}/.')
return False return False
...@@ -124,7 +122,6 @@ class PhySim: ...@@ -124,7 +122,6 @@ class PhySim:
error_msg = f'Processing time exceeds a limit of {thrs_KO} us' error_msg = f'Processing time exceeds a limit of {thrs_KO} us'
logging.error(error_msg) logging.error(error_msg)
HTML.CreateHtmlTestRowQueue(self.runargs, 'KO', [info + '\n' + error_msg]) HTML.CreateHtmlTestRowQueue(self.runargs, 'KO', [info + '\n' + error_msg])
self.exitStatus = 1
return success return success
def __CheckResults_NRulsimTest(self, HTML, CONST, testcase_id): def __CheckResults_NRulsimTest(self, HTML, CONST, testcase_id):
...@@ -136,7 +133,6 @@ class PhySim: ...@@ -136,7 +133,6 @@ class PhySim:
error_msg = f'could not recover test result file {filename}' error_msg = f'could not recover test result file {filename}'
logging.error(error_msg) logging.error(error_msg)
HTML.CreateHtmlTestRowQueue("could not recover results", 'KO', [error_msg]) HTML.CreateHtmlTestRowQueue("could not recover results", 'KO', [error_msg])
self.exitStatus = 1
return False return False
PUSCH_OK = False PUSCH_OK = False
...@@ -153,7 +149,6 @@ class PhySim: ...@@ -153,7 +149,6 @@ class PhySim:
error_msg = 'error: no "PUSCH test OK"' error_msg = 'error: no "PUSCH test OK"'
logging.error(error_msg) logging.error(error_msg)
HTML.CreateHtmlTestRowQueue(self.runargs, 'KO', 1, [error_msg]) HTML.CreateHtmlTestRowQueue(self.runargs, 'KO', 1, [error_msg])
self.exitStatus = 1
return PUSCH_OK return PUSCH_OK
def __CheckBuild_PhySim(self, HTML, CONST): def __CheckBuild_PhySim(self, HTML, CONST):
...@@ -169,13 +164,10 @@ class PhySim: ...@@ -169,13 +164,10 @@ class PhySim:
with open(self.__buildLogFile) as f: with open(self.__buildLogFile) as f:
if 'BUILD SHOULD BE SUCCESSFUL' in f.read(): if 'BUILD SHOULD BE SUCCESSFUL' in f.read():
HTML.CreateHtmlTestRow(self.buildargs, 'OK', CONST.ALL_PROCESSES_OK, 'PhySim') HTML.CreateHtmlTestRow(self.buildargs, 'OK', CONST.ALL_PROCESSES_OK, 'PhySim')
self.exitStatus=0
return True return True
logging.error('\u001B[1m Building Physical Simulators Failed\u001B[0m') logging.error('\u001B[1m Building Physical Simulators Failed\u001B[0m')
HTML.CreateHtmlTestRow(self.buildargs, 'KO', CONST.ALL_PROCESSES_OK, 'LDPC') HTML.CreateHtmlTestRow(self.buildargs, 'KO', CONST.ALL_PROCESSES_OK, 'LDPC')
HTML.CreateHtmlTabFooter(False) HTML.CreateHtmlTabFooter(False)
#exitStatus=1 will do a sys.exit in main
self.exitStatus = 1
return False return False
......
...@@ -65,7 +65,7 @@ class PhySim: ...@@ -65,7 +65,7 @@ class PhySim:
#PUBLIC Methods$ #PUBLIC Methods$
#-----------------$ #-----------------$
def Deploy_PhySim(self, HTML, RAN): def Deploy_PhySim(self, HTML):
if self.ranRepository == '' or self.ranBranch == '' or self.ranCommitID == '': if self.ranRepository == '' or self.ranBranch == '' or self.ranCommitID == '':
HELP.GenericHelp(CONST.Version) HELP.GenericHelp(CONST.Version)
sys.exit('Insufficient Parameter') sys.exit('Insufficient Parameter')
...@@ -123,7 +123,6 @@ class PhySim: ...@@ -123,7 +123,6 @@ class PhySim:
logging.error('\u001B[1m OC Cluster Login Failed\u001B[0m') logging.error('\u001B[1m OC Cluster Login Failed\u001B[0m')
mySSH.close() mySSH.close()
HTML.CreateHtmlTestRow('N/A', 'KO', CONST.OC_LOGIN_FAIL) HTML.CreateHtmlTestRow('N/A', 'KO', CONST.OC_LOGIN_FAIL)
RAN.prematureExit = True
return False return False
else: else:
logging.debug('\u001B[1m Login to OC Cluster Successfully\u001B[0m') logging.debug('\u001B[1m Login to OC Cluster Successfully\u001B[0m')
...@@ -133,7 +132,6 @@ class PhySim: ...@@ -133,7 +132,6 @@ class PhySim:
mySSH.command('oc logout', '\$', 30) mySSH.command('oc logout', '\$', 30)
mySSH.close() mySSH.close()
HTML.CreateHtmlTestRow('N/A', 'KO', CONST.OC_PROJECT_FAIL) HTML.CreateHtmlTestRow('N/A', 'KO', CONST.OC_PROJECT_FAIL)
RAN.prematureExit = True
return False return False
else: else:
logging.debug(f'\u001B[1m Now using project {ocProjectName}\u001B[0m') logging.debug(f'\u001B[1m Now using project {ocProjectName}\u001B[0m')
...@@ -154,7 +152,6 @@ class PhySim: ...@@ -154,7 +152,6 @@ class PhySim:
mySSH.command('oc logout', '\$', 30) mySSH.command('oc logout', '\$', 30)
mySSH.close() mySSH.close()
self.AnalyzeLogFile_phySim() self.AnalyzeLogFile_phySim()
RAN.prematureExit = True
return False return False
else: else:
logging.debug('\u001B[1m Deployed PhySim Successfully using helm chart\u001B[0m') logging.debug('\u001B[1m Deployed PhySim Successfully using helm chart\u001B[0m')
...@@ -186,7 +183,6 @@ class PhySim: ...@@ -186,7 +183,6 @@ class PhySim:
mySSH.command('oc logout', '\$', 30) mySSH.command('oc logout', '\$', 30)
HTML.CreateHtmlTestRow('N/A', 'KO', CONST.OC_PHYSIM_DEPLOY_FAIL) HTML.CreateHtmlTestRow('N/A', 'KO', CONST.OC_PHYSIM_DEPLOY_FAIL)
HTML.CreateHtmlTestRowPhySimTestResult(self.testSummary,self.testResult) HTML.CreateHtmlTestRowPhySimTestResult(self.testSummary,self.testResult)
RAN.prematureExit = True
return False return False
# Waiting to complete the running test # Waiting to complete the running test
count = 0 count = 0
...@@ -248,7 +244,6 @@ class PhySim: ...@@ -248,7 +244,6 @@ class PhySim:
HTML.CreateHtmlTestRowPhySimTestResult(self.testSummary,self.testResult) HTML.CreateHtmlTestRowPhySimTestResult(self.testSummary,self.testResult)
logging.info('\u001B[1m Physical Simulator Pass\u001B[0m') logging.info('\u001B[1m Physical Simulator Pass\u001B[0m')
else: else:
RAN.prematureExit = True
if isFinished: if isFinished:
HTML.CreateHtmlTestRow('N/A', 'KO', CONST.ALL_PROCESSES_OK) HTML.CreateHtmlTestRow('N/A', 'KO', CONST.ALL_PROCESSES_OK)
else: else:
......
...@@ -149,22 +149,15 @@ def ExecuteActionWithParam(action): ...@@ -149,22 +149,15 @@ def ExecuteActionWithParam(action):
if proxy_commit is not None: if proxy_commit is not None:
CONTAINERS.proxyCommit = proxy_commit CONTAINERS.proxyCommit = proxy_commit
if action == 'Build_eNB': if action == 'Build_eNB':
RAN.BuildeNB(HTML) success = RAN.BuildeNB(HTML)
elif action == 'Build_Image': elif action == 'Build_Image':
success = CONTAINERS.BuildImage(HTML) success = CONTAINERS.BuildImage(HTML)
if not success:
RAN.prematureExit = True
elif action == 'Build_Proxy': elif action == 'Build_Proxy':
success = CONTAINERS.BuildProxy(HTML) success = CONTAINERS.BuildProxy(HTML)
if not success:
RAN.prematureExit = True
elif action == 'Build_Cluster_Image': elif action == 'Build_Cluster_Image':
if not CLUSTER.BuildClusterImage(HTML): success = CLUSTER.BuildClusterImage(HTML)
RAN.prematureExit = True
elif action == 'Build_Run_Tests': elif action == 'Build_Run_Tests':
success = CONTAINERS.BuildRunTests(HTML) success = CONTAINERS.BuildRunTests(HTML)
if not success:
RAN.prematureExit = True
elif action == 'Initialize_eNB': elif action == 'Initialize_eNB':
RAN.eNB_Trace=test.findtext('eNB_Trace') RAN.eNB_Trace=test.findtext('eNB_Trace')
...@@ -200,7 +193,7 @@ def ExecuteActionWithParam(action): ...@@ -200,7 +193,7 @@ def ExecuteActionWithParam(action):
cmd_prefix = test.findtext('cmd_prefix') cmd_prefix = test.findtext('cmd_prefix')
if cmd_prefix is not None: RAN.cmd_prefix = cmd_prefix if cmd_prefix is not None: RAN.cmd_prefix = cmd_prefix
RAN.InitializeeNB(HTML, EPC) success = RAN.InitializeeNB(HTML, EPC)
elif action == 'Terminate_eNB': elif action == 'Terminate_eNB':
eNB_instance=test.findtext('eNB_instance') eNB_instance=test.findtext('eNB_instance')
...@@ -228,7 +221,7 @@ def ExecuteActionWithParam(action): ...@@ -228,7 +221,7 @@ def ExecuteActionWithParam(action):
RAN.air_interface[RAN.eNB_instance] = 'lte-softmodem' RAN.air_interface[RAN.eNB_instance] = 'lte-softmodem'
else: else:
RAN.air_interface[RAN.eNB_instance] = air_interface.lower() +'-softmodem' RAN.air_interface[RAN.eNB_instance] = air_interface.lower() +'-softmodem'
RAN.TerminateeNB(HTML, EPC) success = RAN.TerminateeNB(HTML, EPC)
elif action == 'Initialize_UE' or action == 'Attach_UE' or action == 'Detach_UE' or action == 'Terminate_UE' or action == 'CheckStatusUE' or action == 'DataEnable_UE' or action == 'DataDisable_UE': elif action == 'Initialize_UE' or action == 'Attach_UE' or action == 'Detach_UE' or action == 'Terminate_UE' or action == 'CheckStatusUE' or action == 'DataEnable_UE' or action == 'DataDisable_UE':
CiTestObj.ue_ids = test.findtext('id').split(' ') CiTestObj.ue_ids = test.findtext('id').split(' ')
...@@ -240,19 +233,19 @@ def ExecuteActionWithParam(action): ...@@ -240,19 +233,19 @@ def ExecuteActionWithParam(action):
else: else:
CiTestObj.nodes = [None] * len(CiTestObj.ue_ids) CiTestObj.nodes = [None] * len(CiTestObj.ue_ids)
if action == 'Initialize_UE': if action == 'Initialize_UE':
CiTestObj.InitializeUE(HTML) success = CiTestObj.InitializeUE(HTML)
elif action == 'Attach_UE': elif action == 'Attach_UE':
CiTestObj.AttachUE(HTML, RAN, EPC, CONTAINERS) success = CiTestObj.AttachUE(HTML, RAN, EPC, CONTAINERS)
elif action == 'Detach_UE': elif action == 'Detach_UE':
CiTestObj.DetachUE(HTML) success = CiTestObj.DetachUE(HTML)
elif action == 'Terminate_UE': elif action == 'Terminate_UE':
CiTestObj.TerminateUE(HTML) success = CiTestObj.TerminateUE(HTML)
elif action == 'CheckStatusUE': elif action == 'CheckStatusUE':
CiTestObj.CheckStatusUE(HTML) success = CiTestObj.CheckStatusUE(HTML)
elif action == 'DataEnable_UE': elif action == 'DataEnable_UE':
CiTestObj.DataEnableUE(HTML) success = CiTestObj.DataEnableUE(HTML)
elif action == 'DataDisable_UE': elif action == 'DataDisable_UE':
CiTestObj.DataDisableUE(HTML) success = CiTestObj.DataDisableUE(HTML)
elif action == 'Ping': elif action == 'Ping':
CiTestObj.ping_args = test.findtext('ping_args') CiTestObj.ping_args = test.findtext('ping_args')
...@@ -266,7 +259,7 @@ def ExecuteActionWithParam(action): ...@@ -266,7 +259,7 @@ def ExecuteActionWithParam(action):
else: else:
CiTestObj.nodes = [None] * len(CiTestObj.ue_ids) CiTestObj.nodes = [None] * len(CiTestObj.ue_ids)
ping_rttavg_threshold = test.findtext('ping_rttavg_threshold') or '' ping_rttavg_threshold = test.findtext('ping_rttavg_threshold') or ''
CiTestObj.Ping(HTML,RAN,EPC,CONTAINERS) success = CiTestObj.Ping(HTML,RAN,EPC,CONTAINERS)
elif action == 'Iperf' or action == 'Iperf2_Unidir': elif action == 'Iperf' or action == 'Iperf2_Unidir':
CiTestObj.iperf_args = test.findtext('iperf_args') CiTestObj.iperf_args = test.findtext('iperf_args')
...@@ -293,13 +286,13 @@ def ExecuteActionWithParam(action): ...@@ -293,13 +286,13 @@ def ExecuteActionWithParam(action):
logging.error('test-case has wrong option ' + CiTestObj.iperf_options) logging.error('test-case has wrong option ' + CiTestObj.iperf_options)
CiTestObj.iperf_options = 'check' CiTestObj.iperf_options = 'check'
if action == 'Iperf': if action == 'Iperf':
CiTestObj.Iperf(HTML,RAN,EPC,CONTAINERS) success = CiTestObj.Iperf(HTML,RAN,EPC,CONTAINERS)
elif action == 'Iperf2_Unidir': elif action == 'Iperf2_Unidir':
CiTestObj.Iperf2_Unidir(HTML,RAN,EPC,CONTAINERS) success = CiTestObj.Iperf2_Unidir(HTML,RAN,EPC,CONTAINERS)
elif action == 'IdleSleep': elif action == 'IdleSleep':
st = test.findtext('idle_sleep_time_in_sec') or "5" st = test.findtext('idle_sleep_time_in_sec') or "5"
cls_oaicitest.IdleSleep(HTML, int(st)) success = cls_oaicitest.IdleSleep(HTML, int(st))
elif action == 'Build_PhySim': elif action == 'Build_PhySim':
ldpc.buildargs = test.findtext('physim_build_args') ldpc.buildargs = test.findtext('physim_build_args')
...@@ -311,54 +304,52 @@ def ExecuteActionWithParam(action): ...@@ -311,54 +304,52 @@ def ExecuteActionWithParam(action):
ldpc.forced_workspace_cleanup=True ldpc.forced_workspace_cleanup=True
else: else:
ldpc.forced_workspace_cleanup=False ldpc.forced_workspace_cleanup=False
HTML=ldpc.Build_PhySim(HTML,CONST) success = ldpc.Build_PhySim(HTML,CONST)
if ldpc.exitStatus==1:
RAN.prematureExit = True
elif action == 'Deploy_Run_PhySim': elif action == 'Deploy_Run_PhySim':
PHYSIM.Deploy_PhySim(HTML, RAN) success = PHYSIM.Deploy_PhySim(HTML)
elif action == 'Initialize_MME': elif action == 'Initialize_MME':
string_field = test.findtext('option') string_field = test.findtext('option')
if (string_field is not None): if (string_field is not None):
EPC.mmeConfFile = string_field EPC.mmeConfFile = string_field
EPC.InitializeMME(HTML) success = EPC.InitializeMME(HTML)
elif action == 'Initialize_HSS' or action == 'Initialize_SPGW': elif action == 'Initialize_HSS' or action == 'Initialize_SPGW':
if action == 'Initialize_HSS': if action == 'Initialize_HSS':
EPC.InitializeHSS(HTML) success = EPC.InitializeHSS(HTML)
elif action == 'Initialize_SPGW': elif action == 'Initialize_SPGW':
EPC.InitializeSPGW(HTML) success = EPC.InitializeSPGW(HTML)
elif action == 'Terminate_HSS' or action == 'Terminate_MME' or action == 'Terminate_SPGW': elif action == 'Terminate_HSS' or action == 'Terminate_MME' or action == 'Terminate_SPGW':
if action == 'Terminate_HSS': if action == 'Terminate_HSS':
EPC.TerminateHSS(HTML) success = EPC.TerminateHSS(HTML)
elif action == 'Terminate_MME': elif action == 'Terminate_MME':
EPC.TerminateMME(HTML) success = EPC.TerminateMME(HTML)
elif action == 'Terminate_SPGW': elif action == 'Terminate_SPGW':
EPC.TerminateSPGW(HTML) success = EPC.TerminateSPGW(HTML)
elif action == 'Deploy_EPC': elif action == 'Deploy_EPC':
string_field = test.findtext('parameters') string_field = test.findtext('parameters')
if (string_field is not None): if (string_field is not None):
EPC.yamlPath = string_field EPC.yamlPath = string_field
EPC.DeployEpc(HTML) success = EPC.DeployEpc(HTML)
elif action == 'Undeploy_EPC': elif action == 'Undeploy_EPC':
EPC.UndeployEpc(HTML) success = EPC.UndeployEpc(HTML)
elif action == 'Initialize_5GCN': elif action == 'Initialize_5GCN':
string_field = test.findtext('args') string_field = test.findtext('args')
if (string_field is not None): if (string_field is not None):
EPC.cfgDeploy = string_field EPC.cfgDeploy = string_field
EPC.cnID = test.findtext('cn_id') EPC.cnID = test.findtext('cn_id')
EPC.Initialize5GCN(HTML) success = EPC.Initialize5GCN(HTML)
elif action == 'Terminate_5GCN': elif action == 'Terminate_5GCN':
string_field = test.findtext('args') string_field = test.findtext('args')
if (string_field is not None): if (string_field is not None):
EPC.cfgUnDeploy = string_field EPC.cfgUnDeploy = string_field
EPC.cnID = test.findtext('cn_id') EPC.cnID = test.findtext('cn_id')
EPC.Terminate5GCN(HTML) success = EPC.Terminate5GCN(HTML)
elif action == 'Deploy_Object' or action == 'Undeploy_Object' or action == "Create_Workspace": elif action == 'Deploy_Object' or action == 'Undeploy_Object' or action == "Create_Workspace":
eNB_instance=test.findtext('eNB_instance') eNB_instance=test.findtext('eNB_instance')
...@@ -384,46 +375,38 @@ def ExecuteActionWithParam(action): ...@@ -384,46 +375,38 @@ def ExecuteActionWithParam(action):
if string_field is not None: if string_field is not None:
CONTAINERS.services[CONTAINERS.eNB_instance] = string_field CONTAINERS.services[CONTAINERS.eNB_instance] = string_field
if action == 'Deploy_Object': if action == 'Deploy_Object':
CONTAINERS.DeployObject(HTML) success = CONTAINERS.DeployObject(HTML)
if CONTAINERS.exitStatus==1: if not success:
CiTestObj.AutoTerminateeNB(HTML,RAN,EPC,CONTAINERS) CiTestObj.AutoTerminateeNB(HTML,RAN,EPC,CONTAINERS)
RAN.prematureExit = True
elif action == 'Undeploy_Object': elif action == 'Undeploy_Object':
CONTAINERS.UndeployObject(HTML, RAN) success = CONTAINERS.UndeployObject(HTML, RAN)
if CONTAINERS.exitStatus == 1: if not success:
CiTestObj.AutoTerminateeNB(HTML,RAN,EPC,CONTAINERS) CiTestObj.AutoTerminateeNB(HTML,RAN,EPC,CONTAINERS)
RAN.prematureExit = True
elif action == 'Create_Workspace': elif action == 'Create_Workspace':
CONTAINERS.Create_Workspace(HTML) success = CONTAINERS.Create_Workspace(HTML)
elif action == 'Run_CUDATest' or action == 'Run_NRulsimTest' or action == 'Run_T2Test': elif action == 'Run_CUDATest' or action == 'Run_NRulsimTest' or action == 'Run_T2Test':
ldpc.runargs = test.findtext('physim_run_args') ldpc.runargs = test.findtext('physim_run_args')
ldpc.runsim = test.findtext('physim_run') ldpc.runsim = test.findtext('physim_run')
ldpc.timethrs = test.findtext('physim_time_threshold') ldpc.timethrs = test.findtext('physim_time_threshold')
if action == 'Run_CUDATest': if action == 'Run_CUDATest':
HTML=ldpc.Run_CUDATest(HTML,CONST,id) success = ldpc.Run_CUDATest(HTML,CONST,id)
elif action == 'Run_NRulsimTest': elif action == 'Run_NRulsimTest':
HTML=ldpc.Run_NRulsimTest(HTML,CONST,id) success = ldpc.Run_NRulsimTest(HTML,CONST,id)
elif action == 'Run_T2Test': elif action == 'Run_T2Test':
HTML=ldpc.Run_T2Test(HTML,CONST,id) success = ldpc.Run_T2Test(HTML,CONST,id)
if ldpc.exitStatus==1:
RAN.prematureExit = True
elif action == 'LicenceAndFormattingCheck': elif action == 'LicenceAndFormattingCheck':
ret = SCA.LicenceAndFormattingCheck(HTML) success = SCA.LicenceAndFormattingCheck(HTML)
if ret != 0:
RAN.prematureExit = True
elif action == 'Cppcheck_Analysis': elif action == 'Cppcheck_Analysis':
SCA.CppCheckAnalysis(HTML) success = SCA.CppCheckAnalysis(HTML)
elif action == 'Push_Local_Registry': elif action == 'Push_Local_Registry':
string_field = test.findtext('registry_svr_id') string_field = test.findtext('registry_svr_id')
if (string_field is not None): if (string_field is not None):
CONTAINERS.registrySvrId = string_field CONTAINERS.registrySvrId = string_field
success = CONTAINERS.Push_Image_to_Local_Registry(HTML) success = CONTAINERS.Push_Image_to_Local_Registry(HTML)
if not success:
RAN.prematureExit = True
elif action == 'Pull_Local_Registry': elif action == 'Pull_Local_Registry':
string_field = test.findtext('test_svr_id') string_field = test.findtext('test_svr_id')
...@@ -434,22 +417,18 @@ def ExecuteActionWithParam(action): ...@@ -434,22 +417,18 @@ def ExecuteActionWithParam(action):
if (string_field is not None): if (string_field is not None):
CONTAINERS.imageToPull = string_field.split() CONTAINERS.imageToPull = string_field.split()
success = CONTAINERS.Pull_Image_from_Local_Registry(HTML) success = CONTAINERS.Pull_Image_from_Local_Registry(HTML)
if not success:
RAN.prematureExit = True
elif action == 'Clean_Test_Server_Images': elif action == 'Clean_Test_Server_Images':
string_field = test.findtext('test_svr_id') string_field = test.findtext('test_svr_id')
if (string_field is not None): if (string_field is not None):
CONTAINERS.testSvrId = string_field CONTAINERS.testSvrId = string_field
success = CONTAINERS.Clean_Test_Server_Images(HTML) success = CONTAINERS.Clean_Test_Server_Images(HTML)
if not success:
RAN.prematureExit = True
elif action == 'Custom_Command': elif action == 'Custom_Command':
node = test.findtext('node') node = test.findtext('node')
command = test.findtext('command') command = test.findtext('command')
command_fail = test.findtext('command_fail') in ['True', 'true', 'Yes', 'yes'] command_fail = test.findtext('command_fail') in ['True', 'true', 'Yes', 'yes']
cls_oaicitest.Custom_Command(HTML, node, command, command_fail) success = cls_oaicitest.Custom_Command(HTML, node, command, command_fail)
elif action == 'Pull_Cluster_Image': elif action == 'Pull_Cluster_Image':
string_field = test.findtext('images_to_pull') string_field = test.findtext('images_to_pull')
...@@ -458,12 +437,13 @@ def ExecuteActionWithParam(action): ...@@ -458,12 +437,13 @@ def ExecuteActionWithParam(action):
string_field = test.findtext('test_svr_id') string_field = test.findtext('test_svr_id')
if (string_field is not None): if (string_field is not None):
CLUSTER.testSvrId = string_field CLUSTER.testSvrId = string_field
if not CLUSTER.PullClusterImage(HTML,RAN): success = CLUSTER.PullClusterImage(HTML, RAN)
RAN.prematureExit = True
else: else:
logging.warning(f"unknown action {action}, skip step") logging.warning(f"unknown action {action}, skip step")
success = True # by default, we skip the step and print a warning
return success
#check if given test is in list #check if given test is in list
#it is in list if one of the strings in 'list' is at the beginning of 'test' #it is in list if one of the strings in 'list' is at the beginning of 'test'
...@@ -738,13 +718,11 @@ elif re.match('^TesteNB$', mode, re.IGNORECASE) or re.match('^TestUE$', mode, re ...@@ -738,13 +718,11 @@ elif re.match('^TesteNB$', mode, re.IGNORECASE) or re.match('^TestUE$', mode, re
if CONTAINERS.eNB1IPAddress == '172.21.16.137': if CONTAINERS.eNB1IPAddress == '172.21.16.137':
CONTAINERS.CheckAndAddRoute('nepes', CONTAINERS.eNB1IPAddress, CONTAINERS.eNB1UserName, CONTAINERS.eNB1Password) CONTAINERS.CheckAndAddRoute('nepes', CONTAINERS.eNB1IPAddress, CONTAINERS.eNB1UserName, CONTAINERS.eNB1Password)
RAN.prematureExit=False task_set_succeeded = True
HTML.startTime=int(round(time.time() * 1000)) HTML.startTime=int(round(time.time() * 1000))
for test_case_id in todo_tests: for test_case_id in todo_tests:
for test in all_tests: for test in all_tests:
if RAN.prematureExit:
break
id = test.get('id') id = test.get('id')
if test_case_id != id: if test_case_id != id:
continue continue
...@@ -752,23 +730,31 @@ elif re.match('^TesteNB$', mode, re.IGNORECASE) or re.match('^TestUE$', mode, re ...@@ -752,23 +730,31 @@ elif re.match('^TesteNB$', mode, re.IGNORECASE) or re.match('^TestUE$', mode, re
HTML.testCase_id=CiTestObj.testCase_id HTML.testCase_id=CiTestObj.testCase_id
EPC.testCase_id=CiTestObj.testCase_id EPC.testCase_id=CiTestObj.testCase_id
CiTestObj.desc = test.findtext('desc') CiTestObj.desc = test.findtext('desc')
always_exec = test.findtext('always_exec') in ['True', 'true', 'Yes', 'yes']
HTML.desc=CiTestObj.desc HTML.desc=CiTestObj.desc
action = test.findtext('class') action = test.findtext('class')
if (CheckClassValidity(xml_class_list, action, id) == False): if (CheckClassValidity(xml_class_list, action, id) == False):
continue continue
CiTestObj.ShowTestID() CiTestObj.ShowTestID()
if not task_set_succeeded and not always_exec:
msg = f"skipping test due to prior error"
logging.warning(msg)
HTML.CreateHtmlTestRowQueue(msg, "SKIP", [])
break
try: try:
ExecuteActionWithParam(action) test_succeeded = ExecuteActionWithParam(action)
if RAN.prematureExit: if not test_succeeded:
logging.error(f"test ID {test_case_id} action {action} failed ({test_succeeded}), skipping next tests")
task_set_succeeded = False
CiTestObj.AutoTerminateeNB(HTML,RAN,EPC,CONTAINERS) CiTestObj.AutoTerminateeNB(HTML,RAN,EPC,CONTAINERS)
except Exception as e: except Exception as e:
s = traceback.format_exc() s = traceback.format_exc()
logging.error(f'while running CI, an exception occurred:\n{s}') logging.error(f'while running CI, an exception occurred:\n{s}')
HTML.CreateHtmlTestRowQueue("N/A", 'KO', [f"CI test code encountered an exception:\n{s}"]) HTML.CreateHtmlTestRowQueue("N/A", 'KO', [f"CI test code encountered an exception:\n{s}"])
RAN.prematureExit = True task_set_succeeded = False
break break
if RAN.prematureExit: if not task_set_succeeded:
logging.error('\u001B[1;37;41mScenario failed\u001B[0m') logging.error('\u001B[1;37;41mScenario failed\u001B[0m')
HTML.CreateHtmlTabFooter(False) HTML.CreateHtmlTabFooter(False)
sys.exit('Failed Scenario') sys.exit('Failed Scenario')
......
...@@ -55,7 +55,6 @@ class RANManagement(): ...@@ -55,7 +55,6 @@ class RANManagement():
def __init__(self): def __init__(self):
self.prematureExit = False
self.ranRepository = '' self.ranRepository = ''
self.ranBranch = '' self.ranBranch = ''
self.ranAllowMerge = False self.ranAllowMerge = False
...@@ -1269,7 +1268,6 @@ class RANManagement(): ...@@ -1269,7 +1268,6 @@ class RANManagement():
rruMsg = 'Slave RRU DID NOT receive the RRU_frame_resynch command from RAU' rruMsg = 'Slave RRU DID NOT receive the RRU_frame_resynch command from RAU'
logging.debug('\u001B[1;37;41m ' + rruMsg + ' \u001B[0m') logging.debug('\u001B[1;37;41m ' + rruMsg + ' \u001B[0m')
htmleNBFailureMsg += rruMsg + '\n' htmleNBFailureMsg += rruMsg + '\n'
self.prematureExit = True
global_status = CONST.ENB_PROCESS_SLAVE_RRU_NOT_SYNCED global_status = CONST.ENB_PROCESS_SLAVE_RRU_NOT_SYNCED
if foundSegFault: if foundSegFault:
logging.debug('\u001B[1;37;41m ' + nodeB_prefix + 'NB ended with a Segmentation Fault! \u001B[0m') logging.debug('\u001B[1;37;41m ' + nodeB_prefix + 'NB ended with a Segmentation Fault! \u001B[0m')
......
...@@ -27,6 +27,9 @@ ...@@ -27,6 +27,9 @@
<htmlTabIcon>wrench</htmlTabIcon> <htmlTabIcon>wrench</htmlTabIcon>
<TestCaseRequestedList> <TestCaseRequestedList>
000001 000001
000002
000003
000004
</TestCaseRequestedList> </TestCaseRequestedList>
<TestCaseExclusionList></TestCaseExclusionList> <TestCaseExclusionList></TestCaseExclusionList>
...@@ -37,4 +40,29 @@ ...@@ -37,4 +40,29 @@
<command>true</command> <command>true</command>
<command_fail>yes</command_fail> <command_fail>yes</command_fail>
</testCase> </testCase>
<testCase id="000002">
<class>Custom_Command</class>
<desc>This should fail</desc>
<node>localhost</node>
<command>false</command>
<command_fail>yes</command_fail>
</testCase>
<testCase id="000003">
<class>Custom_Command</class>
<desc>This should be skipped</desc>
<node>localhost</node>
<command>true</command>
<command_fail>yes</command_fail>
</testCase>
<testCase id="000004">
<class>Custom_Command</class>
<desc>This should be executed because marked so</desc>
<always_exec>true</always_exec>
<node>localhost</node>
<command>true</command>
<command_fail>yes</command_fail>
</testCase>
</testCaseList> </testCaseList>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment