Robin Mueller
a9699ad969
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
22 lines
716 B
C++
22 lines
716 B
C++
|
|
#include <catch2/catch_test_macros.hpp>
|
|
#include <cinttypes>
|
|
|
|
#include "fsfw/timemanager/Clock.h"
|
|
|
|
TEST_CASE("Stamp in Filename", "[Stamp In Filename]") {
|
|
Clock::TimeOfDay_t tod;
|
|
std::string baseName = "verif";
|
|
std::string pathStr = "verif_2022-05-25T16:55:23Z.bin";
|
|
unsigned int underscorePos = pathStr.find_last_of('_');
|
|
std::string stampStr = pathStr.substr(underscorePos + 1);
|
|
float seconds = 0.0;
|
|
char* prefix = nullptr;
|
|
int count =
|
|
sscanf(stampStr.c_str(),
|
|
"%4" SCNu32 "-%2" SCNu32 "-%2" SCNu32 "T%2" SCNu32 ":%2" SCNu32 ":%2" SCNu32 "Z",
|
|
&tod.year, &tod.month, &tod.day, &tod.hour, &tod.minute, &tod.second);
|
|
static_cast<void>(count);
|
|
CHECK(count == 6);
|
|
}
|