mirror of
https://github.com/eledio-devices/thirdparty-littlefs.git
synced 2025-11-01 00:38:29 +01:00
Both test_move and test_orphan needed internal knowledge which comes with the addition of the "in" attribute. This was in the plan for the test-revamp from the beginning as it really opens up the ability to write more unit-style-tests using internal knowledge of how littlefs works. More unit-style-tests should help _fix_ bugs by limiting the scope of the test and where the bug could be hiding. The "in" attribute effectively runs tests _inside_ the .c file specified, giving the test access to all static members without needed to change their visibility.
57 lines
2.0 KiB
TOML
57 lines
2.0 KiB
TOML
[[case]] # orphan test
|
|
in = "lfs.c"
|
|
code = '''
|
|
lfs_format(&lfs, &cfg) => 0;
|
|
lfs_mount(&lfs, &cfg) => 0;
|
|
lfs_mkdir(&lfs, "parent") => 0;
|
|
lfs_mkdir(&lfs, "parent/orphan") => 0;
|
|
lfs_mkdir(&lfs, "parent/child") => 0;
|
|
lfs_remove(&lfs, "parent/orphan") => 0;
|
|
lfs_unmount(&lfs) => 0;
|
|
|
|
// corrupt the child's most recent commit, this should be the update
|
|
// to the linked-list entry, which should orphan the orphan. Note this
|
|
// makes a lot of assumptions about the remove operation.
|
|
lfs_mount(&lfs, &cfg) => 0;
|
|
lfs_dir_open(&lfs, &dir, "parent/child") => 0;
|
|
lfs_block_t block = dir.m.pair[0];
|
|
lfs_dir_close(&lfs, &dir) => 0;
|
|
lfs_unmount(&lfs) => 0;
|
|
uint8_t bbuffer[LFS_BLOCK_SIZE];
|
|
cfg.read(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
|
|
int off = LFS_BLOCK_SIZE-1;
|
|
while (off >= 0 && bbuffer[off] == LFS_ERASE_VALUE) {
|
|
off -= 1;
|
|
}
|
|
memset(&bbuffer[off-3], LFS_BLOCK_SIZE, 3);
|
|
cfg.erase(&cfg, block) => 0;
|
|
cfg.prog(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
|
|
cfg.sync(&cfg) => 0;
|
|
|
|
lfs_mount(&lfs, &cfg) => 0;
|
|
lfs_stat(&lfs, "parent/orphan", &info) => LFS_ERR_NOENT;
|
|
lfs_stat(&lfs, "parent/child", &info) => 0;
|
|
lfs_fs_size(&lfs) => 8;
|
|
lfs_unmount(&lfs) => 0;
|
|
|
|
lfs_mount(&lfs, &cfg) => 0;
|
|
lfs_stat(&lfs, "parent/orphan", &info) => LFS_ERR_NOENT;
|
|
lfs_stat(&lfs, "parent/child", &info) => 0;
|
|
lfs_fs_size(&lfs) => 8;
|
|
// this mkdir should both create a dir and deorphan, so size
|
|
// should be unchanged
|
|
lfs_mkdir(&lfs, "parent/otherchild") => 0;
|
|
lfs_stat(&lfs, "parent/orphan", &info) => LFS_ERR_NOENT;
|
|
lfs_stat(&lfs, "parent/child", &info) => 0;
|
|
lfs_stat(&lfs, "parent/otherchild", &info) => 0;
|
|
lfs_fs_size(&lfs) => 8;
|
|
lfs_unmount(&lfs) => 0;
|
|
|
|
lfs_mount(&lfs, &cfg) => 0;
|
|
lfs_stat(&lfs, "parent/orphan", &info) => LFS_ERR_NOENT;
|
|
lfs_stat(&lfs, "parent/child", &info) => 0;
|
|
lfs_stat(&lfs, "parent/otherchild", &info) => 0;
|
|
lfs_fs_size(&lfs) => 8;
|
|
lfs_unmount(&lfs) => 0;
|
|
'''
|