blob: df4ac3fcae945577b8c91558cba7ad988a5adea3 [file] [log] [blame]
#include "snmp_conf_manager.hpp"
#include "snmp_serialize.hpp"
#include <xyz/openbmc_project/Common/error.hpp>
#include <gtest/gtest.h>
namespace phosphor
{
namespace network
{
namespace snmp
{
using InvalidArgument =
sdbusplus::xyz::openbmc_project::Common::Error::InvalidArgument;
auto mgrObjPath = "/xyz/openbmc_test/snmp/manager";
class TestSNMPClient : public testing::Test
{
public:
sdbusplus::bus_t bus;
ConfManager manager;
TestSNMPClient() :
bus(sdbusplus::bus::new_default()), manager(bus, mgrObjPath)
{
char tmp[] = "/tmp/snmpClient.XXXXXX";
auto confDir = mkdtemp(tmp);
manager.dbusPersistentLocation = confDir;
}
~TestSNMPClient()
{
fs::remove_all(manager.dbusPersistentLocation);
}
};
TEST_F(TestSNMPClient, UpdateProperty)
{
std::string objPath = mgrObjPath;
objPath += "/" + std::to_string(1);
Client client(bus, objPath.c_str(), manager, "1.1.1.1", 202);
EXPECT_EQ(client.address(), "1.1.1.1");
EXPECT_EQ(client.port(), 202);
client.address("2.2.2.2");
EXPECT_EQ(client.address(), "2.2.2.2");
client.port(404);
EXPECT_EQ(client.port(), 404);
}
TEST_F(TestSNMPClient, AddEmptyAddress)
{
std::string objPath = mgrObjPath;
objPath += "/" + std::to_string(1);
Client client(bus, objPath.c_str(), manager, "1.1.1.1", 202);
EXPECT_EQ(client.address(), "1.1.1.1");
EXPECT_EQ(client.port(), 202);
EXPECT_THROW(client.address(""), InvalidArgument);
}
TEST_F(TestSNMPClient, CheckPersistency)
{
std::string objPath = mgrObjPath;
objPath += "/" + std::to_string(1);
std::string objPath2 = mgrObjPath;
objPath2 += "/" + std::to_string(2);
Client client(bus, objPath.c_str(), manager, "1.1.1.1", 23);
client.address("2.2.2.2");
Client restoreClient(bus, objPath2.c_str(), manager);
auto persistentPath = manager.dbusPersistentLocation;
persistentPath += "/1";
deserialize(persistentPath, restoreClient);
EXPECT_EQ("2.2.2.2", restoreClient.address());
EXPECT_EQ(23, restoreClient.port());
}
} // namespace snmp
} // namespace network
} // namespace phosphor