diff options
author | vmordovin <vmordovin@yandex-team.ru> | 2022-02-10 16:48:14 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:14 +0300 |
commit | 6a1e535429145ec1ecfbc5f1efd3c95323261fb5 (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /library/cpp/dns/ut/dns_ut.cpp | |
parent | 7c7f9bbcf57e15838d15afa94b31d8254b5d7776 (diff) | |
download | ydb-6a1e535429145ec1ecfbc5f1efd3c95323261fb5.tar.gz |
Restoring authorship annotation for <vmordovin@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/dns/ut/dns_ut.cpp')
-rw-r--r-- | library/cpp/dns/ut/dns_ut.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/library/cpp/dns/ut/dns_ut.cpp b/library/cpp/dns/ut/dns_ut.cpp index fc5a356b57..aae05a742c 100644 --- a/library/cpp/dns/ut/dns_ut.cpp +++ b/library/cpp/dns/ut/dns_ut.cpp @@ -1,6 +1,6 @@ #include <library/cpp/testing/unittest/registar.h> #include <library/cpp/dns/cache.h> -#include <util/network/address.h> +#include <util/network/address.h> Y_UNIT_TEST_SUITE(TestDNS) { using namespace NDns; @@ -8,18 +8,18 @@ Y_UNIT_TEST_SUITE(TestDNS) { Y_UNIT_TEST(TestMagic) { UNIT_ASSERT_EXCEPTION(CachedThrResolve(TResolveInfo("?", 80)), yexception); } - + Y_UNIT_TEST(TestAsteriskAlias) { - AddHostAlias("*", "localhost"); - const TResolvedHost* rh = CachedThrResolve(TResolveInfo("yandex.ru", 80)); - UNIT_ASSERT(rh != nullptr); - + AddHostAlias("*", "localhost"); + const TResolvedHost* rh = CachedThrResolve(TResolveInfo("yandex.ru", 80)); + UNIT_ASSERT(rh != nullptr); + const TNetworkAddress& addr = rh->Addr; - for (TNetworkAddress::TIterator ai = addr.Begin(); ai != addr.End(); ai++) { - if (ai->ai_family == AF_INET || ai->ai_family == AF_INET6) { - NAddr::TAddrInfo info(&*ai); - UNIT_ASSERT(IsLoopback(info)); - } - } - } + for (TNetworkAddress::TIterator ai = addr.Begin(); ai != addr.End(); ai++) { + if (ai->ai_family == AF_INET || ai->ai_family == AF_INET6) { + NAddr::TAddrInfo info(&*ai); + UNIT_ASSERT(IsLoopback(info)); + } + } + } } |