-
Notifications
You must be signed in to change notification settings - Fork 9.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP [$500 bounty] test_models: add a test that fuzzes the tx messages #32577
Closed
Closed
Changes from 2 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
380e8b3
cruise engaged check
ff713c4
more tests
c4e67af
Merge branch 'master' of https://github.com/commaai/openpilot into sa…
9fc4cae
assert true + fuzzgenerator
4ac3e27
use controlsd
3881a05
cleans msgs
4d2d225
ranges
842d0d4
car states
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,10 @@ | |
from openpilot.selfdrive.car.card import CarD | ||
from openpilot.selfdrive.car.fingerprints import all_known_cars, MIGRATION | ||
from openpilot.selfdrive.car.car_helpers import FRAME_FINGERPRINT, interfaces | ||
from openpilot.selfdrive.car.honda.values import CAR as HONDA, HondaFlags | ||
from openpilot.selfdrive.car.volkswagen.values import CAR as VK | ||
from openpilot.selfdrive.car.ford.values import CAR as FORD, FordFlags | ||
from openpilot.selfdrive.car.hyundai.values import CAR as HYUNDAI, HyundaiFlags | ||
from openpilot.selfdrive.car.honda.values import HondaFlags | ||
from openpilot.selfdrive.car.tests.routes import non_tested_cars, routes, CarTestRoute | ||
from openpilot.selfdrive.car.values import Platform | ||
from openpilot.selfdrive.test.helpers import read_segment_list | ||
|
@@ -39,6 +42,53 @@ | |
MAX_EXAMPLES = int(os.environ.get("MAX_EXAMPLES", "300")) | ||
CI = os.environ.get("CI", None) is not None | ||
|
||
@st.composite | ||
def car_control_strategy(draw): | ||
actuators = draw(st.builds(car.CarControl.Actuators.new_message, | ||
gas=st.floats(0.0, 1.0), brake=st.floats(0.0, 1.0), | ||
steer=st.floats(-1.0, 1.0), steerOutputCan=st.floats(-1.0, 1.0), | ||
steeringAngleDeg=st.floats(-180.0, 180.0), curvature=st.floats(-1.0, 1.0), | ||
speed=st.floats(0.0, 50.0), accel=st.floats(-10.0, 10.0), | ||
longControlState=st.sampled_from([car.CarControl.Actuators.LongControlState.off, | ||
car.CarControl.Actuators.LongControlState.pid, | ||
car.CarControl.Actuators.LongControlState.stopping, | ||
car.CarControl.Actuators.LongControlState.starting]))) | ||
cruise_control = draw(st.builds(car.CarControl.CruiseControl.new_message, | ||
cancel=st.booleans(), resume=st.booleans(), | ||
override=st.booleans(), speedOverrideDEPRECATED=st.floats(0.0, 1.0), | ||
accelOverrideDEPRECATED=st.floats(0.0, 1.0))) | ||
hud_control = draw(st.builds(car.CarControl.HUDControl.new_message, | ||
speedVisible=st.booleans(), setSpeed=st.floats(0.0, 1.0), | ||
lanesVisible=st.booleans(), leadVisible=st.booleans(), | ||
visualAlert=st.sampled_from([car.CarControl.HUDControl.VisualAlert.none, | ||
car.CarControl.HUDControl.VisualAlert.fcw, | ||
car.CarControl.HUDControl.VisualAlert.steerRequired, | ||
car.CarControl.HUDControl.VisualAlert.brakePressed, | ||
car.CarControl.HUDControl.VisualAlert.wrongGear, | ||
car.CarControl.HUDControl.VisualAlert.seatbeltUnbuckled, | ||
car.CarControl.HUDControl.VisualAlert.speedTooHigh, | ||
car.CarControl.HUDControl.VisualAlert.ldw]), | ||
audibleAlert=st.sampled_from([car.CarControl.HUDControl.AudibleAlert.none, | ||
car.CarControl.HUDControl.AudibleAlert.engage, | ||
car.CarControl.HUDControl.AudibleAlert.disengage, | ||
car.CarControl.HUDControl.AudibleAlert.refuse, | ||
car.CarControl.HUDControl.AudibleAlert.warningSoft, | ||
car.CarControl.HUDControl.AudibleAlert.warningImmediate, | ||
car.CarControl.HUDControl.AudibleAlert.prompt, | ||
car.CarControl.HUDControl.AudibleAlert.promptRepeat, | ||
car.CarControl.HUDControl.AudibleAlert.promptDistracted]), | ||
rightLaneVisible=st.booleans(), leftLaneVisible=st.booleans(), | ||
rightLaneDepart=st.booleans(), leftLaneDepart=st.booleans(), | ||
leadDistanceBars=st.integers(1, 3))) | ||
return car.CarControl.new_message( | ||
enabled=draw(st.booleans()), latActive=draw(st.booleans()), longActive=draw(st.booleans()), | ||
actuators=actuators, actuatorsOutputDEPRECATED=actuators, | ||
leftBlinker=draw(st.booleans()), rightBlinker=draw(st.booleans()), | ||
orientationNED=draw(st.lists(st.floats(-1e6, 1e6), min_size=3, max_size=3)), | ||
angularVelocity=draw(st.lists(st.floats(-1e6, 1e6), min_size=3, max_size=3)), | ||
cruiseControl=cruise_control, hudControl=hud_control) | ||
|
||
|
||
|
||
def get_test_cases() -> list[tuple[str, CarTestRoute | None]]: | ||
# build list of test cases | ||
|
@@ -154,6 +204,9 @@ def get_testing_data(cls): | |
|
||
@classmethod | ||
def setUpClass(cls): | ||
if cls.platform is not None and cls.platform not in VK: | ||
print(f"\nskip test for platform {cls.platform}") | ||
raise unittest.SkipTest | ||
if cls.__name__ == 'TestCarModel' or cls.__name__.endswith('Base'): | ||
raise unittest.SkipTest | ||
|
||
|
@@ -195,6 +248,7 @@ def setUp(self): | |
self.assertEqual(0, set_status, f"failed to set safetyModel {cfg}") | ||
self.safety.init_tests() | ||
|
||
''' | ||
def test_car_params(self): | ||
if self.CP.dashcamOnly: | ||
self.skipTest("no need to check carParams for dashcamOnly") | ||
|
@@ -325,7 +379,7 @@ def test_car_controller(car_control): | |
@settings(max_examples=MAX_EXAMPLES, deadline=None, | ||
phases=(Phase.reuse, Phase.generate, Phase.shrink)) | ||
@given(data=st.data()) | ||
def test_panda_safety_carstate_fuzzy(self, data): | ||
def test_panda_safety_rx_fuzzy(self, data): | ||
""" | ||
For each example, pick a random CAN message on the bus and fuzz its data, | ||
checking for panda state mismatches. | ||
|
@@ -386,7 +440,89 @@ def test_panda_safety_carstate_fuzzy(self, data): | |
if self.CP.carName == "honda": | ||
if self.safety.get_acc_main_on() != prev_panda_acc_main_on: | ||
self.assertEqual(CS.cruiseState.available, self.safety.get_acc_main_on()) | ||
''' | ||
|
||
# Skip stdout/stderr capture with pytest, causes elevated memory usage | ||
@pytest.mark.nocapture | ||
@settings(max_examples=MAX_EXAMPLES, deadline=None, | ||
phases=(Phase.reuse, Phase.generate, Phase.shrink)) | ||
@given(CC=car_control_strategy()) | ||
def test_panda_safety_tx_fuzzy(self, CC): | ||
|
||
now_nanos = DT_CTRL * 1e9 | ||
CI = self.CarInterface(self.CP, self.CarController, self.CarState) | ||
|
||
if self.CP.carName == "honda": | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this test should know as little about the cars/brands as possible |
||
bus_buttons = 0 | ||
if self.CP.flags & HondaFlags.BOSCH_RADARLESS: | ||
bus_buttons = 2 | ||
elif self.CP.flags & HondaFlags.BOSCH: | ||
bus_buttons = 1 | ||
|
||
elif self.CP.carName == "hyundai": | ||
if self.CP.flags & HyundaiFlags.CANFD_HDA2 and not self.CP.openpilotLongitudinalControl: | ||
if self.CP.flags & HyundaiFlags.CANFD_HDA2_ALT_STEERING: | ||
steer_addr = 0x110 | ||
else: | ||
steer_addr = 0x50 | ||
else: | ||
steer_addr = 0x12a | ||
|
||
CS = CI.update(CC, []) | ||
act, sendcan = CI.apply(CC, now_nanos) | ||
now_nanos += DT_CTRL * 1e9 | ||
|
||
original_controls_allowed = self.safety.get_controls_allowed() | ||
|
||
for addr, _, dat, bus in sendcan: | ||
to_send = libpanda_py.make_CANPacket(addr, bus % 4, dat) | ||
tx_ok = self.safety.safety_tx_hook(to_send) | ||
|
||
if self.CP.carName == "honda": | ||
if ((addr == 0xE4 or addr == 0x194) and (CC.latActive and act.steerOutputCan != 0)) \ | ||
or (addr == 0x296 and bus == bus_buttons and CC.cruiseControl.cancel): | ||
self.assertFalse(tx_ok, "issue TX") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same, should not hard code addresses here. should also be a test that asserts true |
||
|
||
elif self.CP.carName == "ford": | ||
if addr == 0x083 and CC.cruiseControl.resume: | ||
self.assertFalse(tx_ok, "issue TX") | ||
|
||
elif self.CP.carName == "gm": | ||
if (addr == 0x2CB and CC.enabled) or addr == 0x180: | ||
self.assertFalse(tx_ok, "issue TX") | ||
|
||
elif self.CP.carName == "toyota": | ||
if bus == 0 and CC.latActive: | ||
if (addr == 0x191 and self.CP.steerControlType == car.CarParams.SteerControlType.angle) \ | ||
or (addr == 0x2E4 and (CC.latActive and act.steerOutputCan != 0)): | ||
self.assertFalse(tx_ok, "issue TX") | ||
|
||
elif self.CP.carName == "hyundai": | ||
if (addr == 0x340 and CC.latActive and act.steerOutputCan != 0) \ | ||
or (addr == 0x1cf and CC.cruiseControl.resume) \ | ||
or (addr == steer_addr and act.steerOutputCan != 0): | ||
self.assertFalse(tx_ok, "issue TX") | ||
|
||
elif self.CP.carName == "tesla": | ||
if addr == 0x488 and CC.latActive: | ||
self.assertFalse(tx_ok, "issue TX") | ||
|
||
elif self.CP.carName == "mazda": | ||
if bus == 0: | ||
if (addr == 0x243 and act.steerOutputCan != 0) \ | ||
or (addr == 0x09d and not CC.cruiseControl.cancel): | ||
self.assertFalse(tx_ok, "issue TX") | ||
|
||
elif self.CP.carName == "subaru": | ||
if (addr == 0x122) and act.steerOutputCan != 0: | ||
self.assertFalse(tx_ok, f"issue TX for car {self.CP.carName} at address {hex(addr)} and bus {bus}") | ||
|
||
elif self.CP.carName == "volkswagen": | ||
print(self.safety.get_controls_allowed()) | ||
if addr == 0x0D2 and act.steerOutputCan != 0: | ||
self.assertFalse(tx_ok, f"issue TX for car {self.CP.carName} at address {hex(addr)} and bus {bus}") | ||
|
||
''' | ||
def test_panda_safety_carstate(self): | ||
""" | ||
Assert that panda safety matches openpilot's carState | ||
|
@@ -473,6 +609,7 @@ def test_panda_safety_carstate(self): | |
def test_route_on_ci_bucket(self): | ||
self.assertTrue(self.test_route_on_bucket, "Route not on CI bucket. " + | ||
"This is fine to fail for WIP car ports, just let us know and we can upload your routes to the CI bucket.") | ||
''' | ||
|
||
|
||
@parameterized_class(('platform', 'test_route'), get_test_cases()) | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you need to have openpilot generate these CAN messages, we want to ensure that panda doesn't block anything openpilot will try to send to start to this test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh ok so it should somehow get those CAN messages from
state_control
in theControl
class from controlsd.py withCarStates
obtained with fuzzed data