autotest: add test for RESET_MODE_SWITCH

This commit is contained in:
Peter Barker 2022-07-14 11:09:08 +10:00 committed by Andrew Tridgell
parent 57d3ebf123
commit 2529c7fc40
2 changed files with 30 additions and 0 deletions

View File

@ -1296,6 +1296,31 @@ class AutoTestPlane(AutoTest):
on_radius_start_heading = None
circle_time_start = 0
def MODE_SWITCH_RESET(self):
'''test the MODE_SWITCH_RESET auxiliary function'''
self.set_parameters({
"RC9_OPTION": 96,
})
self.progress("Using RC to change modes")
self.set_rc(8, 1500)
self.wait_mode('FBWA')
self.progress("Killing RC to engage RC failsafe")
self.set_parameter('SIM_RC_FAIL', 1)
self.wait_mode('RTL')
self.progress("Reinstating RC")
self.set_parameter('SIM_RC_FAIL', 0)
self.progress("Ensuring we don't automatically revert mode")
self.delay_sim_time(2)
self.assert_mode_is('RTL')
self.progress("Ensuring MODE_SWITCH_RESET switch resets to pre-failsafe mode")
self.set_rc(9, 2000)
self.wait_mode('FBWA')
def FenceStatic(self):
'''Test Basic Fence Functionality'''
ex = None
@ -4572,6 +4597,7 @@ class AutoTestPlane(AutoTest):
self.GCSFailsafe,
self.SDCardWPTest,
self.NoArmWithoutMissionItems,
self.MODE_SWITCH_RESET,
])
return ret

View File

@ -7213,6 +7213,10 @@ class AutoTest(ABC):
raise WaitModeTimeout("Did not change mode")
self.progress("Got mode %s" % mode)
def assert_mode_is(self, mode):
if not self.mode_is(mode):
raise NotAchievedException("Expected mode %s" % str(mode))
def wait_gps_sys_status_not_present_or_enabled_and_healthy(self, timeout=30):
self.progress("Waiting for GPS health")
tstart = self.get_sim_time_cached()