blob: 1a7e74ad7d30a339a565b14689cfcb51ff504382 [file] [log] [blame]
John Wange2efdcc2020-02-12 17:02:06 +08001#include "libpldmresponder/bios_attribute.hpp"
2
3#include <nlohmann/json.hpp>
4
5#include <gtest/gtest.h>
6
7using namespace pldm::responder::bios;
8
9class TestAttribute : public BIOSAttribute
10{
11 public:
12 TestAttribute(const Json& entry, DBusHandler* const dbusHandler) :
13 BIOSAttribute(entry, dbusHandler)
George Liu6492f522020-06-16 10:34:05 +080014 {}
John Wange2efdcc2020-02-12 17:02:06 +080015
16 void setAttrValueOnDbus(const pldm_bios_attr_val_table_entry*,
17 const pldm_bios_attr_table_entry*,
18 const BIOSStringTable&) override
George Liu6492f522020-06-16 10:34:05 +080019 {}
John Wange2efdcc2020-02-12 17:02:06 +080020
21 void constructEntry(const BIOSStringTable&, Table&, Table&) override
George Liu6492f522020-06-16 10:34:05 +080022 {}
John Wange2efdcc2020-02-12 17:02:06 +080023
24 const std::optional<DBusMapping>& getDbusMap()
25 {
26 return dBusMap;
27 }
Sampa Misra46ece062020-03-18 07:17:44 -050028
29 int updateAttrVal(Table& /*newValue*/, uint16_t /*attrHdl*/,
30 uint8_t /*attrType*/,
31 const PropertyValue& /*newPropVal*/) override
32 {
33 return PLDM_SUCCESS;
34 }
George Liu1244acf2020-08-14 09:11:11 +080035
36 void generateAttributeEntry(
37 const std::variant<int64_t, std::string>& /*attributevalue*/,
38 Table& /*attrValueEntry*/)
39 {}
John Wange2efdcc2020-02-12 17:02:06 +080040};
41
42TEST(BIOSAttribute, CtorTest)
43{
44 auto jsonReadOnly = R"({
George Liudaa69232020-09-02 17:22:09 +080045 "attribute_name" : "ReadOnly",
46 "readOnly" : true
John Wange2efdcc2020-02-12 17:02:06 +080047 })"_json;
48
49 TestAttribute readOnly{jsonReadOnly, nullptr};
50 EXPECT_EQ(readOnly.name, "ReadOnly");
51 EXPECT_EQ(readOnly.readOnly, true);
52
53 auto jsonReadOnlyError = R"({
54 "attribute_nam":"ReadOnly"
55 })"_json;
56 using Json = nlohmann::json;
57
58 EXPECT_THROW((TestAttribute{jsonReadOnlyError, nullptr}), Json::exception);
59
60 auto jsonReadWrite = R"({
61 "attribute_name":"ReadWrite",
George Liudaa69232020-09-02 17:22:09 +080062 "readOnly" : false,
John Wange2efdcc2020-02-12 17:02:06 +080063 "dbus":
64 {
65 "object_path" : "/xyz/abc/def",
66 "interface" : "xyz.openbmc.FWBoot.Side",
67 "property_name" : "Side",
68 "property_type" : "bool"
69 }
70 })"_json;
71
72 TestAttribute readWrite{jsonReadWrite, nullptr};
73 EXPECT_EQ(readWrite.name, "ReadWrite");
74 EXPECT_EQ(readWrite.readOnly, false);
75 auto dbusMap = readWrite.getDbusMap();
76 EXPECT_NE(dbusMap, std::nullopt);
77 EXPECT_EQ(dbusMap->objectPath, "/xyz/abc/def");
78 EXPECT_EQ(dbusMap->interface, "xyz.openbmc.FWBoot.Side");
79 EXPECT_EQ(dbusMap->propertyName, "Side");
80 EXPECT_EQ(dbusMap->propertyType, "bool");
Sampa Misra46ece062020-03-18 07:17:44 -050081}