fsfw/unittests/hal/testHostFilesystem.cpp

200 lines
7.2 KiB
C++
Raw Normal View History

2022-08-10 17:03:23 +02:00
#include <catch2/catch_test_macros.hpp>
2022-08-11 10:10:05 +02:00
#include <filesystem>
2022-08-17 11:39:15 +02:00
#include <fstream>
2022-08-10 17:03:23 +02:00
2022-08-17 16:10:52 +02:00
#include "fsfw/serialize/SerializeIF.h"
2022-08-10 17:03:23 +02:00
#include "fsfw_hal/host/HostFilesystem.h"
2022-08-17 11:39:15 +02:00
using namespace std;
2022-08-11 09:59:14 +02:00
TEST_CASE("Host Filesystem", "[hal][host]") {
2022-08-17 11:39:15 +02:00
namespace fs = filesystem;
2022-08-11 09:59:14 +02:00
auto hostFs = HostFilesystem();
auto tmpDir = fs::temp_directory_path();
2022-08-11 10:10:05 +02:00
fs::path file0 = tmpDir / "hello.txt";
2022-08-11 10:19:25 +02:00
fs::path file1 = tmpDir / "hello2.txt";
fs::path dir0 = tmpDir / "test_dir";
2022-08-17 16:10:52 +02:00
fs::path fileInDir0 = dir0 / "hello.txt";
fs::path dirWithParent = dir0 / "test_dir";
2022-08-11 10:10:05 +02:00
REQUIRE_NOTHROW(fs::remove(file0));
REQUIRE_NOTHROW(fs::remove(file1));
2022-08-17 16:10:52 +02:00
REQUIRE_NOTHROW(fs::remove_all(dir0));
2022-08-11 09:59:14 +02:00
SECTION("Create file") {
2022-08-11 10:19:25 +02:00
FilesystemParams params(file0.c_str());
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.createFile(params) == returnvalue::OK);
2022-08-11 10:19:25 +02:00
CHECK(fs::is_regular_file(file0));
REQUIRE(fs::exists(file0));
2022-08-11 09:59:14 +02:00
}
SECTION("Remove File") {
2022-08-11 10:19:25 +02:00
FilesystemParams params(file0.c_str());
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.createFile(params) == returnvalue::OK);
2022-08-11 10:19:25 +02:00
CHECK(fs::is_regular_file(file0));
REQUIRE(fs::exists(file0));
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.removeFile(file0.c_str()) == returnvalue::OK);
2022-08-11 10:19:25 +02:00
REQUIRE(not fs::exists(file0));
2022-08-11 09:59:14 +02:00
}
2022-08-11 10:10:05 +02:00
SECTION("Create Directory") {
2022-08-11 10:19:25 +02:00
FilesystemParams params(dir0.c_str());
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.createDirectory(params) == returnvalue::OK);
2022-08-11 10:19:25 +02:00
CHECK(fs::is_directory(dir0));
REQUIRE(fs::exists(dir0));
2022-08-11 10:10:05 +02:00
}
SECTION("Remove Directory") {
2022-08-11 10:19:25 +02:00
FilesystemParams params(dir0.c_str());
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.createDirectory(params) == returnvalue::OK);
2022-08-11 10:19:25 +02:00
REQUIRE(fs::exists(dir0));
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.removeDirectory(params) == returnvalue::OK);
2022-08-11 10:19:25 +02:00
REQUIRE(not fs::exists(dir0));
2022-08-11 10:10:05 +02:00
}
SECTION("Rename File") {
2022-08-11 10:19:25 +02:00
FilesystemParams params(file0.c_str());
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.createFile(params) == returnvalue::OK);
2022-08-11 10:19:25 +02:00
CHECK(fs::is_regular_file(file0));
REQUIRE(fs::exists(file0));
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.rename(file0.c_str(), file1.c_str()) == returnvalue::OK);
2022-08-11 10:10:05 +02:00
}
2022-08-11 10:19:25 +02:00
SECTION("Write To File") {
std::string data = "hello world!";
FileOpParams params(file0.c_str(), data.size());
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.createFile(params.fsParams) == returnvalue::OK);
2022-08-11 10:19:25 +02:00
CHECK(fs::is_regular_file(file0));
REQUIRE(fs::exists(file0));
2022-08-17 11:39:15 +02:00
CHECK(hostFs.writeToFile(params, reinterpret_cast<const uint8_t*>(data.c_str())) ==
2022-08-22 16:35:53 +02:00
returnvalue::OK);
2022-08-17 11:39:15 +02:00
CHECK(fs::file_size(file0) == data.size());
ifstream ifile(file0);
char readBuf[524]{};
ifile.read(readBuf, sizeof(readBuf));
std::string readBackString(readBuf);
CHECK(data == readBackString);
}
SECTION("Read From File") {
std::string data = "hello world!";
FileOpParams params(file0.c_str(), data.size());
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.createFile(params.fsParams) == returnvalue::OK);
2022-08-17 11:39:15 +02:00
CHECK(fs::is_regular_file(file0));
ofstream of(file0);
of.write(data.c_str(), static_cast<unsigned int>(data.size()));
of.close();
CHECK(fs::file_size(file0) == data.size());
REQUIRE(fs::exists(file0));
std::array<uint8_t, 256> readBuf{};
uint8_t* readPtr = readBuf.data();
size_t readSize = 0;
2022-08-22 16:35:53 +02:00
CHECK(hostFs.readFromFile(params, &readPtr, readSize, readBuf.size()) == returnvalue::OK);
2022-08-17 11:39:15 +02:00
std::string readBackString(reinterpret_cast<const char*>(readBuf.data()));
CHECK(readSize == data.size());
CHECK(data == readBackString);
2022-08-17 16:10:52 +02:00
}
SECTION("Invalid Input does not crash") {
FileOpParams params(nullptr, 10);
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.createFile(params.fsParams) != returnvalue::OK);
REQUIRE(hostFs.createDirectory(params.fsParams) != returnvalue::OK);
REQUIRE(hostFs.createFile(params.fsParams) != returnvalue::OK);
REQUIRE(hostFs.removeDirectory(params.fsParams) != returnvalue::OK);
REQUIRE(hostFs.removeFile(nullptr) != returnvalue::OK);
REQUIRE(hostFs.rename(nullptr, nullptr) != returnvalue::OK);
REQUIRE(hostFs.writeToFile(params, nullptr) != returnvalue::OK);
2022-08-17 16:10:52 +02:00
size_t readLen = 0;
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.readFromFile(params, nullptr, readLen, 20) != returnvalue::OK);
2022-08-17 16:10:52 +02:00
}
SECTION("Create File but already exists") {
FilesystemParams params(file0.c_str());
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.createFile(params) == returnvalue::OK);
2022-08-17 16:10:52 +02:00
REQUIRE(hostFs.createFile(params) == HasFileSystemIF::FILE_ALREADY_EXISTS);
}
SECTION("Remove File but does not exist") {
REQUIRE(hostFs.removeFile(file0.c_str()) == HasFileSystemIF::FILE_DOES_NOT_EXIST);
}
SECTION("Create Directory but already exists") {
FileOpParams params(file0.c_str(), 12);
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.createDirectory(params.fsParams) == returnvalue::OK);
2022-08-17 16:10:52 +02:00
REQUIRE(hostFs.createDirectory(params.fsParams) == HasFileSystemIF::DIRECTORY_ALREADY_EXISTS);
}
SECTION("Remove Directory but does not exist") {
FilesystemParams params(dir0.c_str());
REQUIRE(hostFs.removeDirectory(params) == HasFileSystemIF::DIRECTORY_DOES_NOT_EXIST);
}
SECTION("Remove Directory but is file") {
ofstream of(file0);
FilesystemParams params(file0.c_str());
REQUIRE(hostFs.removeDirectory(params) == HasFileSystemIF::NOT_A_DIRECTORY);
}
SECTION("Read from file but does not exist") {
std::string data = "hello world!";
FileOpParams params(file0.c_str(), data.size());
std::array<uint8_t, 10> readBuf{};
uint8_t* readPtr = readBuf.data();
size_t readSize = 0;
CHECK(hostFs.readFromFile(params, &readPtr, readSize, readBuf.size()) ==
HasFileSystemIF::FILE_DOES_NOT_EXIST);
}
SECTION("Write to file but does not exist") {
std::string data = "hello world!";
FileOpParams params(file0.c_str(), data.size());
CHECK(hostFs.writeToFile(params, reinterpret_cast<const uint8_t*>(data.c_str())) ==
HasFileSystemIF::FILE_DOES_NOT_EXIST);
}
SECTION("Remove recursively") {
fs::create_directory(dir0.c_str());
ofstream of(fileInDir0);
CHECK(fs::is_directory(dir0));
CHECK(fs::is_regular_file(fileInDir0));
2022-08-22 16:35:53 +02:00
REQUIRE(hostFs.removeDirectory(FilesystemParams(dir0.c_str()), true) == returnvalue::OK);
2022-08-17 16:10:52 +02:00
CHECK(not fs::is_directory(dir0));
CHECK(not fs::is_regular_file(fileInDir0));
}
SECTION("Non-Recursive Removal Fails") {
fs::create_directory(dir0.c_str());
ofstream of(fileInDir0);
CHECK(fs::is_directory(dir0));
CHECK(fs::is_regular_file(fileInDir0));
REQUIRE(hostFs.removeDirectory(FilesystemParams(dir0.c_str())) ==
HasFileSystemIF::DIRECTORY_NOT_EMPTY);
}
SECTION("Create directory with parent directory") {
2022-08-22 16:35:53 +02:00
CHECK(hostFs.createDirectory(FilesystemParams(dirWithParent.c_str()), true) == returnvalue::OK);
2022-08-17 16:10:52 +02:00
CHECK(fs::is_directory(dir0));
CHECK(fs::is_directory(dirWithParent));
}
SECTION("Read but provided buffer too small") {
std::string data = "hello world!";
FileOpParams params(file0.c_str(), data.size());
ofstream of(file0);
of.write(data.c_str(), static_cast<unsigned int>(data.size()));
of.close();
CHECK(fs::file_size(file0) == data.size());
REQUIRE(fs::exists(file0));
std::array<uint8_t, 15> readBuf{};
uint8_t* readPtr = readBuf.data();
size_t readSize = 0;
CHECK(hostFs.readFromFile(params, &readPtr, readSize, 5) == SerializeIF::BUFFER_TOO_SHORT);
readSize = 10;
CHECK(hostFs.readFromFile(params, &readPtr, readSize, readBuf.size()) ==
SerializeIF::BUFFER_TOO_SHORT);
2022-08-11 10:19:25 +02:00
}
REQUIRE_NOTHROW(fs::remove(file0));
REQUIRE_NOTHROW(fs::remove(file1));
2022-08-17 16:10:52 +02:00
REQUIRE_NOTHROW(fs::remove_all(dir0));
2022-08-11 09:59:14 +02:00
}