123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086 |
- /* Copyright (c) 2014-2017, The Tor Project, Inc. */
- /* See LICENSE for licensing information */
- #define STATUS_PRIVATE
- #define HIBERNATE_PRIVATE
- #define LOG_PRIVATE
- #define REPHIST_PRIVATE
- #include "orconfig.h"
- #include <float.h>
- #include <math.h>
- #include "or.h"
- #include "torlog.h"
- #include "tor_queue.h"
- #include "status.h"
- #include "circuitlist.h"
- #include "config.h"
- #include "hibernate.h"
- #include "rephist.h"
- #include "relay.h"
- #include "router.h"
- #include "main.h"
- #include "nodelist.h"
- #include "statefile.h"
- #include "test.h"
- #define NS_MODULE status
- #define NS_SUBMODULE count_circuits
- /*
- * Test that count_circuits() is correctly counting the number of
- * global circuits.
- */
- static smartlist_t * mock_global_circuitlist = NULL;
- NS_DECL(smartlist_t *, circuit_get_global_list, (void));
- static void
- NS(test_main)(void *arg)
- {
- /* Choose origin_circuit_t wlog. */
- origin_circuit_t *mock_circuit1, *mock_circuit2;
- int expected_circuits = 2, actual_circuits;
- (void)arg;
- mock_circuit1 = tor_malloc_zero(sizeof(origin_circuit_t));
- mock_circuit2 = tor_malloc_zero(sizeof(origin_circuit_t));
- mock_global_circuitlist = smartlist_new();
- smartlist_add(mock_global_circuitlist, TO_CIRCUIT(mock_circuit1));
- smartlist_add(mock_global_circuitlist, TO_CIRCUIT(mock_circuit2));
- NS_MOCK(circuit_get_global_list);
- actual_circuits = count_circuits();
- tt_assert(expected_circuits == actual_circuits);
- done:
- tor_free(mock_circuit1);
- tor_free(mock_circuit2);
- smartlist_free(mock_global_circuitlist);
- mock_global_circuitlist = NULL;
- NS_UNMOCK(circuit_get_global_list);
- }
- static smartlist_t *
- NS(circuit_get_global_list)(void)
- {
- return mock_global_circuitlist;
- }
- #undef NS_SUBMODULE
- #define NS_SUBMODULE secs_to_uptime
- /*
- * Test that secs_to_uptime() is converting the number of seconds that
- * Tor is up for into the appropriate string form containing hours and minutes.
- */
- static void
- NS(test_main)(void *arg)
- {
- const char *expected;
- char *actual;
- (void)arg;
- expected = "0:00 hours";
- actual = secs_to_uptime(0);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "0:00 hours";
- actual = secs_to_uptime(1);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "0:01 hours";
- actual = secs_to_uptime(60);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "0:59 hours";
- actual = secs_to_uptime(60 * 59);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "1:00 hours";
- actual = secs_to_uptime(60 * 60);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "23:59 hours";
- actual = secs_to_uptime(60 * 60 * 23 + 60 * 59);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "1 day 0:00 hours";
- actual = secs_to_uptime(60 * 60 * 23 + 60 * 60);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "1 day 0:00 hours";
- actual = secs_to_uptime(86400 + 1);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "1 day 0:01 hours";
- actual = secs_to_uptime(86400 + 60);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "10 days 0:00 hours";
- actual = secs_to_uptime(86400 * 10);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "10 days 0:00 hours";
- actual = secs_to_uptime(864000 + 1);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "10 days 0:01 hours";
- actual = secs_to_uptime(864000 + 60);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- done:
- if (actual != NULL)
- tor_free(actual);
- }
- #undef NS_SUBMODULE
- #define NS_SUBMODULE bytes_to_usage
- /*
- * Test that bytes_to_usage() is correctly converting the number of bytes that
- * Tor has read/written into the appropriate string form containing kilobytes,
- * megabytes, or gigabytes.
- */
- static void
- NS(test_main)(void *arg)
- {
- const char *expected;
- char *actual;
- (void)arg;
- expected = "0 kB";
- actual = bytes_to_usage(0);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "0 kB";
- actual = bytes_to_usage(1);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "1 kB";
- actual = bytes_to_usage(1024);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "1023 kB";
- actual = bytes_to_usage((1 << 20) - 1);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "1.00 MB";
- actual = bytes_to_usage((1 << 20));
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "1.00 MB";
- actual = bytes_to_usage((1 << 20) + 5242);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "1.01 MB";
- actual = bytes_to_usage((1 << 20) + 5243);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "1024.00 MB";
- actual = bytes_to_usage((1 << 30) - 1);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "1.00 GB";
- actual = bytes_to_usage((1 << 30));
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "1.00 GB";
- actual = bytes_to_usage((1 << 30) + 5368709);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "1.01 GB";
- actual = bytes_to_usage((1 << 30) + 5368710);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- expected = "10.00 GB";
- actual = bytes_to_usage((U64_LITERAL(1) << 30) * 10L);
- tt_str_op(actual, OP_EQ, expected);
- tor_free(actual);
- done:
- if (actual != NULL)
- tor_free(actual);
- }
- #undef NS_SUBMODULE
- #define NS_SUBMODULE ASPECT(log_heartbeat, fails)
- /*
- * Tests that log_heartbeat() fails when in the public server mode,
- * not hibernating, and we couldn't get the current routerinfo.
- */
- NS_DECL(double, tls_get_write_overhead_ratio, (void));
- NS_DECL(int, we_are_hibernating, (void));
- NS_DECL(int, public_server_mode, (const or_options_t *options));
- NS_DECL(const routerinfo_t *, router_get_my_routerinfo, (void));
- static void
- NS(test_main)(void *arg)
- {
- int expected, actual;
- (void)arg;
- NS_MOCK(tls_get_write_overhead_ratio);
- NS_MOCK(we_are_hibernating);
- NS_MOCK(public_server_mode);
- NS_MOCK(router_get_my_routerinfo);
- expected = -1;
- actual = log_heartbeat(0);
- tt_int_op(actual, OP_EQ, expected);
- done:
- NS_UNMOCK(tls_get_write_overhead_ratio);
- NS_UNMOCK(we_are_hibernating);
- NS_UNMOCK(public_server_mode);
- NS_UNMOCK(router_get_my_routerinfo);
- }
- static double
- NS(tls_get_write_overhead_ratio)(void)
- {
- return 2.0;
- }
- static int
- NS(we_are_hibernating)(void)
- {
- return 0;
- }
- static int
- NS(public_server_mode)(const or_options_t *options)
- {
- (void)options;
- return 1;
- }
- static const routerinfo_t *
- NS(router_get_my_routerinfo)(void)
- {
- return NULL;
- }
- #undef NS_SUBMODULE
- #define NS_SUBMODULE ASPECT(log_heartbeat, not_in_consensus)
- /*
- * Tests that log_heartbeat() logs appropriately if we are not in the cached
- * consensus.
- */
- NS_DECL(double, tls_get_write_overhead_ratio, (void));
- NS_DECL(int, we_are_hibernating, (void));
- NS_DECL(int, public_server_mode, (const or_options_t *options));
- NS_DECL(const routerinfo_t *, router_get_my_routerinfo, (void));
- NS_DECL(const node_t *, node_get_by_id, (const char *identity_digest));
- NS_DECL(void, logv, (int severity, log_domain_mask_t domain,
- const char *funcname, const char *suffix, const char *format, va_list ap));
- NS_DECL(int, server_mode, (const or_options_t *options));
- static routerinfo_t *mock_routerinfo;
- static void
- NS(test_main)(void *arg)
- {
- int expected, actual;
- (void)arg;
- NS_MOCK(tls_get_write_overhead_ratio);
- NS_MOCK(we_are_hibernating);
- NS_MOCK(public_server_mode);
- NS_MOCK(router_get_my_routerinfo);
- NS_MOCK(node_get_by_id);
- NS_MOCK(logv);
- NS_MOCK(server_mode);
- log_global_min_severity_ = LOG_DEBUG;
- onion_handshakes_requested[ONION_HANDSHAKE_TYPE_TAP] = 1;
- onion_handshakes_assigned[ONION_HANDSHAKE_TYPE_TAP] = 1;
- onion_handshakes_requested[ONION_HANDSHAKE_TYPE_NTOR] = 1;
- onion_handshakes_assigned[ONION_HANDSHAKE_TYPE_NTOR] = 1;
- expected = 0;
- actual = log_heartbeat(0);
- tt_int_op(actual, OP_EQ, expected);
- tt_int_op(CALLED(logv), OP_EQ, 5);
- done:
- NS_UNMOCK(tls_get_write_overhead_ratio);
- NS_UNMOCK(we_are_hibernating);
- NS_UNMOCK(public_server_mode);
- NS_UNMOCK(router_get_my_routerinfo);
- NS_UNMOCK(node_get_by_id);
- NS_UNMOCK(logv);
- NS_UNMOCK(server_mode);
- tor_free(mock_routerinfo);
- }
- static double
- NS(tls_get_write_overhead_ratio)(void)
- {
- return 1.0;
- }
- static int
- NS(we_are_hibernating)(void)
- {
- return 0;
- }
- static int
- NS(public_server_mode)(const or_options_t *options)
- {
- (void)options;
- return 1;
- }
- static const routerinfo_t *
- NS(router_get_my_routerinfo)(void)
- {
- mock_routerinfo = tor_malloc(sizeof(routerinfo_t));
- return mock_routerinfo;
- }
- static const node_t *
- NS(node_get_by_id)(const char *identity_digest)
- {
- (void)identity_digest;
- return NULL;
- }
- static void
- NS(logv)(int severity, log_domain_mask_t domain,
- const char *funcname, const char *suffix, const char *format, va_list ap)
- {
- switch (CALLED(logv))
- {
- case 0:
- tt_int_op(severity, OP_EQ, LOG_NOTICE);
- tt_int_op(domain, OP_EQ, LD_HEARTBEAT);
- tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL);
- tt_ptr_op(suffix, OP_EQ, NULL);
- tt_str_op(format, OP_EQ,
- "Heartbeat: It seems like we are not in the cached consensus.");
- break;
- case 1:
- tt_int_op(severity, OP_EQ, LOG_NOTICE);
- tt_int_op(domain, OP_EQ, LD_HEARTBEAT);
- tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL);
- tt_ptr_op(suffix, OP_EQ, NULL);
- tt_str_op(format, OP_EQ,
- "Heartbeat: Tor's uptime is %s, with %d circuits open. "
- "I've sent %s and received %s.%s");
- tt_str_op(va_arg(ap, char *), OP_EQ, "0:00 hours"); /* uptime */
- tt_int_op(va_arg(ap, int), OP_EQ, 0); /* count_circuits() */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_sent */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_rcvd */
- tt_str_op(va_arg(ap, char *), OP_EQ, ""); /* hibernating */
- break;
- case 2:
- tt_int_op(severity, OP_EQ, LOG_INFO);
- break;
- case 3:
- tt_int_op(severity, OP_EQ, LOG_NOTICE);
- tt_int_op(domain, OP_EQ, LD_HEARTBEAT);
- tt_ptr_op(strstr(funcname, "rep_hist_log_circuit_handshake_stats"),
- OP_NE, NULL);
- tt_ptr_op(suffix, OP_EQ, NULL);
- tt_str_op(format, OP_EQ,
- "Circuit handshake stats since last time: %d/%d TAP, %d/%d NTor.");
- tt_int_op(va_arg(ap, int), OP_EQ, 1); /* handshakes assigned (TAP) */
- tt_int_op(va_arg(ap, int), OP_EQ, 1); /* handshakes requested (TAP) */
- tt_int_op(va_arg(ap, int), OP_EQ, 1); /* handshakes assigned (NTOR) */
- tt_int_op(va_arg(ap, int), OP_EQ, 1); /* handshakes requested (NTOR) */
- break;
- case 4:
- tt_int_op(severity, OP_EQ, LOG_NOTICE);
- tt_int_op(domain, OP_EQ, LD_HEARTBEAT);
- tt_ptr_op(strstr(funcname, "rep_hist_log_link_protocol_counts"),
- OP_NE, NULL);
- break;
- default:
- tt_abort_msg("unexpected call to logv()"); // TODO: prettyprint args
- break;
- }
- done:
- CALLED(logv)++;
- }
- static int
- NS(server_mode)(const or_options_t *options)
- {
- (void)options;
- return 0;
- }
- #undef NS_SUBMODULE
- #define NS_SUBMODULE ASPECT(log_heartbeat, simple)
- /*
- * Tests that log_heartbeat() correctly logs heartbeat information
- * normally.
- */
- NS_DECL(double, tls_get_write_overhead_ratio, (void));
- NS_DECL(int, we_are_hibernating, (void));
- NS_DECL(int, public_server_mode, (const or_options_t *options));
- NS_DECL(long, get_uptime, (void));
- NS_DECL(uint64_t, get_bytes_read, (void));
- NS_DECL(uint64_t, get_bytes_written, (void));
- NS_DECL(void, logv, (int severity, log_domain_mask_t domain,
- const char *funcname, const char *suffix, const char *format, va_list ap));
- NS_DECL(int, server_mode, (const or_options_t *options));
- static int NS(n_msgs) = 0;
- static void
- NS(test_main)(void *arg)
- {
- int expected, actual;
- (void)arg;
- NS_MOCK(tls_get_write_overhead_ratio);
- NS_MOCK(we_are_hibernating);
- NS_MOCK(public_server_mode);
- NS_MOCK(get_uptime);
- NS_MOCK(get_bytes_read);
- NS_MOCK(get_bytes_written);
- NS_MOCK(logv);
- NS_MOCK(server_mode);
- log_global_min_severity_ = LOG_DEBUG;
- expected = 0;
- actual = log_heartbeat(0);
- tt_int_op(actual, OP_EQ, expected);
- tt_int_op(NS(n_msgs), OP_EQ, 1);
- done:
- NS_UNMOCK(tls_get_write_overhead_ratio);
- NS_UNMOCK(we_are_hibernating);
- NS_UNMOCK(public_server_mode);
- NS_UNMOCK(get_uptime);
- NS_UNMOCK(get_bytes_read);
- NS_UNMOCK(get_bytes_written);
- NS_UNMOCK(logv);
- NS_UNMOCK(server_mode);
- }
- static double
- NS(tls_get_write_overhead_ratio)(void)
- {
- return 1.0;
- }
- static int
- NS(we_are_hibernating)(void)
- {
- return 1;
- }
- static int
- NS(public_server_mode)(const or_options_t *options)
- {
- (void)options;
- return 0;
- }
- static long
- NS(get_uptime)(void)
- {
- return 0;
- }
- static uint64_t
- NS(get_bytes_read)(void)
- {
- return 0;
- }
- static uint64_t
- NS(get_bytes_written)(void)
- {
- return 0;
- }
- static void
- NS(logv)(int severity, log_domain_mask_t domain, const char *funcname,
- const char *suffix, const char *format, va_list ap)
- {
- if (severity == LOG_INFO)
- return;
- ++NS(n_msgs);
- tt_int_op(severity, OP_EQ, LOG_NOTICE);
- tt_int_op(domain, OP_EQ, LD_HEARTBEAT);
- tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL);
- tt_ptr_op(suffix, OP_EQ, NULL);
- tt_str_op(format, OP_EQ,
- "Heartbeat: Tor's uptime is %s, with %d circuits open. "
- "I've sent %s and received %s.%s");
- tt_str_op(va_arg(ap, char *), OP_EQ, "0:00 hours"); /* uptime */
- tt_int_op(va_arg(ap, int), OP_EQ, 0); /* count_circuits() */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_sent */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_rcvd */
- tt_str_op(va_arg(ap, char *), OP_EQ, " We are currently hibernating.");
- done:
- ;
- }
- static int
- NS(server_mode)(const or_options_t *options)
- {
- (void)options;
- return 0;
- }
- #undef NS_SUBMODULE
- #define NS_SUBMODULE ASPECT(log_heartbeat, calls_log_accounting)
- /*
- * Tests that log_heartbeat() correctly logs heartbeat information
- * and accounting information when configured.
- */
- NS_DECL(double, tls_get_write_overhead_ratio, (void));
- NS_DECL(int, we_are_hibernating, (void));
- NS_DECL(int, public_server_mode, (const or_options_t *options));
- NS_DECL(long, get_uptime, (void));
- NS_DECL(uint64_t, get_bytes_read, (void));
- NS_DECL(uint64_t, get_bytes_written, (void));
- NS_DECL(void, logv, (int severity, log_domain_mask_t domain,
- const char *funcname, const char *suffix, const char *format, va_list ap));
- NS_DECL(int, server_mode, (const or_options_t *options));
- NS_DECL(or_state_t *, get_or_state, (void));
- NS_DECL(int, accounting_is_enabled, (const or_options_t *options));
- NS_DECL(time_t, accounting_get_end_time, (void));
- static or_state_t * NS(mock_state) = NULL;
- static or_options_t * NS(mock_options) = NULL;
- static void
- NS(test_main)(void *arg)
- {
- int expected, actual;
- (void)arg;
- NS_MOCK(tls_get_write_overhead_ratio);
- NS_MOCK(we_are_hibernating);
- NS_MOCK(public_server_mode);
- NS_MOCK(get_uptime);
- NS_MOCK(get_bytes_read);
- NS_MOCK(get_bytes_written);
- NS_MOCK(logv);
- NS_MOCK(server_mode);
- NS_MOCK(get_or_state);
- NS_MOCK(accounting_is_enabled);
- NS_MOCK(accounting_get_end_time);
- log_global_min_severity_ = LOG_DEBUG;
- expected = 0;
- actual = log_heartbeat(0);
- tt_int_op(actual, OP_EQ, expected);
- tt_int_op(CALLED(logv), OP_EQ, 3);
- done:
- NS_UNMOCK(tls_get_write_overhead_ratio);
- NS_UNMOCK(we_are_hibernating);
- NS_UNMOCK(public_server_mode);
- NS_UNMOCK(get_uptime);
- NS_UNMOCK(get_bytes_read);
- NS_UNMOCK(get_bytes_written);
- NS_UNMOCK(logv);
- NS_UNMOCK(server_mode);
- NS_UNMOCK(accounting_is_enabled);
- NS_UNMOCK(accounting_get_end_time);
- tor_free_(NS(mock_state));
- tor_free_(NS(mock_options));
- }
- static double
- NS(tls_get_write_overhead_ratio)(void)
- {
- return 1.0;
- }
- static int
- NS(we_are_hibernating)(void)
- {
- return 0;
- }
- static int
- NS(public_server_mode)(const or_options_t *options)
- {
- (void)options;
- return 0;
- }
- static long
- NS(get_uptime)(void)
- {
- return 0;
- }
- static uint64_t
- NS(get_bytes_read)(void)
- {
- return 0;
- }
- static uint64_t
- NS(get_bytes_written)(void)
- {
- return 0;
- }
- static void
- NS(logv)(int severity, log_domain_mask_t domain,
- const char *funcname, const char *suffix, const char *format, va_list ap)
- {
- switch (CALLED(logv))
- {
- case 0:
- tt_int_op(severity, OP_EQ, LOG_NOTICE);
- tt_int_op(domain, OP_EQ, LD_HEARTBEAT);
- tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL);
- tt_ptr_op(suffix, OP_EQ, NULL);
- tt_str_op(format, OP_EQ,
- "Heartbeat: Tor's uptime is %s, with %d circuits open. "
- "I've sent %s and received %s.%s");
- tt_str_op(va_arg(ap, char *), OP_EQ, "0:00 hours"); /* uptime */
- tt_int_op(va_arg(ap, int), OP_EQ, 0); /* count_circuits() */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_sent */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_rcvd */
- tt_str_op(va_arg(ap, char *), OP_EQ, ""); /* hibernating */
- break;
- case 1:
- tt_int_op(severity, OP_EQ, LOG_NOTICE);
- tt_int_op(domain, OP_EQ, LD_HEARTBEAT);
- tt_ptr_op(strstr(funcname, "log_accounting"), OP_NE, NULL);
- tt_ptr_op(suffix, OP_EQ, NULL);
- tt_str_op(format, OP_EQ,
- "Heartbeat: Accounting enabled. Sent: %s, Received: %s, Used: %s / "
- "%s, Rule: %s. The current accounting interval ends on %s, in %s.");
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* acc_sent */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* acc_rcvd */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* acc_used */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* acc_max */
- tt_str_op(va_arg(ap, char *), OP_EQ, "max"); /* acc_rule */
- /* format_local_iso_time uses local tz, so we can't just compare
- * the string against a constant */
- char datetime[ISO_TIME_LEN+1];
- format_local_iso_time(datetime, 60);
- tt_str_op(va_arg(ap, char *), OP_EQ, datetime); /* end_buf */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0:01 hours"); /* remaining */
- break;
- case 2:
- tt_int_op(severity, OP_EQ, LOG_INFO);
- break;
- default:
- tt_abort_msg("unexpected call to logv()"); // TODO: prettyprint args
- break;
- }
- done:
- CALLED(logv)++;
- }
- static int
- NS(server_mode)(const or_options_t *options)
- {
- (void)options;
- return 1;
- }
- static int
- NS(accounting_is_enabled)(const or_options_t *options)
- {
- (void)options;
- return 1;
- }
- static time_t
- NS(accounting_get_end_time)(void)
- {
- return 60;
- }
- static or_state_t *
- NS(get_or_state)(void)
- {
- NS(mock_state) = tor_malloc_zero(sizeof(or_state_t));
- NS(mock_state)->AccountingBytesReadInInterval = 0;
- NS(mock_state)->AccountingBytesWrittenInInterval = 0;
- return NS(mock_state);
- }
- #undef NS_SUBMODULE
- #define NS_SUBMODULE ASPECT(log_heartbeat, packaged_cell_fullness)
- /*
- * Tests that log_heartbeat() correctly logs packaged cell
- * fullness information.
- */
- NS_DECL(double, tls_get_write_overhead_ratio, (void));
- NS_DECL(int, we_are_hibernating, (void));
- NS_DECL(int, public_server_mode, (const or_options_t *options));
- NS_DECL(long, get_uptime, (void));
- NS_DECL(uint64_t, get_bytes_read, (void));
- NS_DECL(uint64_t, get_bytes_written, (void));
- NS_DECL(void, logv, (int severity, log_domain_mask_t domain,
- const char *funcname, const char *suffix, const char *format, va_list ap));
- NS_DECL(int, server_mode, (const or_options_t *options));
- NS_DECL(int, accounting_is_enabled, (const or_options_t *options));
- static void
- NS(test_main)(void *arg)
- {
- int expected, actual;
- (void)arg;
- NS_MOCK(tls_get_write_overhead_ratio);
- NS_MOCK(we_are_hibernating);
- NS_MOCK(public_server_mode);
- NS_MOCK(get_uptime);
- NS_MOCK(get_bytes_read);
- NS_MOCK(get_bytes_written);
- NS_MOCK(logv);
- NS_MOCK(server_mode);
- NS_MOCK(accounting_is_enabled);
- log_global_min_severity_ = LOG_DEBUG;
- stats_n_data_bytes_packaged = RELAY_PAYLOAD_SIZE;
- stats_n_data_cells_packaged = 2;
- expected = 0;
- actual = log_heartbeat(0);
- tt_int_op(actual, OP_EQ, expected);
- tt_int_op(CALLED(logv), OP_EQ, 2);
- done:
- stats_n_data_bytes_packaged = 0;
- stats_n_data_cells_packaged = 0;
- NS_UNMOCK(tls_get_write_overhead_ratio);
- NS_UNMOCK(we_are_hibernating);
- NS_UNMOCK(public_server_mode);
- NS_UNMOCK(get_uptime);
- NS_UNMOCK(get_bytes_read);
- NS_UNMOCK(get_bytes_written);
- NS_UNMOCK(logv);
- NS_UNMOCK(server_mode);
- NS_UNMOCK(accounting_is_enabled);
- }
- static double
- NS(tls_get_write_overhead_ratio)(void)
- {
- return 1.0;
- }
- static int
- NS(we_are_hibernating)(void)
- {
- return 0;
- }
- static int
- NS(public_server_mode)(const or_options_t *options)
- {
- (void)options;
- return 0;
- }
- static long
- NS(get_uptime)(void)
- {
- return 0;
- }
- static uint64_t
- NS(get_bytes_read)(void)
- {
- return 0;
- }
- static uint64_t
- NS(get_bytes_written)(void)
- {
- return 0;
- }
- static void
- NS(logv)(int severity, log_domain_mask_t domain, const char *funcname,
- const char *suffix, const char *format, va_list ap)
- {
- switch (CALLED(logv))
- {
- case 0:
- tt_int_op(severity, OP_EQ, LOG_NOTICE);
- tt_int_op(domain, OP_EQ, LD_HEARTBEAT);
- tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL);
- tt_ptr_op(suffix, OP_EQ, NULL);
- tt_str_op(format, OP_EQ,
- "Heartbeat: Tor's uptime is %s, with %d circuits open. "
- "I've sent %s and received %s.%s");
- tt_str_op(va_arg(ap, char *), OP_EQ, "0:00 hours"); /* uptime */
- tt_int_op(va_arg(ap, int), OP_EQ, 0); /* count_circuits() */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_sent */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_rcvd */
- tt_str_op(va_arg(ap, char *), OP_EQ, ""); /* hibernating */
- break;
- case 1:
- tt_int_op(severity, OP_EQ, LOG_NOTICE);
- tt_int_op(domain, OP_EQ, LD_HEARTBEAT);
- tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL);
- tt_ptr_op(suffix, OP_EQ, NULL);
- tt_str_op(format, OP_EQ,
- "Average packaged cell fullness: %2.3f%%. "
- "TLS write overhead: %.f%%");
- tt_double_op(fabs(va_arg(ap, double) - 50.0), OP_LE, DBL_EPSILON);
- tt_double_op(fabs(va_arg(ap, double) - 0.0), OP_LE, DBL_EPSILON);
- break;
- default:
- tt_abort_msg("unexpected call to logv()"); // TODO: prettyprint args
- break;
- }
- done:
- CALLED(logv)++;
- }
- static int
- NS(server_mode)(const or_options_t *options)
- {
- (void)options;
- return 0;
- }
- static int
- NS(accounting_is_enabled)(const or_options_t *options)
- {
- (void)options;
- return 0;
- }
- #undef NS_SUBMODULE
- #define NS_SUBMODULE ASPECT(log_heartbeat, tls_write_overhead)
- /*
- * Tests that log_heartbeat() correctly logs the TLS write overhead information
- * when the TLS write overhead ratio exceeds 1.
- */
- NS_DECL(double, tls_get_write_overhead_ratio, (void));
- NS_DECL(int, we_are_hibernating, (void));
- NS_DECL(int, public_server_mode, (const or_options_t *options));
- NS_DECL(long, get_uptime, (void));
- NS_DECL(uint64_t, get_bytes_read, (void));
- NS_DECL(uint64_t, get_bytes_written, (void));
- NS_DECL(void, logv, (int severity, log_domain_mask_t domain,
- const char *funcname, const char *suffix, const char *format, va_list ap));
- NS_DECL(int, server_mode, (const or_options_t *options));
- NS_DECL(int, accounting_is_enabled, (const or_options_t *options));
- static void
- NS(test_main)(void *arg)
- {
- int expected, actual;
- (void)arg;
- NS_MOCK(tls_get_write_overhead_ratio);
- NS_MOCK(we_are_hibernating);
- NS_MOCK(public_server_mode);
- NS_MOCK(get_uptime);
- NS_MOCK(get_bytes_read);
- NS_MOCK(get_bytes_written);
- NS_MOCK(logv);
- NS_MOCK(server_mode);
- NS_MOCK(accounting_is_enabled);
- stats_n_data_cells_packaged = 0;
- log_global_min_severity_ = LOG_DEBUG;
- expected = 0;
- actual = log_heartbeat(0);
- tt_int_op(actual, OP_EQ, expected);
- tt_int_op(CALLED(logv), OP_EQ, 2);
- done:
- NS_UNMOCK(tls_get_write_overhead_ratio);
- NS_UNMOCK(we_are_hibernating);
- NS_UNMOCK(public_server_mode);
- NS_UNMOCK(get_uptime);
- NS_UNMOCK(get_bytes_read);
- NS_UNMOCK(get_bytes_written);
- NS_UNMOCK(logv);
- NS_UNMOCK(server_mode);
- NS_UNMOCK(accounting_is_enabled);
- }
- static double
- NS(tls_get_write_overhead_ratio)(void)
- {
- return 2.0;
- }
- static int
- NS(we_are_hibernating)(void)
- {
- return 0;
- }
- static int
- NS(public_server_mode)(const or_options_t *options)
- {
- (void)options;
- return 0;
- }
- static long
- NS(get_uptime)(void)
- {
- return 0;
- }
- static uint64_t
- NS(get_bytes_read)(void)
- {
- return 0;
- }
- static uint64_t
- NS(get_bytes_written)(void)
- {
- return 0;
- }
- static void
- NS(logv)(int severity, log_domain_mask_t domain,
- const char *funcname, const char *suffix, const char *format, va_list ap)
- {
- switch (CALLED(logv))
- {
- case 0:
- tt_int_op(severity, OP_EQ, LOG_NOTICE);
- tt_int_op(domain, OP_EQ, LD_HEARTBEAT);
- tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL);
- tt_ptr_op(suffix, OP_EQ, NULL);
- tt_str_op(format, OP_EQ,
- "Heartbeat: Tor's uptime is %s, with %d circuits open. "
- "I've sent %s and received %s.%s");
- tt_str_op(va_arg(ap, char *), OP_EQ, "0:00 hours"); /* uptime */
- tt_int_op(va_arg(ap, int), OP_EQ, 0); /* count_circuits() */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_sent */
- tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_rcvd */
- tt_str_op(va_arg(ap, char *), OP_EQ, ""); /* hibernating */
- break;
- case 1:
- tt_int_op(severity, OP_EQ, LOG_NOTICE);
- tt_int_op(domain, OP_EQ, LD_HEARTBEAT);
- tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL);
- tt_ptr_op(suffix, OP_EQ, NULL);
- tt_str_op(format, OP_EQ,
- "Average packaged cell fullness: %2.3f%%. "
- "TLS write overhead: %.f%%");
- tt_int_op(fabs(va_arg(ap, double) - 100.0) <= DBL_EPSILON, OP_EQ, 1);
- tt_double_op(fabs(va_arg(ap, double) - 100.0), OP_LE, DBL_EPSILON);
- break;
- default:
- tt_abort_msg("unexpected call to logv()"); // TODO: prettyprint args
- break;
- }
- done:
- CALLED(logv)++;
- }
- static int
- NS(server_mode)(const or_options_t *options)
- {
- (void)options;
- return 0;
- }
- static int
- NS(accounting_is_enabled)(const or_options_t *options)
- {
- (void)options;
- return 0;
- }
- #undef NS_SUBMODULE
- struct testcase_t status_tests[] = {
- TEST_CASE(count_circuits),
- TEST_CASE(secs_to_uptime),
- TEST_CASE(bytes_to_usage),
- TEST_CASE_ASPECT(log_heartbeat, fails),
- TEST_CASE_ASPECT(log_heartbeat, simple),
- TEST_CASE_ASPECT(log_heartbeat, not_in_consensus),
- TEST_CASE_ASPECT(log_heartbeat, calls_log_accounting),
- TEST_CASE_ASPECT(log_heartbeat, packaged_cell_fullness),
- TEST_CASE_ASPECT(log_heartbeat, tls_write_overhead),
- END_OF_TESTCASES
- };
|