aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_dns.c
diff options
context:
space:
mode:
authorrl1987 <rl1987@sdf.lonestar.org>2015-10-18 18:04:48 +0300
committerrl1987 <rl1987@sdf.lonestar.org>2015-10-24 14:30:52 +0300
commitcc1bed9974f90e7021468f9f85b0a66b21ee9151 (patch)
tree3c0c54d525d213a511f3b3b7dc63aeeccf54a83c /src/test/test_dns.c
parentbb8ec2e1c61e7083cda37845ad40bc0997a16901 (diff)
downloadtor-cc1bed9974f90e7021468f9f85b0a66b21ee9151.tar.gz
tor-cc1bed9974f90e7021468f9f85b0a66b21ee9151.zip
Add a fifth unit test.
Diffstat (limited to 'src/test/test_dns.c')
-rw-r--r--src/test/test_dns.c52
1 files changed, 51 insertions, 1 deletions
diff --git a/src/test/test_dns.c b/src/test/test_dns.c
index f316de2821..3fbb6f25d9 100644
--- a/src/test/test_dns.c
+++ b/src/test/test_dns.c
@@ -513,12 +513,62 @@ NS(test_main)(void *arg)
#define NS_SUBMODULE ASPECT(resolve_impl, cache_hit_pending)
+/* Given that there is already a pending resolve for the given address,
+ * we want dns_resolve_impl to append our exit connection to list
+ * of pending connections for the pending DNS request and return 0.
+ */
+
+static int
+NS(router_my_exit_policy_is_reject_star)(void)
+{
+ return 0;
+}
+
static void
NS(test_main)(void *arg)
{
- tt_skip();
+ int retval;
+ int made_pending = 0;
+
+ pending_connection_t *pending_conn = NULL;
+
+ edge_connection_t *exitconn = create_valid_exitconn();
+ or_circuit_t *on_circ = tor_malloc_zero(sizeof(or_circuit_t));
+
+ cached_resolve_t *cache_entry = tor_malloc_zero(sizeof(cached_resolve_t));
+ cache_entry->magic = CACHED_RESOLVE_MAGIC;
+ cache_entry->state = CACHE_STATE_PENDING;
+ cache_entry->minheap_idx = -1;
+ cache_entry->expire = time(NULL) + 60 * 60;
+
+ TO_CONN(exitconn)->address = tor_strdup("torproject.org");
+
+ strlcpy(cache_entry->address, TO_CONN(exitconn)->address,
+ sizeof(cache_entry->address));
+
+ NS_MOCK(router_my_exit_policy_is_reject_star);
+
+ dns_init();
+
+ dns_insert_cache_entry(cache_entry);
+
+ retval = dns_resolve_impl(exitconn, 1, on_circ, NULL, &made_pending,
+ NULL);
+
+ tt_int_op(retval,==,0);
+ tt_int_op(made_pending,==,1);
+
+ pending_conn = cache_entry->pending_connections;
+
+ tt_assert(pending_conn != NULL);
+ tt_assert(pending_conn->conn == exitconn);
done:
+ NS_UNMOCK(router_my_exit_policy_is_reject_star);
+ tor_free(on_circ);
+ tor_free(TO_CONN(exitconn)->address);
+ tor_free(cache_entry->pending_connections);
+ tor_free(cache_entry);
return;
}