/* test_fs.cpp - host side file system tests Copyright © 2016 Ivan Grokhotkov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. */ #include #include #include "../common/spiffs_mock.h" TEST_CASE("FS can begin","[fs]") { SPIFFS_MOCK_DECLARE(1024, 8, 512); REQUIRE(SPIFFS.begin()); } TEST_CASE("FS can create file","[fs]") { SPIFFS_MOCK_DECLARE(1024, 8, 512); REQUIRE(SPIFFS.begin()); { File f = SPIFFS.open("config.txt", "w"); REQUIRE(f); } REQUIRE(SPIFFS.exists("config.txt")); } TEST_CASE("Files can be written and appended to","[fs]") { SPIFFS_MOCK_DECLARE(1024, 8, 512); REQUIRE(SPIFFS.begin()); { File f = SPIFFS.open("config1.txt", "w"); REQUIRE(f); f.println("file 1"); } { File f = SPIFFS.open("config1.txt", "a"); REQUIRE(f); f.println("file 1 again"); } { File f = SPIFFS.open("config1.txt", "r"); REQUIRE(f); char buf[128]; size_t len = f.read((uint8_t*)buf, sizeof(buf)); buf[len] = 0; REQUIRE(strcmp(buf, "file 1\r\nfile 1 again\r\n") == 0); } } TEST_CASE("Files persist after reset", "[fs]") { SPIFFS_MOCK_DECLARE(1024, 8, 512); REQUIRE(SPIFFS.begin()); { File f = SPIFFS.open("config1.txt", "w"); REQUIRE(f); f.println("file 1"); } SPIFFS_MOCK_RESET(); REQUIRE(SPIFFS.begin()); { File f = SPIFFS.open("config1.txt", "r"); REQUIRE(f); REQUIRE(f.readString() == "file 1\r\n"); } }