2016-04-20 04:57:49 -04:00
|
|
|
/*
|
2018-03-09 08:26:33 -05:00
|
|
|
* This content is released under the MIT License as specified in https://raw.githubusercontent.com/gabime/spdlog/master/LICENSE
|
|
|
|
*/
|
2016-04-20 04:57:49 -04:00
|
|
|
#include "includes.h"
|
|
|
|
|
2018-02-25 06:12:34 -05:00
|
|
|
using spdlog::details::file_helper;
|
2018-03-09 08:26:33 -05:00
|
|
|
using spdlog::details::log_msg;
|
2016-04-20 04:57:49 -04:00
|
|
|
|
|
|
|
static const std::string target_filename = "logs/file_helper_test.txt";
|
|
|
|
|
|
|
|
static void write_with_helper(file_helper &helper, size_t howmany)
|
|
|
|
{
|
|
|
|
log_msg msg;
|
|
|
|
msg.formatted << std::string(howmany, '1');
|
|
|
|
helper.write(msg);
|
2016-10-12 16:08:44 -04:00
|
|
|
helper.flush();
|
2016-04-20 04:57:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("file_helper_filename", "[file_helper::filename()]]")
|
|
|
|
{
|
|
|
|
prepare_logdir();
|
|
|
|
|
2016-09-17 17:43:42 -04:00
|
|
|
file_helper helper;
|
2016-04-20 04:57:49 -04:00
|
|
|
helper.open(target_filename);
|
|
|
|
REQUIRE(helper.filename() == target_filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("file_helper_size", "[file_helper::size()]]")
|
|
|
|
{
|
|
|
|
prepare_logdir();
|
2016-07-15 11:41:59 -04:00
|
|
|
size_t expected_size = 123;
|
2016-04-20 04:57:49 -04:00
|
|
|
{
|
2016-09-17 17:43:42 -04:00
|
|
|
file_helper helper;
|
2016-04-20 04:57:49 -04:00
|
|
|
helper.open(target_filename);
|
|
|
|
write_with_helper(helper, expected_size);
|
2016-07-15 11:41:59 -04:00
|
|
|
REQUIRE(static_cast<size_t>(helper.size()) == expected_size);
|
2016-04-20 04:57:49 -04:00
|
|
|
}
|
|
|
|
REQUIRE(get_filesize(target_filename) == expected_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("file_helper_exists", "[file_helper::file_exists()]]")
|
|
|
|
{
|
|
|
|
prepare_logdir();
|
|
|
|
REQUIRE(!file_helper::file_exists(target_filename));
|
2016-10-12 16:08:44 -04:00
|
|
|
file_helper helper;
|
2016-04-20 04:57:49 -04:00
|
|
|
helper.open(target_filename);
|
|
|
|
REQUIRE(file_helper::file_exists(target_filename));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("file_helper_reopen", "[file_helper::reopen()]]")
|
|
|
|
{
|
|
|
|
prepare_logdir();
|
2016-09-17 17:43:42 -04:00
|
|
|
file_helper helper;
|
2016-04-20 04:57:49 -04:00
|
|
|
helper.open(target_filename);
|
|
|
|
write_with_helper(helper, 12);
|
|
|
|
REQUIRE(helper.size() == 12);
|
|
|
|
helper.reopen(true);
|
|
|
|
REQUIRE(helper.size() == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("file_helper_reopen2", "[file_helper::reopen(false)]]")
|
|
|
|
{
|
|
|
|
prepare_logdir();
|
2016-07-30 12:32:51 -04:00
|
|
|
size_t expected_size = 14;
|
2016-10-12 16:08:44 -04:00
|
|
|
file_helper helper;
|
2016-04-20 04:57:49 -04:00
|
|
|
helper.open(target_filename);
|
|
|
|
write_with_helper(helper, expected_size);
|
|
|
|
REQUIRE(helper.size() == expected_size);
|
|
|
|
helper.reopen(false);
|
|
|
|
REQUIRE(helper.size() == expected_size);
|
|
|
|
}
|
|
|
|
|
2018-03-09 08:26:33 -05:00
|
|
|
static void test_split_ext(const char *fname, const char *expect_base, const char *expect_ext)
|
2017-12-22 11:55:19 -05:00
|
|
|
{
|
|
|
|
spdlog::filename_t filename(fname);
|
|
|
|
spdlog::filename_t expected_base(expect_base);
|
|
|
|
spdlog::filename_t expected_ext(expect_ext);
|
2017-11-30 20:40:49 -05:00
|
|
|
|
2017-12-22 11:37:51 -05:00
|
|
|
#ifdef _WIN32 // replace folder sep
|
2017-12-22 11:55:19 -05:00
|
|
|
std::replace(filename.begin(), filename.end(), '/', '\\');
|
|
|
|
std::replace(expected_base.begin(), expected_base.end(), '/', '\\');
|
2017-11-30 20:40:49 -05:00
|
|
|
#endif
|
2017-12-22 11:55:19 -05:00
|
|
|
spdlog::filename_t basename, ext;
|
|
|
|
std::tie(basename, ext) = file_helper::split_by_extenstion(filename);
|
|
|
|
REQUIRE(basename == expected_base);
|
|
|
|
REQUIRE(ext == expected_ext);
|
2017-11-30 20:40:49 -05:00
|
|
|
}
|
|
|
|
|
2017-12-22 11:37:51 -05:00
|
|
|
TEST_CASE("file_helper_split_by_extenstion", "[file_helper::split_by_extenstion()]]")
|
2017-12-22 11:55:19 -05:00
|
|
|
{
|
|
|
|
test_split_ext("mylog.txt", "mylog", ".txt");
|
|
|
|
test_split_ext(".mylog.txt", ".mylog", ".txt");
|
|
|
|
test_split_ext(".mylog", ".mylog", "");
|
|
|
|
test_split_ext("/aaa/bb.d/mylog", "/aaa/bb.d/mylog", "");
|
|
|
|
test_split_ext("/aaa/bb.d/mylog.txt", "/aaa/bb.d/mylog", ".txt");
|
|
|
|
test_split_ext("aaa/bbb/ccc/mylog.txt", "aaa/bbb/ccc/mylog", ".txt");
|
|
|
|
test_split_ext("aaa/bbb/ccc/mylog.", "aaa/bbb/ccc/mylog.", "");
|
|
|
|
test_split_ext("aaa/bbb/ccc/.mylog.txt", "aaa/bbb/ccc/.mylog", ".txt");
|
|
|
|
test_split_ext("/aaa/bbb/ccc/mylog.txt", "/aaa/bbb/ccc/mylog", ".txt");
|
|
|
|
test_split_ext("/aaa/bbb/ccc/.mylog", "/aaa/bbb/ccc/.mylog", "");
|
|
|
|
test_split_ext("../mylog.txt", "../mylog", ".txt");
|
|
|
|
test_split_ext(".././mylog.txt", ".././mylog", ".txt");
|
|
|
|
test_split_ext(".././mylog.txt/xxx", ".././mylog.txt/xxx", "");
|
|
|
|
test_split_ext("/mylog.txt", "/mylog", ".txt");
|
|
|
|
test_split_ext("//mylog.txt", "//mylog", ".txt");
|
|
|
|
test_split_ext("", "", "");
|
|
|
|
test_split_ext(".", ".", "");
|
|
|
|
test_split_ext("..txt", ".", ".txt");
|
2017-12-22 04:52:50 -05:00
|
|
|
}
|