// // SocketAddressTest.cpp // // Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // // SPDX-License-Identifier: BSL-1.0 // #include "SocketAddressTest.h" #include "CppUnit/TestCaller.h" #include "CppUnit/TestSuite.h" #include "Poco/Path.h" #include "Poco/Net/SocketAddress.h" #include "Poco/Net/NetException.h" #include using Poco::Net::SocketAddress; using Poco::Net::IPAddress; using Poco::Net::InvalidAddressException; using Poco::Net::HostNotFoundException; using Poco::Net::ServiceNotFoundException; using Poco::Net::NoAddressFoundException; using Poco::Net::AddressFamilyMismatchException; using Poco::Path; using Poco::InvalidArgumentException; SocketAddressTest::SocketAddressTest(const std::string& name): CppUnit::TestCase(name) { } SocketAddressTest::~SocketAddressTest() { } void SocketAddressTest::testSocketAddress() { SocketAddress wild; assertTrue (wild.host().isWildcard()); assertTrue (wild.port() == 0); SocketAddress sa01 = SocketAddress("192.168.1.100", 100); SocketAddress sa1(std::move(sa01)); assertTrue (sa1.af() == AF_INET); assertTrue (sa1.family() == SocketAddress::IPv4); assertTrue (sa1.host().toString() == "192.168.1.100"); assertTrue (sa1.port() == 100); assertTrue (sa1.toString() == "192.168.1.100:100"); SocketAddress sa02 = SocketAddress("192.168.1.100", "100"); SocketAddress sa2(std::move(sa02)); assertTrue (sa2.host().toString() == "192.168.1.100"); assertTrue (sa2.port() == 100); SocketAddress sa03 = SocketAddress("192.168.1.100", "ftp"); SocketAddress sa3(std::move(sa03)); assertTrue (sa3.host().toString() == "192.168.1.100"); assertTrue (sa3.port() == 21); try { SocketAddress sa3("192.168.1.100", "f00bar"); fail("bad service name - must throw"); } catch (ServiceNotFoundException&) { } SocketAddress sa04 = SocketAddress("pocoproject.org", 80); SocketAddress sa4(std::move(sa04)); assertTrue (sa4.host().toString() == "157.90.17.168"); assertTrue (sa4.port() == 80); try { SocketAddress sa5("192.168.2.260", 80); fail("invalid address - must throw"); } catch (HostNotFoundException&) { } catch (NoAddressFoundException&) { } try { SocketAddress sa6("192.168.2.120", "80000"); fail("invalid port - must throw"); } catch (ServiceNotFoundException&) { } SocketAddress sa07 = SocketAddress("192.168.2.120:88"); SocketAddress sa7(std::move(sa07)); assertTrue (sa7.host().toString() == "192.168.2.120"); assertTrue (sa7.port() == 88); SocketAddress sa08 = SocketAddress("[192.168.2.120]:88"); SocketAddress sa8(std::move(sa08)); assertTrue (sa8.host().toString() == "192.168.2.120"); assertTrue (sa8.port() == 88); try { SocketAddress sa9("[192.168.2.260]"); fail("invalid address - must throw"); } catch (InvalidArgumentException&) { } try { SocketAddress sa9("[192.168.2.260:88"); fail("invalid address - must throw"); } catch (InvalidArgumentException&) { } SocketAddress sa10("www6.pocoproject.org", 80); assertTrue (sa10.host().toString() == "54.93.62.90" || sa10.host().toString() == "2001:4801:7828:101:be76:4eff:fe10:1455"); SocketAddress sa011 = SocketAddress(SocketAddress::IPv4, "www6.pocoproject.org", 80); SocketAddress sa11(std::move(sa011)); assertTrue (sa11.host().toString() == "54.93.62.90"); #ifdef POCO_HAVE_IPv6 try { SocketAddress sa12(SocketAddress::IPv6, "www6.pocoproject.org", 80); assertTrue (sa12.host().toString() == "2001:4801:7828:101:be76:4eff:fe10:1455"); } catch (AddressFamilyMismatchException&) { // may happen if no IPv6 address is configured on the system } #endif } void SocketAddressTest::testSocketRelationals() { SocketAddress sa1("192.168.1.100", 100); SocketAddress sa2("192.168.1.100:100"); assertTrue (sa1 == sa2); SocketAddress sa3("192.168.1.101", "99"); assertTrue (sa2 < sa3); SocketAddress sa4("192.168.1.101", "102"); assertTrue (sa3 < sa4); } void SocketAddressTest::testSocketAddress6() { #ifdef POCO_HAVE_IPv6 SocketAddress sa1("FE80::E6CE:8FFF:FE4A:EDD0", 100); assertTrue (sa1.af() == AF_INET6); assertTrue (sa1.family() == SocketAddress::IPv6); assertTrue (sa1.host().toString() == "fe80::e6ce:8fff:fe4a:edd0"); assertTrue (sa1.port() == 100); assertTrue (sa1.toString() == "[fe80::e6ce:8fff:fe4a:edd0]:100"); SocketAddress sa2("[FE80::E6CE:8FFF:FE4A:EDD0]:100"); assertTrue (sa2.af() == AF_INET6); assertTrue (sa2.family() == SocketAddress::IPv6); assertTrue (sa2.host().toString() == "fe80::e6ce:8fff:fe4a:edd0"); assertTrue (sa2.port() == 100); assertTrue (sa2.toString() == "[fe80::e6ce:8fff:fe4a:edd0]:100"); #else std::cout << "[IPv6 DISABLED]" << std::endl; #endif } void SocketAddressTest::testSocketAddressUnixLocal() { #ifdef POCO_HAS_UNIX_SOCKET std::string name1 = Path::tempHome() + "sock1"; SocketAddress sa1(SocketAddress::UNIX_LOCAL, name1); assertTrue (sa1.af() == AF_UNIX); assertTrue (sa1.family() == SocketAddress::UNIX_LOCAL); assertTrue (sa1.toString() == name1); std::string name2 = Path::tempHome() + "sock2"; SocketAddress sa2(SocketAddress::UNIX_LOCAL, name2); assertTrue (sa1 != sa2); assertTrue (sa1 < sa2); SocketAddress sa3(SocketAddress::UNIX_LOCAL, name1); assertTrue (sa1 == sa3); assertTrue (!(sa1 < sa3)); SocketAddress sa4(name1); assertTrue (sa1 == sa4); assertTrue (sa4.toString() == name1); #else std::cout << "[UNIX LOCAL SOCKET DISABLED]" << std::endl; #endif } void SocketAddressTest::setUp() { } void SocketAddressTest::tearDown() { } CppUnit::Test* SocketAddressTest::suite() { CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("SocketAddressTest"); CppUnit_addTest(pSuite, SocketAddressTest, testSocketAddress); CppUnit_addTest(pSuite, SocketAddressTest, testSocketRelationals); CppUnit_addTest(pSuite, SocketAddressTest, testSocketAddress6); CppUnit_addTest(pSuite, SocketAddressTest, testSocketAddressUnixLocal); return pSuite; }