Added some stopwatch tests

This commit is contained in:
gabime 2020-08-29 03:25:16 +03:00
parent 34f3d29d93
commit d6329b9dce
2 changed files with 71 additions and 35 deletions

View File

@ -32,7 +32,8 @@ set(SPDLOG_UTESTS_SOURCES
test_backtrace.cpp
test_create_dir.cpp
test_cfg.cpp
test_time_point.cpp)
test_time_point.cpp
test_stopwatch.cpp)
if (NOT SPDLOG_NO_EXCEPTIONS)
list(APPEND SPDLOG_UTESTS_SOURCES test_errors.cpp)

35
tests/test_stopwatch.cpp Normal file
View File

@ -0,0 +1,35 @@
#include "includes.h"
#include "test_sink.h"
#include "spdlog/stopwatch.h"
TEST_CASE("stopwatch1", "[stopwatch]")
{
using std::chrono::milliseconds;
milliseconds wait_ms(250);
milliseconds tolerance_ms(250);
spdlog::stopwatch sw;
std::this_thread::sleep_for(wait_ms);
REQUIRE(sw.elapsed() >= wait_ms);
REQUIRE(sw.elapsed() <= wait_ms + tolerance_ms);
}
TEST_CASE("stopwatch2", "[stopwatch]")
{
using spdlog::sinks::test_sink_st;
std::chrono::duration<double> wait_duration(0.250);
std::chrono::duration<double> tolerance_duration(0.250);
auto test_sink = std::make_shared<test_sink_st>();
spdlog::stopwatch sw;
spdlog::logger logger("test-stopwatch", test_sink);
logger.set_pattern("%v");
std::this_thread::sleep_for(wait_duration);
logger.info("{}", sw);
auto val = std::stod(test_sink->lines()[0]);
REQUIRE(val >= wait_duration.count());
REQUIRE(val <= (wait_duration + tolerance_duration).count());
}