mirror of
https://github.com/infiniteCable2/opendbc.git
synced 2026-06-08 10:54:51 +08:00
13 lines
395 B
Python
13 lines
395 B
Python
import unittest
|
|
|
|
from opendbc.car.subaru.fingerprints import FW_VERSIONS
|
|
|
|
|
|
class TestSubaruFingerprint(unittest.TestCase):
|
|
def test_fw_version_format(self):
|
|
for platform, fws_per_ecu in FW_VERSIONS.items():
|
|
for (ecu, _, _), fws in fws_per_ecu.items():
|
|
fw_size = len(fws[0])
|
|
for fw in fws:
|
|
assert len(fw) == fw_size, f"{platform} {ecu}: {len(fw)} {fw_size}"
|