2016-04-20 16:57:49 +08:00
|
|
|
/*
|
2018-03-09 21:26:33 +08:00
|
|
|
* This content is released under the MIT License as specified in https://raw.githubusercontent.com/gabime/spdlog/master/LICENSE
|
|
|
|
*/
|
2016-04-20 16:57:49 +08:00
|
|
|
#include "includes.h"
|
|
|
|
|
2021-01-07 07:55:57 +08:00
|
|
|
#define TEST_FILENAME "test_logs/file_helper_test.txt"
|
|
|
|
|
2018-02-25 19:12:34 +08:00
|
|
|
using spdlog::details::file_helper;
|
2016-04-20 16:57:49 +08:00
|
|
|
|
|
|
|
static void write_with_helper(file_helper &helper, size_t howmany)
|
|
|
|
{
|
2019-08-28 23:46:09 +08:00
|
|
|
spdlog::memory_buf_t formatted;
|
2018-06-24 06:32:39 +08:00
|
|
|
fmt::format_to(formatted, "{}", std::string(howmany, '1'));
|
|
|
|
helper.write(formatted);
|
2016-10-13 04:08:44 +08:00
|
|
|
helper.flush();
|
2016-04-20 16:57:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("file_helper_filename", "[file_helper::filename()]]")
|
|
|
|
{
|
|
|
|
prepare_logdir();
|
|
|
|
|
2016-09-18 05:43:42 +08:00
|
|
|
file_helper helper;
|
2021-01-07 07:55:57 +08:00
|
|
|
spdlog::filename_t target_filename = SPDLOG_FILENAME_T(TEST_FILENAME);
|
2016-04-20 16:57:49 +08:00
|
|
|
helper.open(target_filename);
|
|
|
|
REQUIRE(helper.filename() == target_filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("file_helper_size", "[file_helper::size()]]")
|
|
|
|
{
|
|
|
|
prepare_logdir();
|
2021-01-07 07:55:57 +08:00
|
|
|
spdlog::filename_t target_filename = SPDLOG_FILENAME_T(TEST_FILENAME);
|
2016-07-15 23:41:59 +08:00
|
|
|
size_t expected_size = 123;
|
2016-04-20 16:57:49 +08:00
|
|
|
{
|
2016-09-18 05:43:42 +08:00
|
|
|
file_helper helper;
|
2016-04-20 16:57:49 +08:00
|
|
|
helper.open(target_filename);
|
|
|
|
write_with_helper(helper, expected_size);
|
2016-07-15 23:41:59 +08:00
|
|
|
REQUIRE(static_cast<size_t>(helper.size()) == expected_size);
|
2016-04-20 16:57:49 +08:00
|
|
|
}
|
2021-01-07 07:55:57 +08:00
|
|
|
REQUIRE(get_filesize(TEST_FILENAME) == expected_size);
|
2016-04-20 16:57:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("file_helper_reopen", "[file_helper::reopen()]]")
|
|
|
|
{
|
|
|
|
prepare_logdir();
|
2021-01-07 07:55:57 +08:00
|
|
|
spdlog::filename_t target_filename = SPDLOG_FILENAME_T(TEST_FILENAME);
|
2016-09-18 05:43:42 +08:00
|
|
|
file_helper helper;
|
2016-04-20 16:57:49 +08:00
|
|
|
helper.open(target_filename);
|
|
|
|
write_with_helper(helper, 12);
|
2020-04-29 19:50:25 +08:00
|
|
|
REQUIRE(helper.size() == 12);
|
2016-04-20 16:57:49 +08:00
|
|
|
helper.reopen(true);
|
|
|
|
REQUIRE(helper.size() == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("file_helper_reopen2", "[file_helper::reopen(false)]]")
|
|
|
|
{
|
|
|
|
prepare_logdir();
|
2021-01-07 07:55:57 +08:00
|
|
|
spdlog::filename_t target_filename = SPDLOG_FILENAME_T(TEST_FILENAME);
|
2016-07-31 00:32:51 +08:00
|
|
|
size_t expected_size = 14;
|
2016-10-13 04:08:44 +08:00
|
|
|
file_helper helper;
|
2016-04-20 16:57:49 +08:00
|
|
|
helper.open(target_filename);
|
|
|
|
write_with_helper(helper, expected_size);
|
|
|
|
REQUIRE(helper.size() == expected_size);
|
|
|
|
helper.reopen(false);
|
|
|
|
REQUIRE(helper.size() == expected_size);
|
|
|
|
}
|
|
|
|
|
2021-01-06 16:55:46 +08:00
|
|
|
static void test_split_ext(const spdlog::filename_t::value_type *fname, const spdlog::filename_t::value_type *expect_base, const spdlog::filename_t::value_type *expect_ext)
|
2017-12-23 00:55:19 +08:00
|
|
|
{
|
|
|
|
spdlog::filename_t filename(fname);
|
|
|
|
spdlog::filename_t expected_base(expect_base);
|
|
|
|
spdlog::filename_t expected_ext(expect_ext);
|
2017-12-01 09:40:49 +08:00
|
|
|
|
2020-04-08 23:17:21 +08:00
|
|
|
spdlog::filename_t basename;
|
|
|
|
spdlog::filename_t ext;
|
2019-01-09 02:09:11 +08:00
|
|
|
std::tie(basename, ext) = file_helper::split_by_extension(filename);
|
2017-12-23 00:55:19 +08:00
|
|
|
REQUIRE(basename == expected_base);
|
|
|
|
REQUIRE(ext == expected_ext);
|
2017-12-01 09:40:49 +08:00
|
|
|
}
|
|
|
|
|
2019-01-09 02:09:11 +08:00
|
|
|
TEST_CASE("file_helper_split_by_extension", "[file_helper::split_by_extension()]]")
|
2017-12-23 00:55:19 +08:00
|
|
|
{
|
2021-01-06 16:55:46 +08:00
|
|
|
test_split_ext(SPDLOG_FILENAME_T("mylog.txt"), SPDLOG_FILENAME_T("mylog"), SPDLOG_FILENAME_T(".txt"));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T(".mylog.txt"), SPDLOG_FILENAME_T(".mylog"), SPDLOG_FILENAME_T(".txt"));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T(".mylog"), SPDLOG_FILENAME_T(".mylog"), SPDLOG_FILENAME_T(""));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T("/aaa/bb.d/mylog"), SPDLOG_FILENAME_T("/aaa/bb.d/mylog"), SPDLOG_FILENAME_T(""));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T("/aaa/bb.d/mylog.txt"), SPDLOG_FILENAME_T("/aaa/bb.d/mylog"), SPDLOG_FILENAME_T(".txt"));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T("aaa/bbb/ccc/mylog.txt"), SPDLOG_FILENAME_T("aaa/bbb/ccc/mylog"), SPDLOG_FILENAME_T(".txt"));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T("aaa/bbb/ccc/mylog."), SPDLOG_FILENAME_T("aaa/bbb/ccc/mylog."), SPDLOG_FILENAME_T(""));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T("aaa/bbb/ccc/.mylog.txt"), SPDLOG_FILENAME_T("aaa/bbb/ccc/.mylog"), SPDLOG_FILENAME_T(".txt"));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T("/aaa/bbb/ccc/mylog.txt"), SPDLOG_FILENAME_T("/aaa/bbb/ccc/mylog"), SPDLOG_FILENAME_T(".txt"));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T("/aaa/bbb/ccc/.mylog"), SPDLOG_FILENAME_T("/aaa/bbb/ccc/.mylog"), SPDLOG_FILENAME_T(""));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T("../mylog.txt"), SPDLOG_FILENAME_T("../mylog"), SPDLOG_FILENAME_T(".txt"));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T(".././mylog.txt"), SPDLOG_FILENAME_T(".././mylog"), SPDLOG_FILENAME_T(".txt"));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T(".././mylog.txt/xxx"), SPDLOG_FILENAME_T(".././mylog.txt/xxx"), SPDLOG_FILENAME_T(""));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T("/mylog.txt"), SPDLOG_FILENAME_T("/mylog"), SPDLOG_FILENAME_T(".txt"));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T("//mylog.txt"), SPDLOG_FILENAME_T("//mylog"), SPDLOG_FILENAME_T(".txt"));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T(""), SPDLOG_FILENAME_T(""), SPDLOG_FILENAME_T(""));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T("."), SPDLOG_FILENAME_T("."), SPDLOG_FILENAME_T(""));
|
|
|
|
test_split_ext(SPDLOG_FILENAME_T("..txt"), SPDLOG_FILENAME_T("."), SPDLOG_FILENAME_T(".txt"));
|
2017-12-22 17:52:50 +08:00
|
|
|
}
|