summaryrefslogtreecommitdiff
path: root/tests/dns.cpp
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2015-10-28 19:13:53 +0100
committerFlorent Le Coz <louiz@louiz.org>2015-10-29 02:32:57 +0100
commit3c1889fbd0d7b96aae16f3479ac8aae70a7e15f7 (patch)
tree69c90435a43b906115b34d4542122000571b971e /tests/dns.cpp
parent4e32fe213cccdc6cdc1dcba498fd74b8b97703ea (diff)
downloadbiboumi-3c1889fbd0d7b96aae16f3479ac8aae70a7e15f7.tar.gz
biboumi-3c1889fbd0d7b96aae16f3479ac8aae70a7e15f7.tar.bz2
biboumi-3c1889fbd0d7b96aae16f3479ac8aae70a7e15f7.tar.xz
biboumi-3c1889fbd0d7b96aae16f3479ac8aae70a7e15f7.zip
Use Catch for our test suite
`make check` is also added to compile and run the tests Catch is fetched with cmake automatically into the build directory when needed
Diffstat (limited to 'tests/dns.cpp')
-rw-r--r--tests/dns.cpp83
1 files changed, 83 insertions, 0 deletions
diff --git a/tests/dns.cpp b/tests/dns.cpp
new file mode 100644
index 0000000..e8cbc7f
--- /dev/null
+++ b/tests/dns.cpp
@@ -0,0 +1,83 @@
+#include "catch.hpp"
+
+#include <network/dns_handler.hpp>
+#include <network/resolver.hpp>
+#include <network/poller.hpp>
+
+#include <utils/timed_events.hpp>
+
+TEST_CASE("DNS resolver")
+{
+ Resolver resolver;
+
+ /**
+ * If we are using cares, we need to run a poller loop until each
+ * resolution is finished. Without cares we get the result before
+ * resolve() returns because it’s blocking.
+ */
+#ifdef CARES_FOUND
+ auto p = std::make_shared<Poller>();
+
+ const auto loop = [&p]()
+ {
+ do
+ {
+ DNSHandler::instance.watch_dns_sockets(p);
+ }
+ while (p->poll(utils::no_timeout) != -1);
+ };
+#else
+ // We don’t need to do anything if we are not using cares.
+ const auto loop = [](){};
+#endif
+
+ std::string hostname;
+ std::string port = "6667";
+
+ bool success = true;
+
+ auto error_cb = [&success, &hostname, &port](const char* msg)
+ {
+ INFO("Failed to resolve " << hostname << ":" << port << ": " << msg);
+ success = false;
+ };
+ auto success_cb = [&success, &hostname, &port](const struct addrinfo* addr)
+ {
+ INFO("Successfully resolved " << hostname << ":" << port << ": " << addr_to_string(addr));
+ success = true;
+ };
+
+ hostname = "example.com";
+ resolver.resolve(hostname, port,
+ success_cb, error_cb);
+ loop();
+ CHECK(success);
+
+ hostname = "this.should.fail.because.it.is..misformatted";
+ resolver.resolve(hostname, port,
+ success_cb, error_cb);
+ loop();
+ CHECK(!success);
+
+ hostname = "this.should.fail.because.it.is.does.not.exist.invalid";
+ resolver.resolve(hostname, port,
+ success_cb, error_cb);
+ loop();
+ CHECK(!success);
+
+ hostname = "localhost6";
+ resolver.resolve(hostname, port,
+ success_cb, error_cb);
+ loop();
+ CHECK(success);
+
+ hostname = "localhost";
+ resolver.resolve(hostname, port,
+ success_cb, error_cb);
+ loop();
+ CHECK(success);
+
+#ifdef CARES_FOUND
+ DNSHandler::instance.destroy();
+#endif
+}