mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-02 06:03:43 +08:00
d7dac0e5c2
date: 2024-06-11T01:36:39 master commit: f8cb04e4a8b032b72a909f68b808a50936184bee
27 lines
600 B
Python
27 lines
600 B
Python
import pytest
|
|
import time
|
|
import numpy as np
|
|
|
|
from openpilot.system.hardware.tici.hardware import Tici
|
|
|
|
HARDWARE = Tici()
|
|
|
|
|
|
@pytest.mark.tici
|
|
class TestHardware:
|
|
|
|
def test_power_save_time(self):
|
|
ts = {True: [], False: []}
|
|
for _ in range(5):
|
|
for on in (True, False):
|
|
st = time.monotonic()
|
|
HARDWARE.set_power_save(on)
|
|
ts[on].append(time.monotonic() - st)
|
|
|
|
# disabling power save is the main time-critical one
|
|
assert 0.1 < np.mean(ts[False]) < 0.15
|
|
assert max(ts[False]) < 0.2
|
|
|
|
assert 0.1 < np.mean(ts[True]) < 0.35
|
|
assert max(ts[True]) < 0.4
|