diff options
author | warptangent <warptangent@inbox.com> | 2015-05-19 02:33:30 -0700 |
---|---|---|
committer | warptangent <warptangent@inbox.com> | 2015-05-19 02:56:04 -0700 |
commit | fee8424938a6403bdd12d568037a3305cfcf5341 (patch) | |
tree | 45d36ba07cc65f21423140885d80507b4c75b818 /tests/unit_tests/dns_resolver.cpp | |
parent | Revert "Allow name@domain.tld for OpenAlias lookups" (diff) | |
download | monero-fee8424938a6403bdd12d568037a3305cfcf5341.tar.xz |
Allow name@domain.tld for OpenAlias lookups
Based on tewinget's update.
Make OpenAlias address format independent of existing DNS functions.
Add tests.
Test:
make debug-test
cd build/debug/tests/unit_tests
# test that regular DNS functions work, including IPv4 lookups.
# also test function that converts OpenAlias address format
make && ./unit_tests --gtest_filter=DNSResolver*
# test that OpenAlias addresses like donate@getmonero.org work from
# wallet tools
make && ./unit_tests --gtest_filter=AddressFromURL.Success
Diffstat (limited to '')
-rw-r--r-- | tests/unit_tests/dns_resolver.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/unit_tests/dns_resolver.cpp b/tests/unit_tests/dns_resolver.cpp index 6717e990a..0709a773f 100644 --- a/tests/unit_tests/dns_resolver.cpp +++ b/tests/unit_tests/dns_resolver.cpp @@ -148,4 +148,12 @@ TEST(DNSResolver, GetTXTRecord) { std::cout << "TXT record for donate.getmonero.org: " << rec << std::endl; } + + // replace first @ with . + std::string addr = tools::DNSResolver::instance().get_dns_format_from_oa_address("donate@getmonero.org"); + EXPECT_STREQ("donate.getmonero.org", addr.c_str()); + + // no change + addr = tools::DNSResolver::instance().get_dns_format_from_oa_address("donate.getmonero.org"); + EXPECT_STREQ("donate.getmonero.org", addr.c_str()); } |