pull/34975/head
Kacper Rączy 3 weeks ago
parent 65ad12a613
commit 18a8d21266
  1. 7
      selfdrive/locationd/test/test_lagd.py

@ -4,7 +4,8 @@ import time
import pytest import pytest
from cereal import messaging from cereal import messaging
from openpilot.selfdrive.locationd.lagd import LateralLagEstimator, retrieve_initial_lag, masked_normalized_cross_correlation, BLOCK_NUM_NEEDED, BLOCK_SIZE, MIN_OKAY_WINDOW_SEC from openpilot.selfdrive.locationd.lagd import LateralLagEstimator, retrieve_initial_lag, masked_normalized_cross_correlation, \
BLOCK_NUM_NEEDED, BLOCK_SIZE, MIN_OKAY_WINDOW_SEC
from openpilot.selfdrive.test.process_replay.migration import migrate, migrate_carParams from openpilot.selfdrive.test.process_replay.migration import migrate, migrate_carParams
from openpilot.selfdrive.locationd.test.test_locationd_scenarios import TEST_ROUTE from openpilot.selfdrive.locationd.test.test_locationd_scenarios import TEST_ROUTE
from openpilot.common.params import Params from openpilot.common.params import Params
@ -107,7 +108,7 @@ class TestLagd:
@pytest.mark.skipif(PC, reason="only on device") @pytest.mark.skipif(PC, reason="only on device")
@pytest.mark.timeout(30) @pytest.mark.timeout(30)
def test_estimator_performance(self, mocker): def test_estimator_performance(self, mocker):
mocked_CP = mocker.Mock(steerActuatorDelay=0.1) mocked_CP = mocker.Mock(steerActuatorDelay=0.8)
estimator = LateralLagEstimator(mocked_CP, DT) estimator = LateralLagEstimator(mocked_CP, DT)
ds = [] ds = []
@ -119,5 +120,3 @@ class TestLagd:
ds.append(d) ds.append(d)
assert np.mean(ds) < DT assert np.mean(ds) < DT
import sys
Loading…
Cancel
Save