examples: Add storage example tests

This commit is contained in:
Roland Dobai
2020-03-30 16:26:21 +02:00
parent d5aeae9d48
commit 819f7a4e57
18 changed files with 454 additions and 95 deletions

View File

@@ -0,0 +1,22 @@
import re
import ttfw_idf
@ttfw_idf.idf_example_test(env_tag='Example_WIFI')
def test_examples_spiffs(env, extra_data):
dut = env.get_dut('spiffs', 'examples/storage/spiffs')
dut.start_app()
dut.expect_all('example: Initializing SPIFFS',
re.compile(r'example: Partition size: total: \d+, used: \d+'),
'example: Opening file',
'example: File written',
'example: Renaming file',
'example: Reading file',
'example: Read from file: \'Hello World!\'',
'example: SPIFFS unmounted',
timeout=20)
if __name__ == '__main__':
test_examples_spiffs()