Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristopher Haster <chaster@utexas.edu>2018-02-26 21:24:27 +0300
committerChristopher Haster <chaster@utexas.edu>2018-03-01 08:14:41 +0300
commit9ee112a7cbdbf15a6aee931527f87f587ca523e5 (patch)
tree1433cd1d7d74c16abe7ccc4055b8a7a440aa119a /tests
parentd9c36371e710bb8561e3493d156927d5e55a8a0d (diff)
Fixed issue updating dir struct when extended dir chain
Like most of the lfs_dir_t functions, lfs_dir_append is responsible for updating the lfs_dir_t struct if the underlying directory block is moved. This property makes handling worn out blocks much easier by removing the amount of state that needs to be considered during a directory update. However, extending the dir chain is a bit of a corner case. It's not changing the old block, but callers of lfs_dir_append do assume the "entry" will reside in "dir" after lfs_dir_append completes. This issue only occurs when creating files, since mkdir does not use the entry after lfs_dir_append. Unfortunately, the tests against extending the directory chain were all made using mkdir. Found by schouleu
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test_dirs.sh66
-rwxr-xr-xtests/test_files.sh19
2 files changed, 85 insertions, 0 deletions
diff --git a/tests/test_dirs.sh b/tests/test_dirs.sh
index 9f9733d..53d76f7 100755
--- a/tests/test_dirs.sh
+++ b/tests/test_dirs.sh
@@ -118,6 +118,7 @@ tests/test.py << TEST
sprintf((char*)buffer, "test%d", i);
lfs_dir_read(&lfs, &dir[0], &info) => 1;
strcmp(info.name, (char*)buffer) => 0;
+ info.type => LFS_TYPE_DIR;
}
lfs_dir_read(&lfs, &dir[0], &info) => 0;
lfs_unmount(&lfs) => 0;
@@ -355,5 +356,70 @@ tests/test.py << TEST
lfs_unmount(&lfs) => 0;
TEST
+echo "--- Multi-block directory with files ---"
+tests/test.py << TEST
+ lfs_mount(&lfs, &cfg) => 0;
+ lfs_mkdir(&lfs, "prickly-pear") => 0;
+ for (int i = 0; i < $LARGESIZE; i++) {
+ sprintf((char*)buffer, "prickly-pear/test%d", i);
+ lfs_file_open(&lfs, &file[0], (char*)buffer,
+ LFS_O_WRONLY | LFS_O_CREAT) => 0;
+ size = 6;
+ memcpy(wbuffer, "Hello", size);
+ lfs_file_write(&lfs, &file[0], wbuffer, size) => size;
+ lfs_file_close(&lfs, &file[0]) => 0;
+ }
+ lfs_unmount(&lfs) => 0;
+TEST
+tests/test.py << TEST
+ lfs_mount(&lfs, &cfg) => 0;
+ lfs_dir_open(&lfs, &dir[0], "prickly-pear") => 0;
+ lfs_dir_read(&lfs, &dir[0], &info) => 1;
+ strcmp(info.name, ".") => 0;
+ info.type => LFS_TYPE_DIR;
+ lfs_dir_read(&lfs, &dir[0], &info) => 1;
+ strcmp(info.name, "..") => 0;
+ info.type => LFS_TYPE_DIR;
+ for (int i = 0; i < $LARGESIZE; i++) {
+ sprintf((char*)buffer, "test%d", i);
+ lfs_dir_read(&lfs, &dir[0], &info) => 1;
+ strcmp(info.name, (char*)buffer) => 0;
+ info.type => LFS_TYPE_REG;
+ info.size => 6;
+ }
+ lfs_dir_read(&lfs, &dir[0], &info) => 0;
+ lfs_unmount(&lfs) => 0;
+TEST
+
+echo "--- Multi-block remove with files ---"
+tests/test.py << TEST
+ lfs_mount(&lfs, &cfg) => 0;
+ lfs_remove(&lfs, "prickly-pear") => LFS_ERR_NOTEMPTY;
+
+ for (int i = 0; i < $LARGESIZE; i++) {
+ sprintf((char*)buffer, "prickly-pear/test%d", i);
+ lfs_remove(&lfs, (char*)buffer) => 0;
+ }
+
+ lfs_remove(&lfs, "prickly-pear") => 0;
+ lfs_unmount(&lfs) => 0;
+TEST
+tests/test.py << TEST
+ lfs_mount(&lfs, &cfg) => 0;
+ lfs_dir_open(&lfs, &dir[0], "/") => 0;
+ lfs_dir_read(&lfs, &dir[0], &info) => 1;
+ strcmp(info.name, ".") => 0;
+ info.type => LFS_TYPE_DIR;
+ lfs_dir_read(&lfs, &dir[0], &info) => 1;
+ strcmp(info.name, "..") => 0;
+ info.type => LFS_TYPE_DIR;
+ lfs_dir_read(&lfs, &dir[0], &info) => 1;
+ strcmp(info.name, "burito") => 0;
+ info.type => LFS_TYPE_REG;
+ lfs_dir_read(&lfs, &dir[0], &info) => 0;
+ lfs_dir_close(&lfs, &dir[0]) => 0;
+ lfs_unmount(&lfs) => 0;
+TEST
+
echo "--- Results ---"
tests/stats.py
diff --git a/tests/test_files.sh b/tests/test_files.sh
index 4443463..b2039a7 100755
--- a/tests/test_files.sh
+++ b/tests/test_files.sh
@@ -135,5 +135,24 @@ tests/test.py << TEST
lfs_unmount(&lfs) => 0;
TEST
+echo "--- Many file test ---"
+tests/test.py << TEST
+ lfs_format(&lfs, &cfg) => 0;
+TEST
+tests/test.py << TEST
+ // Create 300 files of 6 bytes
+ lfs_mount(&lfs, &cfg) => 0;
+ lfs_mkdir(&lfs, "directory") => 0;
+ for (unsigned i = 0; i < 300; i++) {
+ snprintf((char*)buffer, sizeof(buffer), "file_%03d", i);
+ lfs_file_open(&lfs, &file[0], (char*)buffer, LFS_O_WRONLY | LFS_O_CREAT) => 0;
+ size = 6;
+ memcpy(wbuffer, "Hello", size);
+ lfs_file_write(&lfs, &file[0], wbuffer, size) => size;
+ lfs_file_close(&lfs, &file[0]) => 0;
+ }
+ lfs_unmount(&lfs) => 0;
+TEST
+
echo "--- Results ---"
tests/stats.py