2022-07-08 05:34:03 -04:00
|
|
|
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
# SPDX-License-Identifier: Unlicense OR CC0-1.0
|
2021-01-25 21:49:01 -05:00
|
|
|
|
2019-01-31 06:54:45 -05:00
|
|
|
import hashlib
|
2021-01-25 21:49:01 -05:00
|
|
|
import os
|
2019-01-31 06:54:45 -05:00
|
|
|
|
2022-07-08 05:34:03 -04:00
|
|
|
import pytest
|
|
|
|
from pytest_embedded import Dut
|
2019-01-31 06:54:45 -05:00
|
|
|
|
|
|
|
|
2022-07-08 05:34:03 -04:00
|
|
|
@pytest.mark.esp32
|
|
|
|
@pytest.mark.esp32c3
|
|
|
|
def test_spiffsgen_example(dut: Dut) -> None:
|
2019-01-31 06:54:45 -05:00
|
|
|
# Test with default build configurations
|
|
|
|
base_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'spiffs_image')
|
|
|
|
|
|
|
|
# Expect hello.txt is read successfully
|
|
|
|
with open(os.path.join(base_dir, 'hello.txt'), 'r') as hello_txt:
|
2020-11-17 02:01:49 -05:00
|
|
|
dut.expect('Read from hello.txt: ' + hello_txt.read().rstrip())
|
2019-01-31 06:54:45 -05:00
|
|
|
|
|
|
|
# Expect alice.txt MD5 hash is computed accurately
|
|
|
|
with open(os.path.join(base_dir, 'sub', 'alice.txt'), 'rb') as alice_txt:
|
|
|
|
alice_md5 = hashlib.md5(alice_txt.read()).hexdigest()
|
|
|
|
dut.expect('Computed MD5 hash of alice.txt: ' + alice_md5)
|