You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.4 KiB
44 lines
1.4 KiB
5 years ago
|
import time
|
||
|
from panda_jungle import PandaJungle # pylint: disable=import-error
|
||
|
from .helpers import panda_jungle, reset_pandas, test_all_pandas, test_all_gen2_pandas, panda_connect_and_init
|
||
|
|
||
|
# Reset the pandas before running tests
|
||
|
def aaaa_reset_before_tests():
|
||
|
reset_pandas()
|
||
|
|
||
|
@test_all_pandas
|
||
|
@panda_connect_and_init
|
||
|
def test_ignition(p):
|
||
|
try:
|
||
|
# Set harness orientation to #2, since the ignition line is on the wrong SBU bus :/
|
||
|
panda_jungle.set_harness_orientation(PandaJungle.HARNESS_ORIENTATION_2)
|
||
|
reset_pandas()
|
||
|
p.reconnect()
|
||
|
panda_jungle.set_ignition(False)
|
||
|
time.sleep(2)
|
||
|
assert p.health()['ignition_line'] == False
|
||
|
panda_jungle.set_ignition(True)
|
||
|
time.sleep(2)
|
||
|
assert p.health()['ignition_line'] == True
|
||
|
finally:
|
||
|
panda_jungle.set_harness_orientation(PandaJungle.HARNESS_ORIENTATION_1)
|
||
|
|
||
|
@test_all_gen2_pandas
|
||
|
@panda_connect_and_init
|
||
|
def test_orientation_detection(p):
|
||
|
seen_orientations = []
|
||
|
for i in range(3):
|
||
|
panda_jungle.set_harness_orientation(i)
|
||
|
reset_pandas()
|
||
|
p.reconnect()
|
||
|
detected_harness_orientation = p.health()['car_harness_status']
|
||
|
if (i == 0 and detected_harness_orientation != 0) or detected_harness_orientation in seen_orientations:
|
||
|
assert False
|
||
|
seen_orientations.append(detected_harness_orientation)
|
||
|
|
||
|
|
||
|
@test_all_pandas
|
||
|
@panda_connect_and_init
|
||
|
def test_voltage(p):
|
||
|
voltage = p.health()['voltage']
|
||
|
assert ((voltage > 10000) and (voltage < 14000))
|