mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-08-20 18:03:46 +08:00
14318d2f09
# Conflicts: # .github/labeler.yaml # .github/workflows/auto_pr_review.yaml # .github/workflows/docs.yaml # .github/workflows/release.yaml # .github/workflows/repo-maintenance.yaml # .github/workflows/tests.yaml # .github/workflows/ui_preview.yaml # README.md # SConstruct # conftest.py # docs/CARS.md # msgq_repo # opendbc_repo # openpilot/cereal/messaging/tests/validate_sp_cereal_upstream.py # openpilot/common/api.py # openpilot/common/hardware/hw.py # openpilot/common/version.py # openpilot/selfdrive/assets/fonts/Audiowide-Regular.ttf # openpilot/selfdrive/assets/sounds/prompt_single_high.wav # openpilot/selfdrive/assets/sounds/prompt_single_low.wav # openpilot/selfdrive/car/card.py # openpilot/selfdrive/car/helpers.py # openpilot/selfdrive/car/tests/test_car_interfaces.py # openpilot/selfdrive/car/tests/test_cruise_speed.py # openpilot/selfdrive/controls/lib/desire_helper.py # openpilot/selfdrive/controls/lib/longcontrol.py # openpilot/selfdrive/controls/plannerd.py # openpilot/selfdrive/controls/radard.py # openpilot/selfdrive/controls/tests/test_longcontrol.py # openpilot/selfdrive/modeld/compile_warp.py # openpilot/selfdrive/modeld/modeld.py # openpilot/selfdrive/monitoring/policy.py # openpilot/selfdrive/monitoring/test_monitoring.py # openpilot/selfdrive/selfdrived/events.py # openpilot/selfdrive/selfdrived/selfdrived.py # openpilot/selfdrive/ui/layouts/onboarding.py # openpilot/selfdrive/ui/mici/layouts/onboarding.py # openpilot/selfdrive/ui/soundd.py # openpilot/selfdrive/ui/tests/diff/replay.py # openpilot/selfdrive/ui/translations/app.pot # openpilot/system/athena/athenad.py # openpilot/system/athena/manage_athenad.py # openpilot/system/hardware/hardwared.py # openpilot/system/loggerd/config.py # openpilot/system/manager/github_runner.sh # openpilot/system/manager/manager.py # openpilot/system/updated/updated.py # panda # pyproject.toml # scripts/lint/lint.sh # system/manager/process_config.py # system/statsd.py # tinygrad_repo # tools/release/build_release.sh # tools/release/build_stripped.sh # uv.lock
61 lines
2.0 KiB
Python
61 lines
2.0 KiB
Python
import random
|
|
|
|
from openpilot.selfdrive.selfdrived.events import Alert, EVENTS
|
|
from openpilot.selfdrive.selfdrived.alertmanager import AlertManager
|
|
|
|
from openpilot.sunnypilot.selfdrive.selfdrived.events_base import EmptyAlert
|
|
|
|
|
|
class TestAlertManager:
|
|
|
|
def test_duration(self):
|
|
"""
|
|
Enforce that an alert lasts for max(alert duration, duration the alert is added)
|
|
"""
|
|
for duration in range(1, 100):
|
|
alert = None
|
|
while not isinstance(alert, Alert):
|
|
event = random.choice([e for e in EVENTS.values() if len(e)])
|
|
alert = random.choice(list(event.values()))
|
|
|
|
alert.duration = duration
|
|
|
|
# check two cases:
|
|
# - alert is added to AM for <= the alert's duration
|
|
# - alert is added to AM for > alert's duration
|
|
for greater in (True, False):
|
|
if greater:
|
|
add_duration = duration + random.randint(1, 10)
|
|
else:
|
|
add_duration = random.randint(1, duration)
|
|
show_duration = max(duration, add_duration)
|
|
|
|
AM = AlertManager()
|
|
for frame in range(duration+10):
|
|
if frame < add_duration:
|
|
AM.add_many(frame, [alert, ])
|
|
AM.process_alerts(frame, set())
|
|
|
|
shown = AM.current_alert != EmptyAlert
|
|
should_show = frame <= show_duration
|
|
assert shown == should_show, f"{frame=} {add_duration=} {duration=}"
|
|
|
|
# check one case:
|
|
# - if alert is re-added to AM before it ends the duration is extended
|
|
if duration > 1:
|
|
AM = AlertManager()
|
|
show_duration = duration * 2
|
|
for frame in range(duration * 2 + 10):
|
|
if frame == 0:
|
|
AM.add_many(frame, [alert, ])
|
|
|
|
if frame == duration:
|
|
# add alert one frame before it ends
|
|
assert AM.current_alert == alert
|
|
AM.add_many(frame, [alert, ])
|
|
AM.process_alerts(frame, set())
|
|
|
|
shown = AM.current_alert != EmptyAlert
|
|
should_show = frame <= show_duration
|
|
assert shown == should_show, f"{frame=} {duration=}"
|