blob: cce0a92fc69bc0eebaf58ad4bd8497623481b230 [file] [log] [blame]
Kamalkumar Patel14107a12024-06-19 08:50:01 -05001#include "../dbus/custom_dbus.hpp"
George Liu682ee182020-12-25 15:24:33 +08002
3#include <gtest/gtest.h>
4
5using namespace pldm::dbus;
6TEST(CustomDBus, LocationCode)
7{
8 std::string tmpPath = "/abc/def";
9 std::string locationCode = "testLocationCode";
10
11 CustomDBus::getCustomDBus().setLocationCode(tmpPath, locationCode);
12 auto retLocationCode = CustomDBus::getCustomDBus().getLocationCode(tmpPath);
13
14 EXPECT_NE(retLocationCode, std::nullopt);
15 EXPECT_EQ(locationCode, retLocationCode);
16}
Kamalkumar Patel56da5742024-05-23 04:53:07 -050017
18TEST(CustomDBus, MicroCode)
19{
20 std::string tmpPath = "/abc/def";
21 uint32_t value = 32;
22
23 CustomDBus::getCustomDBus().setMicroCode(tmpPath, value);
24 auto retMicroCode = CustomDBus::getCustomDBus().getMicroCode(tmpPath);
25
26 EXPECT_NE(retMicroCode, std::nullopt);
27 EXPECT_EQ(value, retMicroCode);
28}