X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Ftesting%2Ftest_testing_topology.c;h=dfc59ab74339860e7fc193603809d668fe06f515;hb=f108c06868a1a9062e0098b6bc7dfeb9dcfddfe1;hp=5d71d201646943cbe172fab1bbc51135700d4fd9;hpb=cc3a0bc78da6f3d29003e1f84c57742e9cf3da3c;p=oweals%2Fgnunet.git diff --git a/src/testing/test_testing_topology.c b/src/testing/test_testing_topology.c index 5d71d2016..dfc59ab74 100644 --- a/src/testing/test_testing_topology.c +++ b/src/testing/test_testing_topology.c @@ -658,11 +658,11 @@ run (void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) { - unsigned long long topology_num; - unsigned long long connect_topology_num; - unsigned long long blacklist_topology_num; - unsigned long long connect_topology_option_num; - char *connect_topology_option_modifier_string; + char * topology_str; + char * connect_topology_str; + char * blacklist_topology_str; + char * connect_topology_option_str; + char * connect_topology_option_modifier_string; sched = s; ok = 1; @@ -683,20 +683,31 @@ run (void *cls, return; } - if (GNUNET_YES == - GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "topology", - &topology_num)) - topology = topology_num; + if ((GNUNET_YES == + GNUNET_CONFIGURATION_get_value_string(cfg, "testing", "topology", + &topology_str)) && (GNUNET_NO == GNUNET_TESTING_topology_get(&topology, topology_str))) + { + GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + "Invalid topology `%s' given for section %s option %s\n", topology_str, "TESTING", "TOPOLOGY"); + topology = GNUNET_TESTING_TOPOLOGY_CLIQUE; /* Defaults to NONE, so set better default here */ + } - if (GNUNET_YES == - GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "connect_topology", - &connect_topology_num)) - connection_topology = connect_topology_num; + if ((GNUNET_YES == + GNUNET_CONFIGURATION_get_value_string(cfg, "testing", "connect_topology", + &connect_topology_str)) && (GNUNET_NO == GNUNET_TESTING_topology_get(&connection_topology, connect_topology_str))) + { + GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + "Invalid connect topology `%s' given for section %s option %s\n", connect_topology_str, "TESTING", "CONNECT_TOPOLOGY"); + } - if (GNUNET_YES == - GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "connect_topology_option", - &connect_topology_option_num)) - connect_topology_option = connect_topology_option_num; + if ((GNUNET_YES == + GNUNET_CONFIGURATION_get_value_string(cfg, "testing", "connect_topology_option", + &connect_topology_option_str)) && (GNUNET_NO == GNUNET_TESTING_topology_option_get(&connect_topology_option, connect_topology_option_str))) + { + GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + "Invalid connect topology option `%s' given for section %s option %s\n", connect_topology_option_str, "TESTING", "CONNECT_TOPOLOGY_OPTION"); + connect_topology_option = GNUNET_TESTING_TOPOLOGY_OPTION_ALL; /* Defaults to NONE, set to ALL */ + } if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "connect_topology_option_modifier", @@ -717,10 +728,13 @@ run (void *cls, &blacklist_transports)) blacklist_transports = NULL; - if (GNUNET_YES == - GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "blacklist_topology", - &blacklist_topology_num)) - blacklist_topology = blacklist_topology_num; + if ((GNUNET_YES == + GNUNET_CONFIGURATION_get_value_string(cfg, "testing", "blacklist_topology", + & blacklist_topology_str)) && (GNUNET_NO == GNUNET_TESTING_topology_get(&blacklist_topology, blacklist_topology_str))) + { + GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + "Invalid topology `%s' given for section %s option %s\n", topology_str, "TESTING", "BLACKLIST_TOPOLOGY"); + } if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "num_peers",