X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Ffs%2Ffs_test_lib.c;h=dd646eafe6168325c87eab9704b94a97c822aa6a;hb=bef20834523944b625a550e5a14ad94fbbcc6e6e;hp=a8db67c8c24b6534dc2501f59844039e4735343b;hpb=63cbdf3480ac74d7760730d1e3b96ab177fbb550;p=oweals%2Fgnunet.git diff --git a/src/fs/fs_test_lib.c b/src/fs/fs_test_lib.c index a8db67c8c..dd646eafe 100644 --- a/src/fs/fs_test_lib.c +++ b/src/fs/fs_test_lib.c @@ -4,7 +4,7 @@ GNUnet is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published - by the Free Software Foundation; either version 2, or (at your + by the Free Software Foundation; either version 3, or (at your option) any later version. GNUnet is distributed in the hope that it will be useful, but @@ -38,6 +38,12 @@ struct GNUNET_FS_TestDaemon { + /** + * Global configuration, only stored in first test daemon, + * otherwise NULL. + */ + struct GNUNET_CONFIGURATION_Handle *gcfg; + /** * Handle to the file sharing context using this daemon. */ @@ -137,6 +143,32 @@ struct GNUNET_FS_TestDaemon }; +/** + * Check whether peers successfully shut down. + */ +static void +shutdown_callback (void *cls, + const char *emsg) +{ + struct GNUNET_CONFIGURATION_Handle *gcfg = cls; + + if (emsg != NULL) + { + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "Shutdown of peers failed: %s\n", + emsg); + } + else + { +#if VERBOSE + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, + "All peers successfully shut down!\n"); +#endif + } + if (gcfg != NULL) + GNUNET_CONFIGURATION_destroy (gcfg); +} + static void report_uri (void *cls, @@ -174,6 +206,7 @@ report_success (void *cls, daemon->download_sched = NULL; } + static void* progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *info) @@ -228,7 +261,6 @@ progress_cb (void *cls, } - struct StartContext { struct GNUNET_SCHEDULER_Handle *sched; @@ -261,11 +293,21 @@ notify_running (void *cls, emsg); return; } + i = 0; + while (i < sctx->total) + { + if (GNUNET_TESTING_daemon_get (sctx->group, + i) == d) + break; + i++; + } + GNUNET_assert (i < sctx->total); GNUNET_assert (sctx->have < sctx->total); - sctx->daemons[sctx->have]->cfg = GNUNET_CONFIGURATION_dup (cfg); - sctx->daemons[sctx->have]->group = sctx->group; - sctx->daemons[sctx->have]->daemon = d; - sctx->daemons[sctx->have]->id = *id; + GNUNET_assert (sctx->daemons[i]->cfg == NULL); + sctx->daemons[i]->cfg = GNUNET_CONFIGURATION_dup (cfg); + sctx->daemons[i]->group = sctx->group; + sctx->daemons[i]->daemon = d; + sctx->daemons[i]->id = *id; sctx->have++; if (sctx->have == sctx->total) { @@ -273,17 +315,19 @@ notify_running (void *cls, sctx->cont, sctx->cont_cls, GNUNET_SCHEDULER_REASON_PREREQ_DONE); - GNUNET_CONFIGURATION_destroy (sctx->cfg); + sctx->daemons[0]->gcfg = sctx->cfg; GNUNET_SCHEDULER_cancel (sctx->sched, sctx->timeout_task); for (i=0;itotal;i++) - sctx->daemons[i]->fs = GNUNET_FS_start (sctx->sched, - sctx->daemons[i]->cfg, - "", - &progress_cb, - sctx->daemons[i], - GNUNET_FS_FLAGS_NONE, - GNUNET_FS_OPTIONS_END); + { + sctx->daemons[i]->fs = GNUNET_FS_start (sctx->sched, + sctx->daemons[i]->cfg, + "", + &progress_cb, + sctx->daemons[i], + GNUNET_FS_FLAGS_NONE, + GNUNET_FS_OPTIONS_END); + } GNUNET_free (sctx); } } @@ -296,12 +340,18 @@ start_timeout (void *cls, struct StartContext *sctx = cls; unsigned int i; - GNUNET_TESTING_daemons_stop (sctx->group, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 30)); + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "Timeout while trying to start daemons\n"); + GNUNET_TESTING_daemons_stop (sctx->group, + GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 30), + &shutdown_callback, + NULL); for (i=0;itotal;i++) { if (i < sctx->have) GNUNET_CONFIGURATION_destroy (sctx->daemons[i]->cfg); GNUNET_free (sctx->daemons[i]); + sctx->daemons[i] = NULL; } GNUNET_CONFIGURATION_destroy (sctx->cfg); GNUNET_SCHEDULER_add_continuation (sctx->sched, @@ -316,6 +366,7 @@ start_timeout (void *cls, * Start daemons for testing. * * @param sched scheduler to use + * @param template_cfg_file configuration template to use * @param timeout if this operation cannot be completed within the * given period, call the continuation with an error code * @param total number of daemons to start @@ -326,6 +377,7 @@ start_timeout (void *cls, */ void GNUNET_FS_TEST_daemons_start (struct GNUNET_SCHEDULER_Handle *sched, + const char *template_cfg_file, struct GNUNET_TIME_Relative timeout, unsigned int total, struct GNUNET_FS_TestDaemon **daemons, @@ -345,7 +397,7 @@ GNUNET_FS_TEST_daemons_start (struct GNUNET_SCHEDULER_Handle *sched, sctx->cfg = GNUNET_CONFIGURATION_create (); if (GNUNET_OK != GNUNET_CONFIGURATION_load (sctx->cfg, - "fs_test_lib_data.conf")) + template_cfg_file)) { GNUNET_break (0); GNUNET_CONFIGURATION_destroy (sctx->cfg); @@ -383,10 +435,25 @@ struct ConnectContext }; +/** + * Prototype of a function that will be called whenever + * two daemons are connected by the testing library. + * + * @param cls closure + * @param first peer id for first daemon + * @param second peer id for the second daemon + * @param distance distance between the connected peers + * @param first_cfg config for the first daemon + * @param second_cfg config for the second daemon + * @param first_daemon handle for the first daemon + * @param second_daemon handle for the second daemon + * @param emsg error message (NULL on success) + */ static void notify_connection (void *cls, const struct GNUNET_PeerIdentity *first, const struct GNUNET_PeerIdentity *second, + uint32_t distance, const struct GNUNET_CONFIGURATION_Handle *first_cfg, const struct GNUNET_CONFIGURATION_Handle *second_cfg, struct GNUNET_TESTING_Daemon *first_daemon, @@ -397,7 +464,7 @@ notify_connection (void *cls, if (emsg != NULL) GNUNET_log (GNUNET_ERROR_TYPE_WARNING, - _("Failed to connect peers: %s\n"), + "Failed to connect peers: %s\n", emsg); GNUNET_SCHEDULER_add_continuation (cc->sched, cc->cont, @@ -443,6 +510,33 @@ GNUNET_FS_TEST_daemons_connect (struct GNUNET_SCHEDULER_Handle *sched, } +/** + * Obtain peer configuration used for testing. + * + * @param daemons array with the daemons + * @param off which configuration to get + * @return peer configuration + */ +const struct GNUNET_CONFIGURATION_Handle * +GNUNET_FS_TEST_get_configuration (struct GNUNET_FS_TestDaemon **daemons, + unsigned int off) +{ + return daemons[off]->cfg; +} + +/** + * Obtain peer group used for testing. + * + * @param daemons array with the daemons (must contain at least one) + * @return peer group + */ +struct GNUNET_TESTING_PeerGroup * +GNUNET_FS_TEST_get_group (struct GNUNET_FS_TestDaemon **daemons) +{ + return daemons[0]->group; +} + + /** * Stop daemons used for testing. * @@ -456,16 +550,25 @@ GNUNET_FS_TEST_daemons_stop (struct GNUNET_SCHEDULER_Handle *sched, struct GNUNET_FS_TestDaemon **daemons) { unsigned int i; + struct GNUNET_TESTING_PeerGroup *pg; + struct GNUNET_CONFIGURATION_Handle *gcfg; GNUNET_assert (total > 0); - GNUNET_TESTING_daemons_stop (daemons[0]->group, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 30)); + pg = daemons[0]->group; + gcfg = daemons[0]->gcfg; for (i=0;ifs); - GNUNET_CONFIGURATION_destroy (daemons[i]->cfg); + if (daemons[i]->fs != NULL) + GNUNET_FS_stop (daemons[i]->fs); + if (daemons[i]->cfg != NULL) + GNUNET_CONFIGURATION_destroy (daemons[i]->cfg); GNUNET_free (daemons[i]); daemons[i] = NULL; } + GNUNET_TESTING_daemons_stop (pg, + GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 30), + &shutdown_callback, + gcfg); } @@ -475,7 +578,9 @@ publish_timeout (void *cls, { struct GNUNET_FS_TestDaemon *daemon = cls; GNUNET_FS_TEST_UriContinuation cont; - + + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "Timeout while trying to publish data\n"); cont = daemon->publish_cont; daemon->publish_timeout_task = GNUNET_SCHEDULER_NO_TASK; daemon->publish_cont = NULL; @@ -498,7 +603,11 @@ file_generator (void *cls, uint8_t *cbuf = buf; int mod; - for (pos=0;pos> pos*8); + for (pos=8;posdownload_timeout_task = GNUNET_SCHEDULER_NO_TASK; GNUNET_FS_download_stop (daemon->download_context, GNUNET_YES); daemon->download_context = NULL;