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.
77 lines
3.3 KiB
77 lines
3.3 KiB
#!/usr/bin/env python3
|
|
import random
|
|
import unittest
|
|
from parameterized import parameterized
|
|
|
|
from cereal import car
|
|
from selfdrive.car.car_helpers import get_interface_attr, interfaces
|
|
from selfdrive.car.fingerprints import FW_VERSIONS
|
|
from selfdrive.car.fw_versions import REQUESTS, match_fw_to_car
|
|
|
|
CarFw = car.CarParams.CarFw
|
|
Ecu = car.CarParams.Ecu
|
|
|
|
ECU_NAME = {v: k for k, v in Ecu.schema.enumerants.items()}
|
|
VERSIONS = get_interface_attr("FW_VERSIONS", ignore_none=True)
|
|
|
|
|
|
class TestFwFingerprint(unittest.TestCase):
|
|
def assertFingerprints(self, candidates, expected):
|
|
candidates = list(candidates)
|
|
self.assertEqual(len(candidates), 1, f"got more than one candidate: {candidates}")
|
|
self.assertEqual(candidates[0], expected)
|
|
|
|
@parameterized.expand([(b, c, e[c]) for b, e in VERSIONS.items() for c in e])
|
|
def test_fw_fingerprint(self, brand, car_model, ecus):
|
|
CP = car.CarParams.new_message()
|
|
for _ in range(200):
|
|
fw = []
|
|
for ecu, fw_versions in ecus.items():
|
|
if not len(fw_versions):
|
|
raise unittest.SkipTest("Car model has no FW versions")
|
|
ecu_name, addr, sub_addr = ecu
|
|
fw.append({"ecu": ecu_name, "fwVersion": random.choice(fw_versions), 'brand': brand,
|
|
"address": addr, "subAddress": 0 if sub_addr is None else sub_addr})
|
|
CP.carFw = fw
|
|
_, matches = match_fw_to_car(CP.carFw)
|
|
self.assertFingerprints(matches, car_model)
|
|
|
|
def test_no_duplicate_fw_versions(self):
|
|
for car_model, ecus in FW_VERSIONS.items():
|
|
with self.subTest(car_model=car_model):
|
|
for ecu, ecu_fw in ecus.items():
|
|
with self.subTest(ecu):
|
|
duplicates = {fw for fw in ecu_fw if ecu_fw.count(fw) > 1}
|
|
self.assertFalse(len(duplicates), f"{car_model}: Duplicate FW versions: Ecu.{ECU_NAME[ecu[0]]}, {duplicates}")
|
|
|
|
def test_blacklisted_ecus(self):
|
|
blacklisted_addrs = (0x7c4, 0x7d0) # includes A/C ecu and an unknown ecu
|
|
for car_model, ecus in FW_VERSIONS.items():
|
|
with self.subTest(car_model=car_model):
|
|
CP = interfaces[car_model][0].get_params(car_model)
|
|
if CP.carName == 'subaru':
|
|
for ecu in ecus.keys():
|
|
self.assertNotIn(ecu[1], blacklisted_addrs, f'{car_model}: Blacklisted ecu: (Ecu.{ECU_NAME[ecu[0]]}, {hex(ecu[1])})')
|
|
|
|
elif CP.carName == "chrysler":
|
|
# Some HD trucks have a combined TCM and ECM
|
|
if CP.carFingerprint.startswith("RAM HD"):
|
|
for ecu in ecus.keys():
|
|
self.assertNotEqual(ecu[0], Ecu.transmission, f"{car_model}: Blacklisted ecu: (Ecu.{ECU_NAME[ecu[0]]}, {hex(ecu[1])})")
|
|
|
|
def test_fw_request_ecu_whitelist(self):
|
|
for brand in set(r.brand for r in REQUESTS):
|
|
with self.subTest(brand=brand):
|
|
whitelisted_ecus = [ecu for r in REQUESTS for ecu in r.whitelist_ecus if r.brand == brand]
|
|
brand_ecus = set([fw[0] for car_fw in VERSIONS[brand].values() for fw in car_fw])
|
|
|
|
# each ecu in brand's fw versions needs to be whitelisted at least once
|
|
ecus_not_whitelisted = set(brand_ecus) - set(whitelisted_ecus)
|
|
|
|
ecu_strings = ", ".join([f'Ecu.{ECU_NAME[ecu]}' for ecu in ecus_not_whitelisted])
|
|
self.assertFalse(len(whitelisted_ecus) and len(ecus_not_whitelisted),
|
|
f'{brand.title()}: FW query whitelist missing ecus: {ecu_strings}')
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|
|
|