| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- #include "../minunit.h"
- #include <furi.h>
- #include <furi_hal_delay.h>
- #include <storage/storage.h>
- #define STORAGE_LOCKED_FILE "/ext/locked_file.test"
- #define STORAGE_LOCKED_DIR "/int"
- static void storage_file_open_lock_setup() {
- Storage* storage = furi_record_open("storage");
- File* file = storage_file_alloc(storage);
- storage_simply_remove(storage, STORAGE_LOCKED_FILE);
- mu_check(storage_file_open(file, STORAGE_LOCKED_FILE, FSAM_WRITE, FSOM_CREATE_NEW));
- mu_check(storage_file_write(file, "0123", 4) == 4);
- mu_check(storage_file_close(file));
- storage_file_free(file);
- furi_record_close("storage");
- }
- static void storage_file_open_lock_teardown() {
- Storage* storage = furi_record_open("storage");
- mu_check(storage_simply_remove(storage, STORAGE_LOCKED_FILE));
- furi_record_close("storage");
- }
- static int32_t storage_file_locker(void* ctx) {
- Storage* storage = furi_record_open("storage");
- osSemaphoreId_t semaphore = ctx;
- File* file = storage_file_alloc(storage);
- furi_check(storage_file_open(file, STORAGE_LOCKED_FILE, FSAM_READ_WRITE, FSOM_OPEN_EXISTING));
- osSemaphoreRelease(semaphore);
- furi_hal_delay_ms(1000);
- furi_check(storage_file_close(file));
- furi_record_close("storage");
- storage_file_free(file);
- return 0;
- }
- MU_TEST(storage_file_open_lock) {
- Storage* storage = furi_record_open("storage");
- bool result = false;
- osSemaphoreId_t semaphore = osSemaphoreNew(1, 0, NULL);
- File* file = storage_file_alloc(storage);
- // file_locker thread start
- FuriThread* locker_thread = furi_thread_alloc();
- furi_thread_set_name(locker_thread, "StorageFileLocker");
- furi_thread_set_stack_size(locker_thread, 2048);
- furi_thread_set_context(locker_thread, semaphore);
- furi_thread_set_callback(locker_thread, storage_file_locker);
- mu_check(furi_thread_start(locker_thread));
- // wait for file lock
- osSemaphoreAcquire(semaphore, osWaitForever);
- osSemaphoreDelete(semaphore);
- result = storage_file_open(file, STORAGE_LOCKED_FILE, FSAM_READ_WRITE, FSOM_OPEN_EXISTING);
- storage_file_close(file);
- // file_locker thread stop
- mu_check(furi_thread_join(locker_thread) == osOK);
- furi_thread_free(locker_thread);
- // clean data
- storage_file_free(file);
- furi_record_close("storage");
- mu_assert(result, "cannot open locked file");
- }
- MU_TEST(storage_file_open_close) {
- Storage* storage = furi_record_open("storage");
- File* file;
- file = storage_file_alloc(storage);
- mu_check(storage_file_open(file, STORAGE_LOCKED_FILE, FSAM_READ_WRITE, FSOM_OPEN_EXISTING));
- storage_file_close(file);
- storage_file_free(file);
- for(size_t i = 0; i < 10; i++) {
- file = storage_file_alloc(storage);
- mu_check(
- storage_file_open(file, STORAGE_LOCKED_FILE, FSAM_READ_WRITE, FSOM_OPEN_EXISTING));
- storage_file_free(file);
- }
- furi_record_close("storage");
- }
- MU_TEST_SUITE(storage_file) {
- storage_file_open_lock_setup();
- MU_RUN_TEST(storage_file_open_close);
- MU_RUN_TEST(storage_file_open_lock);
- storage_file_open_lock_teardown();
- }
- MU_TEST(storage_dir_open_close) {
- Storage* storage = furi_record_open("storage");
- File* file;
- file = storage_file_alloc(storage);
- mu_check(storage_dir_open(file, STORAGE_LOCKED_DIR));
- storage_dir_close(file);
- storage_file_free(file);
- for(size_t i = 0; i < 10; i++) {
- file = storage_file_alloc(storage);
- mu_check(storage_dir_open(file, STORAGE_LOCKED_DIR));
- storage_file_free(file);
- }
- furi_record_close("storage");
- }
- static int32_t storage_dir_locker(void* ctx) {
- Storage* storage = furi_record_open("storage");
- osSemaphoreId_t semaphore = ctx;
- File* file = storage_file_alloc(storage);
- furi_check(storage_dir_open(file, STORAGE_LOCKED_DIR));
- osSemaphoreRelease(semaphore);
- furi_hal_delay_ms(1000);
- furi_check(storage_dir_close(file));
- furi_record_close("storage");
- storage_file_free(file);
- return 0;
- }
- MU_TEST(storage_dir_open_lock) {
- Storage* storage = furi_record_open("storage");
- bool result = false;
- osSemaphoreId_t semaphore = osSemaphoreNew(1, 0, NULL);
- File* file = storage_file_alloc(storage);
- // file_locker thread start
- FuriThread* locker_thread = furi_thread_alloc();
- furi_thread_set_name(locker_thread, "StorageDirLocker");
- furi_thread_set_stack_size(locker_thread, 2048);
- furi_thread_set_context(locker_thread, semaphore);
- furi_thread_set_callback(locker_thread, storage_dir_locker);
- mu_check(furi_thread_start(locker_thread));
- // wait for dir lock
- osSemaphoreAcquire(semaphore, osWaitForever);
- osSemaphoreDelete(semaphore);
- result = storage_dir_open(file, STORAGE_LOCKED_DIR);
- storage_dir_close(file);
- // file_locker thread stop
- mu_check(furi_thread_join(locker_thread) == osOK);
- furi_thread_free(locker_thread);
- // clean data
- storage_file_free(file);
- furi_record_close("storage");
- mu_assert(result, "cannot open locked dir");
- }
- MU_TEST_SUITE(storage_dir) {
- MU_RUN_TEST(storage_dir_open_close);
- MU_RUN_TEST(storage_dir_open_lock);
- }
- static const char* const storage_copy_test_paths[] = {
- "1",
- "11",
- "111",
- "1/2",
- "1/22",
- "1/222",
- "11/1",
- "111/2",
- "111/22",
- "111/22/33",
- };
- static const char* const storage_copy_test_files[] = {
- "file.test",
- "1/file.test",
- "111/22/33/file.test",
- };
- static bool write_file_13DA(Storage* storage, const char* path) {
- File* file = storage_file_alloc(storage);
- bool result = false;
- if(storage_file_open(file, path, FSAM_WRITE, FSOM_CREATE_ALWAYS)) {
- result = storage_file_write(file, "13DA", 4) == 4;
- }
- storage_file_close(file);
- storage_file_free(file);
- return result;
- }
- static bool check_file_13DA(Storage* storage, const char* path) {
- File* file = storage_file_alloc(storage);
- bool result = false;
- if(storage_file_open(file, path, FSAM_READ, FSOM_OPEN_EXISTING)) {
- char data[10] = {0};
- result = storage_file_read(file, data, 4) == 4;
- if(result) {
- result = memcmp(data, "13DA", 4) == 0;
- }
- }
- storage_file_close(file);
- storage_file_free(file);
- return result;
- }
- static void storage_dir_create(Storage* storage, const char* base) {
- string_t path;
- string_init(path);
- storage_common_mkdir(storage, base);
- for(size_t i = 0; i < COUNT_OF(storage_copy_test_paths); i++) {
- string_printf(path, "%s/%s", base, storage_copy_test_paths[i]);
- storage_common_mkdir(storage, string_get_cstr(path));
- }
- for(size_t i = 0; i < COUNT_OF(storage_copy_test_files); i++) {
- string_printf(path, "%s/%s", base, storage_copy_test_files[i]);
- write_file_13DA(storage, string_get_cstr(path));
- }
- string_clear(path);
- }
- static void storage_dir_remove(Storage* storage, const char* base) {
- storage_simply_remove_recursive(storage, base);
- }
- static bool storage_dir_rename_check(Storage* storage, const char* base) {
- bool result = false;
- string_t path;
- string_init(path);
- result = (storage_common_stat(storage, base, NULL) == FSE_OK);
- if(result) {
- for(size_t i = 0; i < COUNT_OF(storage_copy_test_paths); i++) {
- string_printf(path, "%s/%s", base, storage_copy_test_paths[i]);
- result = (storage_common_stat(storage, string_get_cstr(path), NULL) == FSE_OK);
- if(!result) {
- break;
- }
- }
- }
- if(result) {
- for(size_t i = 0; i < COUNT_OF(storage_copy_test_files); i++) {
- string_printf(path, "%s/%s", base, storage_copy_test_files[i]);
- result = check_file_13DA(storage, string_get_cstr(path));
- if(!result) {
- break;
- }
- }
- }
- string_clear(path);
- return result;
- }
- MU_TEST(storage_file_rename) {
- Storage* storage = furi_record_open("storage");
- File* file = storage_file_alloc(storage);
- mu_check(write_file_13DA(storage, "/ext/file.old"));
- mu_check(check_file_13DA(storage, "/ext/file.old"));
- mu_assert_int_eq(FSE_OK, storage_common_rename(storage, "/ext/file.old", "/ext/file.new"));
- mu_assert_int_eq(FSE_NOT_EXIST, storage_common_stat(storage, "/ext/file.old", NULL));
- mu_assert_int_eq(FSE_OK, storage_common_stat(storage, "/ext/file.new", NULL));
- mu_check(check_file_13DA(storage, "/ext/file.new"));
- mu_assert_int_eq(FSE_OK, storage_common_remove(storage, "/ext/file.new"));
- storage_file_free(file);
- furi_record_close("storage");
- }
- MU_TEST(storage_dir_rename) {
- Storage* storage = furi_record_open("storage");
- storage_dir_create(storage, "/ext/dir.old");
- mu_check(storage_dir_rename_check(storage, "/ext/dir.old"));
- mu_assert_int_eq(FSE_OK, storage_common_rename(storage, "/ext/dir.old", "/ext/dir.new"));
- mu_assert_int_eq(FSE_NOT_EXIST, storage_common_stat(storage, "/ext/dir.old", NULL));
- mu_check(storage_dir_rename_check(storage, "/ext/dir.new"));
- storage_dir_remove(storage, "/ext/dir.new");
- mu_assert_int_eq(FSE_NOT_EXIST, storage_common_stat(storage, "/ext/dir.new", NULL));
- furi_record_close("storage");
- }
- MU_TEST_SUITE(storage_rename) {
- MU_RUN_TEST(storage_file_rename);
- MU_RUN_TEST(storage_dir_rename);
- Storage* storage = furi_record_open("storage");
- storage_dir_remove(storage, "/ext/dir.old");
- storage_dir_remove(storage, "/ext/dir.new");
- furi_record_close("storage");
- }
- int run_minunit_test_storage() {
- MU_RUN_SUITE(storage_file);
- MU_RUN_SUITE(storage_dir);
- MU_RUN_SUITE(storage_rename);
- return MU_EXIT_CODE;
- }
|