| #include "config_parser.hpp" |
| #include "ipaddress.hpp" |
| #include "mock_network_manager.hpp" |
| #include "mock_syscall.hpp" |
| #include "vlan_interface.hpp" |
| |
| #include <arpa/inet.h> |
| #include <net/if.h> |
| #include <netinet/in.h> |
| |
| #include <filesystem> |
| #include <sdbusplus/bus.hpp> |
| #include <stdplus/gtest/tmp.hpp> |
| |
| #include <gtest/gtest.h> |
| |
| namespace phosphor |
| { |
| namespace network |
| { |
| |
| namespace fs = std::filesystem; |
| |
| class TestVlanInterface : public stdplus::gtest::TestWithTmp |
| { |
| public: |
| sdbusplus::bus_t bus; |
| std::string confDir; |
| MockManager manager; |
| EthernetInterface interface; |
| TestVlanInterface() : |
| bus(sdbusplus::bus::new_default()), confDir(CaseTmpDir()), |
| manager(bus, "/xyz/openbmc_test/network", confDir), |
| interface(makeInterface(bus, manager)) |
| |
| { |
| } |
| |
| static EthernetInterface makeInterface(sdbusplus::bus_t& bus, |
| MockManager& manager) |
| { |
| mock_clear(); |
| mock_addIF("test0", 1); |
| return {bus, |
| "/xyz/openbmc_test/network/test0", |
| EthernetInterface::DHCPConf::none, |
| manager, |
| false, |
| true}; |
| } |
| |
| void createVlan(VlanId id) |
| { |
| std::string ifname = "test0."; |
| ifname += std::to_string(id); |
| mock_addIF(ifname.c_str(), 1000 + id); |
| interface.createVLAN(id); |
| } |
| |
| void deleteVlan(const std::string& interfaceName) |
| { |
| interface.deleteVLANObject(interfaceName); |
| } |
| |
| int countIPObjects() |
| { |
| return interface.getAddresses().size(); |
| } |
| |
| bool isIPObjectExist(const std::string& ipaddress) |
| { |
| auto address = interface.getAddresses().find(ipaddress); |
| if (address == interface.getAddresses().end()) |
| { |
| return false; |
| } |
| return true; |
| } |
| |
| bool deleteIPObject(const std::string& ipaddress) |
| { |
| auto address = interface.getAddresses().find(ipaddress); |
| if (address == interface.getAddresses().end()) |
| { |
| return false; |
| } |
| address->second->delete_(); |
| return true; |
| } |
| |
| void createIPObject(IP::Protocol addressType, const std::string& ipaddress, |
| uint8_t subnetMask, const std::string& gateway) |
| { |
| interface.ip(addressType, ipaddress, subnetMask, gateway); |
| } |
| }; |
| |
| TEST_F(TestVlanInterface, createVLAN) |
| { |
| createVlan(50); |
| fs::path filePath = confDir; |
| filePath /= "test0.50.netdev"; |
| |
| config::Parser parser(filePath.string()); |
| |
| EXPECT_EQ(parser.getValues("NetDev", "Name"), |
| (config::ValueList{"test0.50"})); |
| EXPECT_EQ(parser.getValues("NetDev", "Kind"), (config::ValueList{"vlan"})); |
| EXPECT_EQ(parser.getValues("VLAN", "Id"), (config::ValueList{"50"})); |
| } |
| |
| TEST_F(TestVlanInterface, deleteVLAN) |
| { |
| createVlan(50); |
| deleteVlan("test0.50"); |
| bool fileFound = false; |
| |
| fs::path filePath = confDir; |
| filePath /= "test0.50.netdev"; |
| if (fs::is_regular_file(filePath.string())) |
| { |
| fileFound = true; |
| } |
| EXPECT_EQ(fileFound, false); |
| } |
| |
| TEST_F(TestVlanInterface, createMultipleVLAN) |
| { |
| createVlan(50); |
| createVlan(60); |
| |
| fs::path filePath = confDir; |
| filePath /= "test0.50.netdev"; |
| config::Parser parser(filePath.string()); |
| EXPECT_EQ(parser.getValues("NetDev", "Name"), |
| (config::ValueList{"test0.50"})); |
| EXPECT_EQ(parser.getValues("NetDev", "Kind"), (config::ValueList{"vlan"})); |
| EXPECT_EQ(parser.getValues("VLAN", "Id"), (config::ValueList{"50"})); |
| |
| filePath = confDir; |
| filePath /= "test0.60.netdev"; |
| parser.setFile(filePath.string()); |
| EXPECT_EQ(parser.getValues("NetDev", "Name"), |
| (config::ValueList{"test0.60"})); |
| EXPECT_EQ(parser.getValues("NetDev", "Kind"), (config::ValueList{"vlan"})); |
| EXPECT_EQ(parser.getValues("VLAN", "Id"), (config::ValueList{"60"})); |
| |
| deleteVlan("test0.50"); |
| deleteVlan("test0.60"); |
| } |
| |
| } // namespace network |
| } // namespace phosphor |