mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
22 lines
862 B
C++
22 lines
862 B
C++
#include <trantor/net/InetAddress.h>
|
|
#include <gtest/gtest.h>
|
|
#include <string>
|
|
#include <iostream>
|
|
using namespace trantor;
|
|
TEST(InetAddress, innerIpTest)
|
|
{
|
|
EXPECT_EQ(true, InetAddress("192.168.0.1", 0).isIntranetIp());
|
|
EXPECT_EQ(true, InetAddress("192.168.12.1", 0).isIntranetIp());
|
|
EXPECT_EQ(true, InetAddress("10.168.0.1", 0).isIntranetIp());
|
|
EXPECT_EQ(true, InetAddress("10.0.0.1", 0).isIntranetIp());
|
|
EXPECT_EQ(true, InetAddress("172.31.10.1", 0).isIntranetIp());
|
|
EXPECT_EQ(true, InetAddress("127.0.0.1", 0).isIntranetIp());
|
|
EXPECT_EQ(true, InetAddress("example.com", 0).isUnspecified());
|
|
EXPECT_EQ(false, InetAddress("127.0.0.2", 0).isUnspecified());
|
|
EXPECT_EQ(false, InetAddress("0.0.0.0", 0).isUnspecified());
|
|
}
|
|
int main(int argc, char **argv)
|
|
{
|
|
testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
} |