$(top_builddir)/src/transport/libgnunettransport.la \
-lm \
$(top_builddir)/src/util/libgnunetutil.la
+
+#noinst_PROGRAMS = ${check_PROGRAMS}
check_PROGRAMS = \
test_testing \
test_testing_connect \
test_testing_group \
+ test_testing_topology_stability \
test_testing_topology_clique \
test_testing_topology_clique_random \
test_testing_topology_clique_minimum \
test_testing_connect \
test_testing_group \
test_testing_topology_clique
+# test_testing_topology_stability \
# test_testing_topology_clique_random \
# test_testing_topology_clique_minimum \
# test_testing_topology_clique_dfs \
$(top_builddir)/src/testing/libgnunettesting.la \
$(top_builddir)/src/util/libgnunetutil.la
+test_testing_topology_stability_SOURCES = \
+ test_testing_topology.c
+test_testing_topology_stability_LDADD = \
+ $(top_builddir)/src/testing/libgnunettesting.la \
+ $(top_builddir)/src/util/libgnunetutil.la
+
test_testing_topology_blacklist_SOURCES = \
test_testing_topology_blacklist.c
test_testing_topology_blacklist_LDADD = \
/**
* How long until we fail the whole testcase?
*/
-#define TEST_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 600)
+#define TEST_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 240)
/**
* How long until we give up on starting the peers?
static unsigned long long num_peers;
+static unsigned int topology_connections;
+
static unsigned int total_connections;
static unsigned int failed_connections;
static char *dotOutFileName;
+static struct GNUNET_TIME_Relative settle_time;
+
static FILE *dotOutFile;
static char *topology_string;
}
#endif
+
static void
finish_testing ()
{
GNUNET_free(free_pos);
}
#if VERBOSE
- GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
- "Transmit_ready's scheduled %d, failed %d, transmit_ready's called %d\n", transmit_ready_scheduled, transmit_ready_failed, transmit_ready_called);
+ GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+ "Transmit_ready's scheduled %d, failed %d, transmit_ready's called %d\n", transmit_ready_scheduled, transmit_ready_failed, transmit_ready_called);
#endif
#if VERBOSE
outfile = cls;
if (first != NULL)
{
- if (outfile == NULL)
- fprintf(stderr, "Peer %s connected to %s\n", GNUNET_i2s(first), GNUNET_h2s(&second->hashPubKey));
- else
+ if (outfile != NULL)
{
fprintf(outfile, "\t\"%s\" -- ", GNUNET_i2s(first));
fprintf(outfile, "\"%s\";\n", GNUNET_i2s(second));
}
+ topology_connections++;
}
else
{
- fprintf(stderr, "Finished iterating over topology!\n");
+ fprintf(stderr, "Finished iterating over topology, %d total connections!\n", topology_connections);
if (outfile != NULL)
{
fprintf(outfile, "}\n");
fclose(outfile);
+ GNUNET_SCHEDULER_add_now (sched, &finish_testing, NULL);
}
- GNUNET_SCHEDULER_add_now (sched, &finish_testing, NULL);
}
}
{
fprintf(dotOutFileFinished, "strict graph G {\n");
}
+ topology_connections = 0;
GNUNET_TESTING_get_topology (pg, &topology_cb, dotOutFileFinished);
//GNUNET_SCHEDULER_add_now (sched, &finish_testing, NULL);
}
GNUNET_free(free_pos);
}
+#if VERBOSE
+ GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+ "Transmit_ready's scheduled %d, failed %d, transmit_ready's called %d\n", transmit_ready_scheduled, transmit_ready_failed, transmit_ready_called);
+ GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+ "Total messages received %d, expected %d.\n", total_messages_received, expected_messages);
+#endif
+
if (pg != NULL)
{
GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
{
struct TestMessageContext *pos = cls;
+ if ((pos == test_messages) && (settle_time.value > 0))
+ {
+ topology_connections = 0;
+ GNUNET_TESTING_get_topology (pg, &topology_cb, NULL);
+ }
if ((tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN) || (cls == NULL))
return;
{
die_task = GNUNET_SCHEDULER_add_delayed (sched,
TEST_TIMEOUT,
- &end_badly, "from create topology (timeout)");
+ &end_badly, "from send test messages (timeout)");
}
if (total_server_connections >= MAX_OUTSTANDING_CONNECTIONS)
&send_test_messages, test_messages);
gather_log_data();
#else
- GNUNET_SCHEDULER_add_now (sched, &send_test_messages, test_messages);
+ if (settle_time.value > 0)
+ {
+ GNUNET_TESTING_get_topology (pg, &topology_cb, NULL);
+ }
+ GNUNET_SCHEDULER_add_delayed (sched, settle_time, &send_test_messages, test_messages);
#endif
#if VERBOSE
fprintf(stdout, "Test message progress: [");
char * blacklist_topology_str;
char * connect_topology_option_str;
char * connect_topology_option_modifier_string;
+ unsigned long long temp_settle;
sched = s;
ok = 1;
GNUNET_free_non_null(topology_str);
GNUNET_free_non_null(blacklist_topology_str);
+ if (GNUNET_OK ==
+ GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "settle_time",
+ &temp_settle))
+ settle_time = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_settle);
+
if (GNUNET_SYSERR ==
GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "num_peers",
&num_peers))