mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-26 18:14:11 +00:00
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
# SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD
|
|
# SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
import re
|
|
|
|
import pytest
|
|
from pytest_embedded import Dut
|
|
from pytest_embedded_idf.utils import idf_parametrize
|
|
|
|
|
|
@pytest.mark.generic
|
|
@idf_parametrize('target', ['esp32', 'esp32c3'], indirect=['target'])
|
|
def test_wear_levelling_example(dut: Dut) -> None:
|
|
message_list = (
|
|
'example: Mounting FAT filesystem',
|
|
'example: Opening file',
|
|
'example: File written',
|
|
'example: Reading file',
|
|
re.compile(str.encode("example: Read from file: 'hello world, from ESP-IDF \\S+'")),
|
|
re.compile(str.encode('vfs_fat_spiflash: Formatting FATFS partition, allocation unit size=\\S+')),
|
|
'example: file does not exist, format done',
|
|
'example: Opening file',
|
|
'example: File written',
|
|
'example: Reading file',
|
|
re.compile(str.encode("example: Read from file: 'nihao shijie, from ESP-IDF \\S+'")),
|
|
'example: Unmounting FAT filesystem',
|
|
'example: Done',
|
|
)
|
|
|
|
for msg in message_list:
|
|
dut.expect(msg, timeout=20)
|