123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880 |
- /* Copyright (c) 2015-2016, The Tor Project, Inc. */
- /* See LICENSE for licensing information */
- #include "orconfig.h"
- #define CONNECTION_PRIVATE
- #define MAIN_PRIVATE
- #include "or.h"
- #include "test.h"
- #include "connection.h"
- #include "hs_common.h"
- #include "main.h"
- #include "microdesc.h"
- #include "networkstatus.h"
- #include "rendcache.h"
- #include "directory.h"
- static void test_conn_lookup_addr_helper(const char *address,
- int family,
- tor_addr_t *addr);
- static void * test_conn_get_basic_setup(const struct testcase_t *tc);
- static int test_conn_get_basic_teardown(const struct testcase_t *tc,
- void *arg);
- static void * test_conn_get_rend_setup(const struct testcase_t *tc);
- static int test_conn_get_rend_teardown(const struct testcase_t *tc,
- void *arg);
- static void * test_conn_get_rsrc_setup(const struct testcase_t *tc);
- static int test_conn_get_rsrc_teardown(const struct testcase_t *tc,
- void *arg);
- /* Arbitrary choice - IPv4 Directory Connection to localhost */
- #define TEST_CONN_TYPE (CONN_TYPE_DIR)
- /* We assume every machine has IPv4 localhost, is that ok? */
- #define TEST_CONN_ADDRESS "127.0.0.1"
- #define TEST_CONN_PORT (12345)
- #define TEST_CONN_ADDRESS_PORT "127.0.0.1:12345"
- #define TEST_CONN_FAMILY (AF_INET)
- #define TEST_CONN_STATE (DIR_CONN_STATE_MIN_)
- #define TEST_CONN_ADDRESS_2 "127.0.0.2"
- #define TEST_CONN_BASIC_PURPOSE (DIR_PURPOSE_MIN_)
- #define TEST_CONN_REND_ADDR "cfs3rltphxxvabci"
- #define TEST_CONN_REND_PURPOSE (DIR_PURPOSE_FETCH_RENDDESC_V2)
- #define TEST_CONN_REND_PURPOSE_SUCCESSFUL (DIR_PURPOSE_HAS_FETCHED_RENDDESC_V2)
- #define TEST_CONN_REND_TYPE_2 (CONN_TYPE_AP)
- #define TEST_CONN_REND_ADDR_2 "icbavxxhptlr3sfc"
- #define TEST_CONN_RSRC (networkstatus_get_flavor_name(FLAV_MICRODESC))
- #define TEST_CONN_RSRC_PURPOSE (DIR_PURPOSE_FETCH_CONSENSUS)
- #define TEST_CONN_RSRC_STATE_SUCCESSFUL (DIR_CONN_STATE_CLIENT_FINISHED)
- #define TEST_CONN_RSRC_2 (networkstatus_get_flavor_name(FLAV_NS))
- #define TEST_CONN_DL_STATE (DIR_CONN_STATE_CLIENT_READING)
- /* see AP_CONN_STATE_IS_UNATTACHED() */
- #define TEST_CONN_UNATTACHED_STATE (AP_CONN_STATE_CIRCUIT_WAIT)
- #define TEST_CONN_ATTACHED_STATE (AP_CONN_STATE_CONNECT_WAIT)
- #define TEST_CONN_FD_INIT 50
- static int mock_connection_connect_sockaddr_called = 0;
- static int fake_socket_number = TEST_CONN_FD_INIT;
- static int
- mock_connection_connect_sockaddr(connection_t *conn,
- const struct sockaddr *sa,
- socklen_t sa_len,
- const struct sockaddr *bindaddr,
- socklen_t bindaddr_len,
- int *socket_error)
- {
- (void)sa_len;
- (void)bindaddr;
- (void)bindaddr_len;
- tor_assert(conn);
- tor_assert(sa);
- tor_assert(socket_error);
- mock_connection_connect_sockaddr_called++;
- conn->s = fake_socket_number++;
- tt_assert(SOCKET_OK(conn->s));
- /* We really should call tor_libevent_initialize() here. Because we don't,
- * we are relying on other parts of the code not checking if the_event_base
- * (and therefore event->ev_base) is NULL. */
- tt_assert(connection_add_connecting(conn) == 0);
- done:
- /* Fake "connected" status */
- return 1;
- }
- static int
- fake_close_socket(evutil_socket_t sock)
- {
- (void)sock;
- return 0;
- }
- static void
- test_conn_lookup_addr_helper(const char *address, int family, tor_addr_t *addr)
- {
- int rv = 0;
- tt_assert(addr);
- rv = tor_addr_lookup(address, family, addr);
- /* XXXX - should we retry on transient failure? */
- tt_assert(rv == 0);
- tt_assert(tor_addr_is_loopback(addr));
- tt_assert(tor_addr_is_v4(addr));
- return;
- done:
- tor_addr_make_null(addr, TEST_CONN_FAMILY);
- }
- static connection_t *
- test_conn_get_connection(uint8_t state, uint8_t type, uint8_t purpose)
- {
- connection_t *conn = NULL;
- tor_addr_t addr;
- int socket_err = 0;
- int in_progress = 0;
- MOCK(connection_connect_sockaddr,
- mock_connection_connect_sockaddr);
- MOCK(tor_close_socket, fake_close_socket);
- init_connection_lists();
- conn = connection_new(type, TEST_CONN_FAMILY);
- tt_assert(conn);
- test_conn_lookup_addr_helper(TEST_CONN_ADDRESS, TEST_CONN_FAMILY, &addr);
- tt_assert(!tor_addr_is_null(&addr));
- tor_addr_copy_tight(&conn->addr, &addr);
- conn->port = TEST_CONN_PORT;
- mock_connection_connect_sockaddr_called = 0;
- in_progress = connection_connect(conn, TEST_CONN_ADDRESS_PORT, &addr,
- TEST_CONN_PORT, &socket_err);
- tt_assert(mock_connection_connect_sockaddr_called == 1);
- tt_assert(!socket_err);
- tt_assert(in_progress == 0 || in_progress == 1);
- /* fake some of the attributes so the connection looks OK */
- conn->state = state;
- conn->purpose = purpose;
- assert_connection_ok(conn, time(NULL));
- UNMOCK(connection_connect_sockaddr);
- UNMOCK(tor_close_socket);
- return conn;
- /* On failure */
- done:
- UNMOCK(connection_connect_sockaddr);
- UNMOCK(tor_close_socket);
- return NULL;
- }
- static void *
- test_conn_get_basic_setup(const struct testcase_t *tc)
- {
- (void)tc;
- return test_conn_get_connection(TEST_CONN_STATE, TEST_CONN_TYPE,
- TEST_CONN_BASIC_PURPOSE);
- }
- static int
- test_conn_get_basic_teardown(const struct testcase_t *tc, void *arg)
- {
- (void)tc;
- connection_t *conn = arg;
- tt_assert(conn);
- assert_connection_ok(conn, time(NULL));
- /* teardown the connection as fast as possible */
- if (conn->linked_conn) {
- assert_connection_ok(conn->linked_conn, time(NULL));
- /* We didn't call tor_libevent_initialize(), so event_base was NULL,
- * so we can't rely on connection_unregister_events() use of event_del().
- */
- if (conn->linked_conn->read_event) {
- tor_free(conn->linked_conn->read_event);
- conn->linked_conn->read_event = NULL;
- }
- if (conn->linked_conn->write_event) {
- tor_free(conn->linked_conn->write_event);
- conn->linked_conn->write_event = NULL;
- }
- if (!conn->linked_conn->marked_for_close) {
- connection_close_immediate(conn->linked_conn);
- if (CONN_IS_EDGE(conn->linked_conn)) {
- /* Suppress warnings about all the stuff we didn't do */
- TO_EDGE_CONN(conn->linked_conn)->edge_has_sent_end = 1;
- TO_EDGE_CONN(conn->linked_conn)->end_reason =
- END_STREAM_REASON_INTERNAL;
- if (conn->linked_conn->type == CONN_TYPE_AP) {
- TO_ENTRY_CONN(conn->linked_conn)->socks_request->has_finished = 1;
- }
- }
- connection_mark_for_close(conn->linked_conn);
- }
- close_closeable_connections();
- }
- /* We didn't set the events up properly, so we can't use event_del() in
- * close_closeable_connections() > connection_free()
- * > connection_unregister_events() */
- if (conn->read_event) {
- tor_free(conn->read_event);
- conn->read_event = NULL;
- }
- if (conn->write_event) {
- tor_free(conn->write_event);
- conn->write_event = NULL;
- }
- if (!conn->marked_for_close) {
- connection_close_immediate(conn);
- if (CONN_IS_EDGE(conn)) {
- /* Suppress warnings about all the stuff we didn't do */
- TO_EDGE_CONN(conn)->edge_has_sent_end = 1;
- TO_EDGE_CONN(conn)->end_reason = END_STREAM_REASON_INTERNAL;
- if (conn->type == CONN_TYPE_AP) {
- TO_ENTRY_CONN(conn)->socks_request->has_finished = 1;
- }
- }
- connection_mark_for_close(conn);
- }
- close_closeable_connections();
- /* The unit test will fail if we return 0 */
- return 1;
- /* When conn == NULL, we can't cleanup anything */
- done:
- return 0;
- }
- static void *
- test_conn_get_rend_setup(const struct testcase_t *tc)
- {
- dir_connection_t *conn = DOWNCAST(dir_connection_t,
- test_conn_get_connection(
- TEST_CONN_STATE,
- TEST_CONN_TYPE,
- TEST_CONN_REND_PURPOSE));
- tt_assert(conn);
- assert_connection_ok(&conn->base_, time(NULL));
- rend_cache_init();
- /* TODO: use directory_initiate_command_rend() to do this - maybe? */
- tor_assert(strlen(TEST_CONN_REND_ADDR) == REND_SERVICE_ID_LEN_BASE32);
- conn->rend_data = rend_data_client_create(TEST_CONN_REND_ADDR, NULL, NULL,
- REND_NO_AUTH);
- assert_connection_ok(&conn->base_, time(NULL));
- return conn;
- /* On failure */
- done:
- test_conn_get_rend_teardown(tc, conn);
- /* Returning NULL causes the unit test to fail */
- return NULL;
- }
- static int
- test_conn_get_rend_teardown(const struct testcase_t *tc, void *arg)
- {
- dir_connection_t *conn = DOWNCAST(dir_connection_t, arg);
- int rv = 0;
- tt_assert(conn);
- assert_connection_ok(&conn->base_, time(NULL));
- /* avoid a last-ditch attempt to refetch the descriptor */
- conn->base_.purpose = TEST_CONN_REND_PURPOSE_SUCCESSFUL;
- /* connection_free_() cleans up rend_data */
- rv = test_conn_get_basic_teardown(tc, arg);
- done:
- rend_cache_free_all();
- return rv;
- }
- static dir_connection_t *
- test_conn_download_status_add_a_connection(const char *resource)
- {
- dir_connection_t *conn = DOWNCAST(dir_connection_t,
- test_conn_get_connection(
- TEST_CONN_STATE,
- TEST_CONN_TYPE,
- TEST_CONN_RSRC_PURPOSE));
- tt_assert(conn);
- assert_connection_ok(&conn->base_, time(NULL));
- /* Replace the existing resource with the one we want */
- if (resource) {
- if (conn->requested_resource) {
- tor_free(conn->requested_resource);
- }
- conn->requested_resource = tor_strdup(resource);
- assert_connection_ok(&conn->base_, time(NULL));
- }
- return conn;
- done:
- test_conn_get_rsrc_teardown(NULL, conn);
- return NULL;
- }
- static void *
- test_conn_get_rsrc_setup(const struct testcase_t *tc)
- {
- (void)tc;
- return test_conn_download_status_add_a_connection(TEST_CONN_RSRC);
- }
- static int
- test_conn_get_rsrc_teardown(const struct testcase_t *tc, void *arg)
- {
- int rv = 0;
- connection_t *conn = (connection_t *)arg;
- tt_assert(conn);
- assert_connection_ok(conn, time(NULL));
- if (conn->type == CONN_TYPE_DIR) {
- dir_connection_t *dir_conn = DOWNCAST(dir_connection_t, arg);
- tt_assert(dir_conn);
- assert_connection_ok(&dir_conn->base_, time(NULL));
- /* avoid a last-ditch attempt to refetch the consensus */
- dir_conn->base_.state = TEST_CONN_RSRC_STATE_SUCCESSFUL;
- assert_connection_ok(&dir_conn->base_, time(NULL));
- }
- /* connection_free_() cleans up requested_resource */
- rv = test_conn_get_basic_teardown(tc, conn);
- done:
- return rv;
- }
- static void *
- test_conn_download_status_setup(const struct testcase_t *tc)
- {
- return (void*)tc;
- }
- static int
- test_conn_download_status_teardown(const struct testcase_t *tc, void *arg)
- {
- (void)arg;
- int rv = 0;
- /* Ignore arg, and just loop through the connection array */
- SMARTLIST_FOREACH_BEGIN(get_connection_array(), connection_t *, conn) {
- if (conn) {
- assert_connection_ok(conn, time(NULL));
- /* connection_free_() cleans up requested_resource */
- rv = test_conn_get_rsrc_teardown(tc, conn);
- tt_assert(rv == 1);
- }
- } SMARTLIST_FOREACH_END(conn);
- done:
- return rv;
- }
- /* Like connection_ap_make_link(), but does much less */
- static connection_t *
- test_conn_get_linked_connection(connection_t *l_conn, uint8_t state)
- {
- tt_assert(l_conn);
- assert_connection_ok(l_conn, time(NULL));
- /* AP connections don't seem to have purposes */
- connection_t *conn = test_conn_get_connection(state, CONN_TYPE_AP,
- 0);
- tt_assert(conn);
- assert_connection_ok(conn, time(NULL));
- conn->linked = 1;
- l_conn->linked = 1;
- conn->linked_conn = l_conn;
- l_conn->linked_conn = conn;
- /* we never opened a real socket, so we can just overwrite it */
- conn->s = TOR_INVALID_SOCKET;
- l_conn->s = TOR_INVALID_SOCKET;
- assert_connection_ok(conn, time(NULL));
- assert_connection_ok(l_conn, time(NULL));
- return conn;
- done:
- test_conn_download_status_teardown(NULL, NULL);
- return NULL;
- }
- static struct testcase_setup_t test_conn_get_basic_st = {
- test_conn_get_basic_setup, test_conn_get_basic_teardown
- };
- static struct testcase_setup_t test_conn_get_rend_st = {
- test_conn_get_rend_setup, test_conn_get_rend_teardown
- };
- static struct testcase_setup_t test_conn_get_rsrc_st = {
- test_conn_get_rsrc_setup, test_conn_get_rsrc_teardown
- };
- static struct testcase_setup_t test_conn_download_status_st = {
- test_conn_download_status_setup, test_conn_download_status_teardown
- };
- static void
- test_conn_get_basic(void *arg)
- {
- connection_t *conn = (connection_t*)arg;
- tor_addr_t addr, addr2;
- tt_assert(conn);
- assert_connection_ok(conn, time(NULL));
- test_conn_lookup_addr_helper(TEST_CONN_ADDRESS, TEST_CONN_FAMILY, &addr);
- tt_assert(!tor_addr_is_null(&addr));
- test_conn_lookup_addr_helper(TEST_CONN_ADDRESS_2, TEST_CONN_FAMILY, &addr2);
- tt_assert(!tor_addr_is_null(&addr2));
- /* Check that we get this connection back when we search for it by
- * its attributes, but get NULL when we supply a different value. */
- tt_assert(connection_get_by_global_id(conn->global_identifier) == conn);
- tt_assert(connection_get_by_global_id(!conn->global_identifier) == NULL);
- tt_assert(connection_get_by_type(conn->type) == conn);
- tt_assert(connection_get_by_type(TEST_CONN_TYPE) == conn);
- tt_assert(connection_get_by_type(!conn->type) == NULL);
- tt_assert(connection_get_by_type(!TEST_CONN_TYPE) == NULL);
- tt_assert(connection_get_by_type_state(conn->type, conn->state)
- == conn);
- tt_assert(connection_get_by_type_state(TEST_CONN_TYPE, TEST_CONN_STATE)
- == conn);
- tt_assert(connection_get_by_type_state(!conn->type, !conn->state)
- == NULL);
- tt_assert(connection_get_by_type_state(!TEST_CONN_TYPE, !TEST_CONN_STATE)
- == NULL);
- /* Match on the connection fields themselves */
- tt_assert(connection_get_by_type_addr_port_purpose(conn->type,
- &conn->addr,
- conn->port,
- conn->purpose)
- == conn);
- /* Match on the original inputs to the connection */
- tt_assert(connection_get_by_type_addr_port_purpose(TEST_CONN_TYPE,
- &conn->addr,
- conn->port,
- conn->purpose)
- == conn);
- tt_assert(connection_get_by_type_addr_port_purpose(conn->type,
- &addr,
- conn->port,
- conn->purpose)
- == conn);
- tt_assert(connection_get_by_type_addr_port_purpose(conn->type,
- &conn->addr,
- TEST_CONN_PORT,
- conn->purpose)
- == conn);
- tt_assert(connection_get_by_type_addr_port_purpose(conn->type,
- &conn->addr,
- conn->port,
- TEST_CONN_BASIC_PURPOSE)
- == conn);
- tt_assert(connection_get_by_type_addr_port_purpose(TEST_CONN_TYPE,
- &addr,
- TEST_CONN_PORT,
- TEST_CONN_BASIC_PURPOSE)
- == conn);
- /* Then try each of the not-matching combinations */
- tt_assert(connection_get_by_type_addr_port_purpose(!conn->type,
- &conn->addr,
- conn->port,
- conn->purpose)
- == NULL);
- tt_assert(connection_get_by_type_addr_port_purpose(conn->type,
- &addr2,
- conn->port,
- conn->purpose)
- == NULL);
- tt_assert(connection_get_by_type_addr_port_purpose(conn->type,
- &conn->addr,
- !conn->port,
- conn->purpose)
- == NULL);
- tt_assert(connection_get_by_type_addr_port_purpose(conn->type,
- &conn->addr,
- conn->port,
- !conn->purpose)
- == NULL);
- /* Then try everything not-matching */
- tt_assert(connection_get_by_type_addr_port_purpose(!conn->type,
- &addr2,
- !conn->port,
- !conn->purpose)
- == NULL);
- tt_assert(connection_get_by_type_addr_port_purpose(!TEST_CONN_TYPE,
- &addr2,
- !TEST_CONN_PORT,
- !TEST_CONN_BASIC_PURPOSE)
- == NULL);
- done:
- ;
- }
- static void
- test_conn_get_rend(void *arg)
- {
- dir_connection_t *conn = DOWNCAST(dir_connection_t, arg);
- tt_assert(conn);
- assert_connection_ok(&conn->base_, time(NULL));
- tt_assert(connection_get_by_type_state_rendquery(
- conn->base_.type,
- conn->base_.state,
- rend_data_get_address(
- conn->rend_data))
- == TO_CONN(conn));
- tt_assert(connection_get_by_type_state_rendquery(
- TEST_CONN_TYPE,
- TEST_CONN_STATE,
- TEST_CONN_REND_ADDR)
- == TO_CONN(conn));
- tt_assert(connection_get_by_type_state_rendquery(TEST_CONN_REND_TYPE_2,
- !conn->base_.state,
- "")
- == NULL);
- tt_assert(connection_get_by_type_state_rendquery(TEST_CONN_REND_TYPE_2,
- !TEST_CONN_STATE,
- TEST_CONN_REND_ADDR_2)
- == NULL);
- done:
- ;
- }
- #define sl_is_conn_assert(sl_input, conn) \
- do { \
- the_sl = (sl_input); \
- tt_assert(smartlist_len((the_sl)) == 1); \
- tt_assert(smartlist_get((the_sl), 0) == (conn)); \
- smartlist_free(the_sl); the_sl = NULL; \
- } while (0)
- #define sl_no_conn_assert(sl_input) \
- do { \
- the_sl = (sl_input); \
- tt_assert(smartlist_len((the_sl)) == 0); \
- smartlist_free(the_sl); the_sl = NULL; \
- } while (0)
- static void
- test_conn_get_rsrc(void *arg)
- {
- dir_connection_t *conn = DOWNCAST(dir_connection_t, arg);
- smartlist_t *the_sl = NULL;
- tt_assert(conn);
- assert_connection_ok(&conn->base_, time(NULL));
- sl_is_conn_assert(connection_dir_list_by_purpose_and_resource(
- conn->base_.purpose,
- conn->requested_resource),
- conn);
- sl_is_conn_assert(connection_dir_list_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- TEST_CONN_RSRC),
- conn);
- sl_no_conn_assert(connection_dir_list_by_purpose_and_resource(
- !conn->base_.purpose,
- ""));
- sl_no_conn_assert(connection_dir_list_by_purpose_and_resource(
- !TEST_CONN_RSRC_PURPOSE,
- TEST_CONN_RSRC_2));
- sl_is_conn_assert(connection_dir_list_by_purpose_resource_and_state(
- conn->base_.purpose,
- conn->requested_resource,
- conn->base_.state),
- conn);
- sl_is_conn_assert(connection_dir_list_by_purpose_resource_and_state(
- TEST_CONN_RSRC_PURPOSE,
- TEST_CONN_RSRC,
- TEST_CONN_STATE),
- conn);
- sl_no_conn_assert(connection_dir_list_by_purpose_resource_and_state(
- !conn->base_.purpose,
- "",
- !conn->base_.state));
- sl_no_conn_assert(connection_dir_list_by_purpose_resource_and_state(
- !TEST_CONN_RSRC_PURPOSE,
- TEST_CONN_RSRC_2,
- !TEST_CONN_STATE));
- tt_assert(connection_dir_count_by_purpose_and_resource(
- conn->base_.purpose,
- conn->requested_resource)
- == 1);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- TEST_CONN_RSRC)
- == 1);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- !conn->base_.purpose,
- "")
- == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- !TEST_CONN_RSRC_PURPOSE,
- TEST_CONN_RSRC_2)
- == 0);
- tt_assert(connection_dir_count_by_purpose_resource_and_state(
- conn->base_.purpose,
- conn->requested_resource,
- conn->base_.state)
- == 1);
- tt_assert(connection_dir_count_by_purpose_resource_and_state(
- TEST_CONN_RSRC_PURPOSE,
- TEST_CONN_RSRC,
- TEST_CONN_STATE)
- == 1);
- tt_assert(connection_dir_count_by_purpose_resource_and_state(
- !conn->base_.purpose,
- "",
- !conn->base_.state)
- == 0);
- tt_assert(connection_dir_count_by_purpose_resource_and_state(
- !TEST_CONN_RSRC_PURPOSE,
- TEST_CONN_RSRC_2,
- !TEST_CONN_STATE)
- == 0);
- done:
- smartlist_free(the_sl);
- }
- static void
- test_conn_download_status(void *arg)
- {
- dir_connection_t *conn = NULL;
- dir_connection_t *conn2 = NULL;
- dir_connection_t *conn4 = NULL;
- connection_t *ap_conn = NULL;
- const struct testcase_t *tc = arg;
- consensus_flavor_t usable_flavor = (consensus_flavor_t)tc->setup_data;
- /* The "other flavor" trick only works if there are two flavors */
- tor_assert(N_CONSENSUS_FLAVORS == 2);
- consensus_flavor_t other_flavor = ((usable_flavor == FLAV_NS)
- ? FLAV_MICRODESC
- : FLAV_NS);
- const char *res = networkstatus_get_flavor_name(usable_flavor);
- const char *other_res = networkstatus_get_flavor_name(other_flavor);
- /* no connections */
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 0);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 0);
- /* one connection, not downloading */
- conn = test_conn_download_status_add_a_connection(res);
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 0);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 1);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 0);
- /* one connection, downloading but not linked (not possible on a client,
- * but possible on a relay) */
- conn->base_.state = TEST_CONN_DL_STATE;
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 0);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 1);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 0);
- /* one connection, downloading and linked, but not yet attached */
- ap_conn = test_conn_get_linked_connection(TO_CONN(conn),
- TEST_CONN_UNATTACHED_STATE);
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 0);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 1);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 0);
- /* one connection, downloading and linked and attached */
- ap_conn->state = TEST_CONN_ATTACHED_STATE;
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 1);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 1);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 0);
- /* one connection, linked and attached but not downloading */
- conn->base_.state = TEST_CONN_STATE;
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 0);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 1);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 0);
- /* two connections, both not downloading */
- conn2 = test_conn_download_status_add_a_connection(res);
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 0);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 2);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 0);
- /* two connections, one downloading */
- conn->base_.state = TEST_CONN_DL_STATE;
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 1);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 2);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 0);
- conn->base_.state = TEST_CONN_STATE;
- /* more connections, all not downloading */
- /* ignore the return value, it's free'd using the connection list */
- (void)test_conn_download_status_add_a_connection(res);
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 0);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 3);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 0);
- /* more connections, one downloading */
- conn->base_.state = TEST_CONN_DL_STATE;
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 1);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 3);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 0);
- /* more connections, two downloading (should never happen, but needs
- * to be tested for completeness) */
- conn2->base_.state = TEST_CONN_DL_STATE;
- /* ignore the return value, it's free'd using the connection list */
- (void)test_conn_get_linked_connection(TO_CONN(conn2),
- TEST_CONN_ATTACHED_STATE);
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 1);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 3);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 0);
- conn->base_.state = TEST_CONN_STATE;
- /* more connections, a different one downloading */
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 1);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 3);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 0);
- /* a connection for the other flavor (could happen if a client is set to
- * cache directory documents), one preferred flavor downloading
- */
- conn4 = test_conn_download_status_add_a_connection(other_res);
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 1);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 0);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 3);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 1);
- /* a connection for the other flavor (could happen if a client is set to
- * cache directory documents), both flavors downloading
- */
- conn4->base_.state = TEST_CONN_DL_STATE;
- /* ignore the return value, it's free'd using the connection list */
- (void)test_conn_get_linked_connection(TO_CONN(conn4),
- TEST_CONN_ATTACHED_STATE);
- tt_assert(networkstatus_consensus_is_already_downloading(res) == 1);
- tt_assert(networkstatus_consensus_is_already_downloading(other_res) == 1);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- res) == 3);
- tt_assert(connection_dir_count_by_purpose_and_resource(
- TEST_CONN_RSRC_PURPOSE,
- other_res) == 1);
- done:
- /* the teardown function removes all the connections in the global list*/;
- }
- #define CONNECTION_TESTCASE(name, fork, setup) \
- { #name, test_conn_##name, fork, &setup, NULL }
- /* where arg is an expression (constant, varaible, compound expression) */
- #define CONNECTION_TESTCASE_ARG(name, fork, setup, arg) \
- { #name "_" #arg, test_conn_##name, fork, &setup, (void *)arg }
- struct testcase_t connection_tests[] = {
- CONNECTION_TESTCASE(get_basic, TT_FORK, test_conn_get_basic_st),
- CONNECTION_TESTCASE(get_rend, TT_FORK, test_conn_get_rend_st),
- CONNECTION_TESTCASE(get_rsrc, TT_FORK, test_conn_get_rsrc_st),
- CONNECTION_TESTCASE_ARG(download_status, TT_FORK,
- test_conn_download_status_st, FLAV_MICRODESC),
- CONNECTION_TESTCASE_ARG(download_status, TT_FORK,
- test_conn_download_status_st, FLAV_NS),
- //CONNECTION_TESTCASE(func_suffix, TT_FORK, setup_func_pair),
- END_OF_TESTCASES
- };
|