mirror of
https://github.com/infiniteCable2/opendbc.git
synced 2026-06-08 10:54:51 +08:00
20 lines
688 B
Python
20 lines
688 B
Python
import re
|
|
import unittest
|
|
|
|
from opendbc.car.honda.fingerprints import FW_VERSIONS
|
|
from opendbc.car.honda.values import HONDA_BOSCH, HONDA_BOSCH_TJA_CONTROL
|
|
|
|
HONDA_FW_VERSION_RE = br"[A-Z0-9]{5}(-|,)[A-Z0-9]{3}(-|,)[A-Z0-9]{4}(\x00){2}$"
|
|
|
|
|
|
class TestHondaFingerprint(unittest.TestCase):
|
|
def test_fw_version_format(self):
|
|
# Asserts all FW versions follow an expected format
|
|
for fw_by_ecu in FW_VERSIONS.values():
|
|
for fws in fw_by_ecu.values():
|
|
for fw in fws:
|
|
assert re.match(HONDA_FW_VERSION_RE, fw) is not None, fw
|
|
|
|
def test_tja_bosch_only(self):
|
|
assert set(HONDA_BOSCH_TJA_CONTROL).issubset(set(HONDA_BOSCH)), "Nidec car found in TJA control list"
|