blob: 2b9e49a7e18c48ff7d80e6319e8f0823285a26b4 [file] [log] [blame]
Sampa Misra032bd502019-03-06 05:03:22 -06001#include "libpldmresponder/bios.hpp"
Sampa Misrab37be312019-07-03 02:26:41 -05002#include "libpldmresponder/bios_table.hpp"
Sampa Misra032bd502019-03-06 05:03:22 -06003
George Liuc453e162022-12-21 17:16:23 +08004#include <libpldm/base.h>
5#include <libpldm/bios.h>
Sampa Misra032bd502019-03-06 05:03:22 -06006#include <string.h>
7
8#include <array>
John Wang02700402019-10-06 16:34:29 +08009#include <cstring>
Sampa Misra032bd502019-03-06 05:03:22 -060010#include <ctime>
Sampa Misrab37be312019-07-03 02:26:41 -050011#include <filesystem>
Sampa Misra032bd502019-03-06 05:03:22 -060012
Sampa Misra032bd502019-03-06 05:03:22 -060013#include <gtest/gtest.h>
14
Sampa Misrab37be312019-07-03 02:26:41 -050015using namespace pldm;
Sampa Misra032bd502019-03-06 05:03:22 -060016using namespace pldm::responder;
Sampa Misrab37be312019-07-03 02:26:41 -050017using namespace pldm::responder::bios;
Sampa Misra032bd502019-03-06 05:03:22 -060018using namespace pldm::responder::utils;
19
20TEST(epochToBCDTime, testTime)
21{
22 struct tm time
George Liu6492f522020-06-16 10:34:05 +080023 {};
Sampa Misra032bd502019-03-06 05:03:22 -060024 time.tm_year = 119;
25 time.tm_mon = 3;
26 time.tm_mday = 13;
27 time.tm_hour = 5;
28 time.tm_min = 18;
29 time.tm_sec = 13;
30 time.tm_isdst = -1;
31
32 time_t epochTime = mktime(&time);
33 uint8_t seconds = 0;
34 uint8_t minutes = 0;
35 uint8_t hours = 0;
36 uint8_t day = 0;
37 uint8_t month = 0;
38 uint16_t year = 0;
39
40 epochToBCDTime(epochTime, seconds, minutes, hours, day, month, year);
41
42 ASSERT_EQ(0x13, seconds);
43 ASSERT_EQ(0x18, minutes);
44 ASSERT_EQ(0x5, hours);
45 ASSERT_EQ(0x13, day);
46 ASSERT_EQ(0x4, month);
47 ASSERT_EQ(0x2019, year);
48}
Tom Joseph52552ef2019-06-20 09:50:15 +053049
Xiaochao Ma60227a02019-12-04 09:00:12 +080050TEST(timeToEpoch, testTime0)
51{
52 std::time_t ret = 1555132693;
53
54 uint8_t sec = 13;
55 uint8_t min = 18;
56 uint8_t hours = 5;
57 uint8_t day = 13;
58 uint8_t month = 4;
59 uint16_t year = 2019;
60
61 std::time_t timeSec = 0;
62 timeSec = timeToEpoch(sec, min, hours, day, month, year);
63
64 EXPECT_EQ(ret, timeSec);
Patrick Williams6da4f912023-05-10 07:50:53 -050065}