Files
syncspirit/tests/test-utils.h
2024-04-04 23:21:14 +03:00

52 lines
1.6 KiB
C++

// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: 2019-2023 Ivan Baidakou
#pragma once
#include <catch2/catch_all.hpp>
#include <boost/filesystem.hpp>
#include "model/device.h"
#include "model/diff/cluster_diff.h"
#include "syncspirit-test-export.h"
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32)
#define SYNCSPIRIT_WIN
#endif
namespace syncspirit::test {
namespace bfs = boost::filesystem;
namespace sys = boost::system;
struct SYNCSPIRIT_TEST_API path_guard_t {
bfs::path &path;
path_guard_t(bfs::path &path_) : path{path_} {}
~path_guard_t() {
if (!getenv("SYNCSPIRIT_TEST_KEEP_PATH")) {
sys::error_code ec;
if (bfs::exists(path, ec)) {
bfs::permissions(path, bfs::perms::owner_all, ec);
if (ec) {
printf("error setting permissions : %s: %s\n", path.string().c_str(), ec.message().c_str());
}
}
bfs::remove_all(path, ec);
if (ec) {
printf("error removing %s : %s\n", path.string().c_str(), ec.message().c_str());
}
}
}
};
SYNCSPIRIT_TEST_API bfs::path locate_path(const char *test_file);
SYNCSPIRIT_TEST_API std::string read_file(const bfs::path &path);
SYNCSPIRIT_TEST_API void write_file(const bfs::path &path, std::string_view content);
SYNCSPIRIT_TEST_API std::string device_id2sha256(std::string_view device_id);
SYNCSPIRIT_TEST_API model::device_ptr_t make_device(std::string_view device_id, std::string_view name = "");
SYNCSPIRIT_TEST_API std::string hash_string(const std::string_view &hash) noexcept;
} // namespace syncspirit::test