blob: 84fb661dfd9e53dad0b06f7f6e14bef3f78c7129 [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",
George Liu92bb4022020-09-03 14:58:24 +080046 "readOnly" : true,
47 "helpText" : "HelpText",
48 "displayName" : "DisplayName"
John Wange2efdcc2020-02-12 17:02:06 +080049 })"_json;
50
51 TestAttribute readOnly{jsonReadOnly, nullptr};
52 EXPECT_EQ(readOnly.name, "ReadOnly");
53 EXPECT_EQ(readOnly.readOnly, true);
54
55 auto jsonReadOnlyError = R"({
56 "attribute_nam":"ReadOnly"
57 })"_json;
58 using Json = nlohmann::json;
59
60 EXPECT_THROW((TestAttribute{jsonReadOnlyError, nullptr}), Json::exception);
61
62 auto jsonReadWrite = R"({
63 "attribute_name":"ReadWrite",
George Liudaa69232020-09-02 17:22:09 +080064 "readOnly" : false,
George Liu92bb4022020-09-03 14:58:24 +080065 "helpText" : "HelpText",
66 "displayName" : "DisplayName",
John Wange2efdcc2020-02-12 17:02:06 +080067 "dbus":
68 {
69 "object_path" : "/xyz/abc/def",
70 "interface" : "xyz.openbmc.FWBoot.Side",
71 "property_name" : "Side",
72 "property_type" : "bool"
73 }
74 })"_json;
75
76 TestAttribute readWrite{jsonReadWrite, nullptr};
77 EXPECT_EQ(readWrite.name, "ReadWrite");
78 EXPECT_EQ(readWrite.readOnly, false);
79 auto dbusMap = readWrite.getDbusMap();
80 EXPECT_NE(dbusMap, std::nullopt);
81 EXPECT_EQ(dbusMap->objectPath, "/xyz/abc/def");
82 EXPECT_EQ(dbusMap->interface, "xyz.openbmc.FWBoot.Side");
83 EXPECT_EQ(dbusMap->propertyName, "Side");
84 EXPECT_EQ(dbusMap->propertyType, "bool");
George Liu92bb4022020-09-03 14:58:24 +080085
86 auto jsonReadWriteError = R"({
87 "attribute_name":"ReadWrite",
88 "dbus":
89 {
90 "object_path" : "/xyz/abc/def",
91 "interface" : "xyz.openbmc.FWBoot.Side",
92 "property_name" : "Side"
93 }
94 })"_json; // missing property_type.
95
96 EXPECT_THROW((TestAttribute{jsonReadWriteError, nullptr}), Json::exception);
Sampa Misra46ece062020-03-18 07:17:44 -050097}