aboutsummaryrefslogtreecommitdiffstats
path: root/util/network/ip_ut.cpp
diff options
context:
space:
mode:
authorakhropov <akhropov@yandex-team.ru>2022-02-10 16:46:32 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:32 +0300
commit00afc96e9c0298054b7386fa7fb9e3cc3d67b974 (patch)
treecb7a9f4a92c0d4cc5a86eeed49ad71e810953c1f /util/network/ip_ut.cpp
parent83a8efcf3af051e3dd59c00d1d5dafc96412ec1e (diff)
downloadydb-00afc96e9c0298054b7386fa7fb9e3cc3d67b974.tar.gz
Restoring authorship annotation for <akhropov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/network/ip_ut.cpp')
-rw-r--r--util/network/ip_ut.cpp58
1 files changed, 29 insertions, 29 deletions
diff --git a/util/network/ip_ut.cpp b/util/network/ip_ut.cpp
index 6716c6a699..753d62cd0e 100644
--- a/util/network/ip_ut.cpp
+++ b/util/network/ip_ut.cpp
@@ -1,10 +1,10 @@
#include "ip.h"
#include <library/cpp/testing/unittest/registar.h>
-
+
#include <util/generic/yexception.h>
-
-class TSysIpTest: public TTestBase {
+
+class TSysIpTest: public TTestBase {
UNIT_TEST_SUITE(TSysIpTest);
UNIT_TEST(TestIpFromString);
UNIT_TEST_EXCEPTION(TestIpFromString2, yexception);
@@ -21,43 +21,43 @@ private:
void TestIpFromString4();
void TestIpFromString5();
void TestIpToString();
-};
-
-UNIT_TEST_SUITE_REGISTRATION(TSysIpTest);
-
+};
+
+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}};
-
+ 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);
- }
-}
-
+ 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"};
-
+}
+
+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]);
- }
-}
+ }
+}