Files
esp-idf/examples/system/ota/otatool/pytest_otatool.py
T

31 lines
1.1 KiB
Python
Raw Normal View History

# SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Unlicense OR CC0-1.0
2018-11-16 05:02:34 +08:00
import os
import subprocess
import sys
2018-11-16 05:02:34 +08:00
import pytest
from pytest_embedded import Dut
2024-10-29 10:09:42 +02:00
@pytest.mark.parametrize('config', [
pytest.param('default', marks=[pytest.mark.supported_targets, pytest.mark.generic, pytest.mark.temp_skip(targets=['esp32c2'], reason='must have 4MB')]),
pytest.param('default', marks=[pytest.mark.esp32c2, pytest.mark.generic, pytest.mark.flash_4mb]),
], indirect=True)
def test_otatool_example(dut: Dut) -> None:
2018-11-16 05:02:34 +08:00
# Verify factory firmware
dut.expect('OTA Tool Example')
dut.expect('Example end')
2018-11-16 05:02:34 +08:00
# Close connection to DUT
dut.serial.close()
2018-11-16 05:02:34 +08:00
script_path = os.path.join(str(os.getenv('IDF_PATH')), 'examples', 'system', 'ota', 'otatool', 'otatool_example.py')
binary_path = ''
2018-11-16 05:02:34 +08:00
for flash_file in dut.app.flash_files:
if 'otatool.bin' in flash_file[1]:
binary_path = flash_file[1]
2018-11-16 05:02:34 +08:00
break
subprocess.check_call([sys.executable, script_path, '--binary', binary_path])