pytest_timer_group.py 808 B

123456789101112131415161718192021
  1. # SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
  2. # SPDX-License-Identifier: CC0-1.0
  3. import pytest
  4. from pytest_embedded import Dut
  5. @pytest.mark.supported_targets
  6. @pytest.mark.generic
  7. def test_timer_group_example(dut: Dut) -> None:
  8. dut.expect(r'Init timer with auto-reload', timeout=5)
  9. res = dut.expect(r'Timer auto reloaded, count value in ISR: (\d+)', timeout=5)
  10. reloaded_count = res.group(1).decode('utf8')
  11. assert 0 <= int(reloaded_count) < 10
  12. alarm_increase_step = 500000
  13. dut.expect(r'Init timer without auto-reload')
  14. for i in range(1, 5):
  15. res = dut.expect(r'Timer alarmed at (\d+)', timeout=3)
  16. alarm_count = res.group(1).decode('utf8')
  17. assert (i * alarm_increase_step - 10) < int(alarm_count) < (i * alarm_increase_step + 10)