hyundai fuzzy

pull/28641/head
Shane Smiskol 2 years ago
parent 881d3f3633
commit fc3ba3aadf
  1. 8
      selfdrive/car/hyundai/tests/test_hyundai.py

@ -1,4 +1,5 @@
#!/usr/bin/env python3
from hypothesis import given, settings, strategies as st
import unittest
from cereal import car
@ -66,6 +67,13 @@ class TestHyundaiFingerprint(unittest.TestCase):
part = code.split(b"-")[1]
self.assertFalse(part.startswith(b'CW'), "Car has bad part number")
@settings(max_examples=100)
@given(data=st.data())
def test_platform_codes_fuzzy_fw(self, data):
fw_strategy = st.lists(st.binary())
fws = data.draw(fw_strategy)
get_platform_codes(fws)
# Tests for platform codes, part numbers, and FW dates which Hyundai will use to fuzzy
# fingerprint in the absence of full FW matches:
def test_platform_code_ecus_available(self):

Loading…
Cancel
Save