#include "parser.hpp" #include "types.hpp" #include "utility/json_utility.hpp" #include #include using namespace vpd; TEST(IsFruPowerOffOnlyTest, PositiveTestCase) { const std::string l_jsonPath{"/usr/local/share/vpd/50001001.json"}; const std::string l_vpdPath{"/sys/bus/spi/drivers/at25/spi12.0/eeprom"}; const nlohmann::json l_parsedJson = jsonUtility::getParsedJson(l_jsonPath); const bool l_result = jsonUtility::isFruPowerOffOnly(l_parsedJson, l_vpdPath); EXPECT_TRUE(l_result); } TEST(IsFruPowerOffOnlyTest, NegativeTestCase) { const std::string l_jsonPath{"/usr/local/share/vpd/50001001.json"}; const std::string l_vpdPath{"/sys/bus/i2c/drivers/at24/4-0050/eeprom"}; const nlohmann::json l_parsedJson = jsonUtility::getParsedJson(l_jsonPath); const bool l_result = jsonUtility::isFruPowerOffOnly(l_parsedJson, l_vpdPath); EXPECT_FALSE(l_result); }