pyPLC/mytestsuite.py

58 lines
2.4 KiB
Python

# For testing.
#
# Concept: This module allows to trigger abnormal situations, to test the reaction of the software ("fault insertion testing").
# In the place in the software, where the fault shall be injected, add a condition like
# if (testsuite_faultinjection_is_triggered(TC_MY_TESTCASE_FOR_SOMETHING)):
# DoSomethingStrange()
# In normal software run, this condition is never fulfilled and does not disturb. If the related test case is activated,
# by setting testsuite_testcase_number = TC_MY_TESTCASE_FOR_SOMETHING below, the condition will fire and the fault is injected.
# A number of delay cycles can be configured with testsuite_delayCycles below.
# The list of test cases. Each must have a unique test case ID.
TC_NOTHING_TO_TEST = 0
TC_EVSE_Timeout_during_CableCheck = 1
TC_EVSE_Timeout_during_PreCharge = 2
TC_EVSE_Shutdown_during_PreCharge = 3
TC_EVSE_Shutdown_during_CurrentDemand = 4
TC_EVSE_Malfunction_during_CurrentDemand = 5
TC_EVSE_Timeout_during_CurrentDemand = 6
TC_EVSE_LastTest = 7
# variables
testsuite_testcase_number = 0
testsuite_delayCycles = 0
# Counter variable for delaying the trigger
testsuite_counter = 0
def testsuite_getTcNumber():
return testsuite_testcase_number
def testsuite_faultinjection_is_triggered(context):
global testsuite_counter, testsuite_testcase_number, testsuite_delayCycles
isTestcaseFired = False
if (context==testsuite_testcase_number): # if the call context is matching the intended test case
testsuite_counter += 1 # count the number of matching calls
isTestcaseFired = testsuite_counter>=testsuite_delayCycles # and fire the test case if the intended number is reached
if (isTestcaseFired):
print("[TESTSUITE] Fired test case " + str(context) + " TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT")
return isTestcaseFired
def testsuite_choose_testcase():
global testsuite_counter, testsuite_testcase_number, testsuite_delayCycles
if (testsuite_testcase_number<TC_EVSE_LastTest):
testsuite_testcase_number+=1
print("[TESTSUITE] Setting up test case " + str(testsuite_testcase_number) + " TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT")
testsuite_counter = 0
testsuite_delayCycles = 5
if (testsuite_testcase_number == TC_EVSE_Timeout_during_CableCheck):
testsuite_delayCycles=0 # immediately timeout
if __name__ == "__main__":
print("Testing the mytestsuite")
print("nothing to do")