diff options
author | Devtools Arcadia <arcadia-devtools@yandex-team.ru> | 2022-02-07 18:08:42 +0300 |
---|---|---|
committer | Devtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net> | 2022-02-07 18:08:42 +0300 |
commit | 1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch) | |
tree | e26c9fed0de5d9873cce7e00bc214573dc2195b7 /util/network/ip_ut.cpp | |
download | ydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz |
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'util/network/ip_ut.cpp')
-rw-r--r-- | util/network/ip_ut.cpp | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/util/network/ip_ut.cpp b/util/network/ip_ut.cpp new file mode 100644 index 0000000000..6716c6a699 --- /dev/null +++ b/util/network/ip_ut.cpp @@ -0,0 +1,63 @@ +#include "ip.h" + +#include <library/cpp/testing/unittest/registar.h> + +#include <util/generic/yexception.h> + +class TSysIpTest: public TTestBase { + UNIT_TEST_SUITE(TSysIpTest); + UNIT_TEST(TestIpFromString); + UNIT_TEST_EXCEPTION(TestIpFromString2, yexception); + UNIT_TEST_EXCEPTION(TestIpFromString3, yexception); + UNIT_TEST_EXCEPTION(TestIpFromString4, yexception); + UNIT_TEST_EXCEPTION(TestIpFromString5, yexception); + UNIT_TEST(TestIpToString); + UNIT_TEST_SUITE_END(); + +private: + void TestIpFromString(); + void TestIpFromString2(); + void TestIpFromString3(); + void TestIpFromString4(); + void TestIpFromString5(); + void TestIpToString(); +}; + +UNIT_TEST_SUITE_REGISTRATION(TSysIpTest); + +void TSysIpTest::TestIpFromString() { + const char* ipStr[] = {"192.168.0.1", "87.255.18.167", "255.255.0.31", "188.225.124.255"}; + ui8 ipArr[][4] = {{192, 168, 0, 1}, {87, 255, 18, 167}, {255, 255, 0, 31}, {188, 225, 124, 255}}; + + for (size_t i = 0; i < Y_ARRAY_SIZE(ipStr); ++i) { + const ui32 ip = IpFromString(ipStr[i]); + + UNIT_ASSERT(memcmp(&ip, ipArr[i], sizeof(ui32)) == 0); + } +} + +void TSysIpTest::TestIpFromString2() { + IpFromString("XXXXXXWXW"); +} + +void TSysIpTest::TestIpFromString3() { + IpFromString("986.0.37.255"); +} + +void TSysIpTest::TestIpFromString4() { + IpFromString("256.0.22.365"); +} + +void TSysIpTest::TestIpFromString5() { + IpFromString("245.12..0"); +} + +void TSysIpTest::TestIpToString() { + ui8 ipArr[][4] = {{192, 168, 0, 1}, {87, 255, 18, 167}, {255, 255, 0, 31}, {188, 225, 124, 255}}; + + const char* ipStr[] = {"192.168.0.1", "87.255.18.167", "255.255.0.31", "188.225.124.255"}; + + for (size_t i = 0; i < Y_ARRAY_SIZE(ipStr); ++i) { + UNIT_ASSERT(IpToString(*reinterpret_cast<TIpHost*>(&(ipArr[i]))) == ipStr[i]); + } +} |