Ratan Gupta | 9d18e56 | 2018-11-16 17:19:34 +0530 | [diff] [blame^] | 1 | #include <gtest/gtest.h> |
| 2 | |
| 3 | #include <xyz/openbmc_project/Common/error.hpp> |
| 4 | |
| 5 | #include "snmp_conf_manager.hpp" |
| 6 | #include "snmp_serialize.hpp" |
| 7 | |
| 8 | namespace phosphor |
| 9 | { |
| 10 | namespace network |
| 11 | { |
| 12 | namespace snmp |
| 13 | { |
| 14 | |
| 15 | using InvalidArgument = |
| 16 | sdbusplus::xyz::openbmc_project::Common::Error::InvalidArgument; |
| 17 | |
| 18 | auto mgrObjPath = "/xyz/openbmc_test/snmp/manager"; |
| 19 | |
| 20 | class TestSNMPClient : public testing::Test |
| 21 | { |
| 22 | public: |
| 23 | sdbusplus::bus::bus bus; |
| 24 | ConfManager manager; |
| 25 | std::string confDir; |
| 26 | TestSNMPClient() : |
| 27 | bus(sdbusplus::bus::new_default()), manager(bus, mgrObjPath) |
| 28 | { |
| 29 | char tmp[] = "/tmp/snmpClient.XXXXXX"; |
| 30 | std::string confDir = mkdtemp(tmp); |
| 31 | manager.dbusPersistentLocation = confDir; |
| 32 | } |
| 33 | |
| 34 | ~TestSNMPClient() |
| 35 | { |
| 36 | fs::remove_all(manager.dbusPersistentLocation); |
| 37 | } |
| 38 | }; |
| 39 | |
| 40 | TEST_F(TestSNMPClient, UpdateProperty) |
| 41 | { |
| 42 | std::string objPath = mgrObjPath; |
| 43 | objPath += "/" + std::to_string(1); |
| 44 | Client client(bus, objPath.c_str(), manager, "1.1.1.1", 202); |
| 45 | EXPECT_EQ(client.address(), "1.1.1.1"); |
| 46 | EXPECT_EQ(client.port(), 202); |
| 47 | client.address("2.2.2.2"); |
| 48 | EXPECT_EQ(client.address(), "2.2.2.2"); |
| 49 | client.port(404); |
| 50 | EXPECT_EQ(client.port(), 404); |
| 51 | } |
| 52 | |
| 53 | TEST_F(TestSNMPClient, AddEmptyAddress) |
| 54 | { |
| 55 | std::string objPath = mgrObjPath; |
| 56 | objPath += "/" + std::to_string(1); |
| 57 | Client client(bus, objPath.c_str(), manager, "1.1.1.1", 202); |
| 58 | EXPECT_EQ(client.address(), "1.1.1.1"); |
| 59 | EXPECT_EQ(client.port(), 202); |
| 60 | |
| 61 | EXPECT_THROW(client.address(""), InvalidArgument); |
| 62 | } |
| 63 | |
| 64 | TEST_F(TestSNMPClient, CheckPersistency) |
| 65 | { |
| 66 | std::string objPath = mgrObjPath; |
| 67 | objPath += "/" + std::to_string(1); |
| 68 | |
| 69 | Client client(bus, objPath.c_str(), manager, "1.1.1.1", 23); |
| 70 | client.address("2.2.2.2"); |
| 71 | |
| 72 | Client restoreClient(bus, objPath.c_str(), manager); |
| 73 | auto persistentPath = manager.dbusPersistentLocation; |
| 74 | persistentPath += "/1"; |
| 75 | deserialize(persistentPath, restoreClient); |
| 76 | |
| 77 | EXPECT_EQ("2.2.2.2", restoreClient.address()); |
| 78 | EXPECT_EQ(23, restoreClient.port()); |
| 79 | } |
| 80 | |
| 81 | } // namespace snmp |
| 82 | } // namespace network |
| 83 | } // namespace phosphor |