📄 search_linked_download_persistence_test.c
字号:
/* This file is part of GNUnet. (C) 2004, 2005, 2006 Christian Grothoff (and other contributing authors) 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 option) any later version. GNUnet is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNUnet; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.*//** * @file applications/fs/fsui/search_linked_download_persistence_test.c * @brief testcase for fsui download persistence for recursive * download linked to search * @author Christian Grothoff */#include "platform.h"#include "gnunet_util.h"#include "gnunet_fsui_lib.h"#define DEBUG_VERBOSE GNUNET_NO#define UPLOAD_PREFIX "/tmp/gnunet-fsui-search_linked_download_persistence_test"#define CHECK(a) if (!(a)) { ok = GNUNET_NO; GNUNET_GE_BREAK(ectx, 0); goto FAILURE; }static struct GNUNET_GE_Context *ectx;static char *makeName (unsigned int i){ char *fn; fn = GNUNET_malloc (strlen (UPLOAD_PREFIX "/FSUITEST") + 14); GNUNET_snprintf (fn, strlen (UPLOAD_PREFIX "/FSUITEST") + 14, UPLOAD_PREFIX "/FSUITEST%u", i); GNUNET_disk_directory_create_for_file (NULL, fn); return fn;}static struct GNUNET_FSUI_Context *ctx;static struct GNUNET_ECRS_URI *upURI;static struct GNUNET_FSUI_SearchList *search;static struct GNUNET_FSUI_DownloadList *download;static int have_error;/** * Set to 1 if we are about to stop the search and * thus our simple tests for download event correctness * would not work correctly. */static int no_check;static void *eventCallback (void *cls, const GNUNET_FSUI_Event * event){ if (no_check) return NULL; switch (event->type) { case GNUNET_FSUI_search_suspended: search = NULL; break; case GNUNET_FSUI_download_suspended: if (event->data.DownloadSuspended.dc.spos != search) { fprintf (stderr, "Download suspended but search reference not set correctly.\n"); have_error = 1; } if ((event->data.DownloadSuspended.dc.pos == download) && (event->data.DownloadSuspended.dc.ppos != NULL)) { fprintf (stderr, "Download suspended but parent reference not set to NULL.\n"); have_error = 1; } if ((event->data.DownloadSuspended.dc.pos != download) && (event->data.DownloadSuspended.dc.ppos != download)) { fprintf (stderr, "Download suspended but parent reference not set correctly (%p instead of %p).\n", event->data.DownloadSuspended.dc.ppos, download); have_error = 1; } if (event->data.DownloadSuspended.dc.pos == download) download = NULL; break; case GNUNET_FSUI_search_resumed:#if DEBUG_VERBOSE printf ("Search resuming\n");#endif search = event->data.SearchResumed.sc.pos; break; case GNUNET_FSUI_download_resumed: if (download == NULL) download = event->data.DownloadResumed.dc.pos; if (event->data.DownloadResumed.dc.spos != search) { fprintf (stderr, "Download resuming but search reference not set correctly.\n"); abort (); have_error = 1; } if ((event->data.DownloadResumed.dc.pos == download) && (event->data.DownloadResumed.dc.ppos != NULL)) { fprintf (stderr, "Download resuming but parent reference not set to NULL.\n"); have_error = 1; } if ((event->data.DownloadResumed.dc.pos != download) && (event->data.DownloadResumed.dc.ppos != download)) { fprintf (stderr, "Download resuming but parent reference not set correctly.\n"); have_error = 1; }#if DEBUG_VERBOSE printf ("Download resuming\n");#endif break; case GNUNET_FSUI_search_result:#if DEBUG_VERBOSE printf ("Received search result\n");#endif break; case GNUNET_FSUI_upload_progress:#if DEBUG_VERBOSE printf ("Upload is progressing (%llu/%llu)...\n", event->data.UploadProgress.completed, event->data.UploadProgress.total);#endif break; case GNUNET_FSUI_upload_completed: if (upURI != NULL) GNUNET_ECRS_uri_destroy (upURI); upURI = GNUNET_ECRS_uri_duplicate (event->data.UploadCompleted.uri);#if DEBUG_VERBOSE printf ("Upload complete.\n");#endif break; case GNUNET_FSUI_download_completed: if (event->data.DownloadCompleted.dc.spos != search) { fprintf (stderr, "Download completed but search reference not set correctly.\n"); have_error = 1; } if ((event->data.DownloadCompleted.dc.pos == download) && (event->data.DownloadCompleted.dc.ppos != NULL)) { fprintf (stderr, "Download completed but parent reference not set to NULL.\n"); have_error = 1; } if ((event->data.DownloadCompleted.dc.pos != download) && (event->data.DownloadCompleted.dc.ppos != download)) { fprintf (stderr, "Download completed but parent reference not set correctly.\n"); have_error = 1; }#if DEBUG_VERBOSE printf ("Download complete.\n");#endif break; case GNUNET_FSUI_download_progress: if (event->data.DownloadResumed.dc.spos != search) { fprintf (stderr, "Download progressing but search reference not set correctly.\n"); have_error = 1; } if ((event->data.DownloadResumed.dc.pos == download) && (event->data.DownloadResumed.dc.ppos != NULL)) { fprintf (stderr, "Download progressing but parent reference not set to NULL.\n"); have_error = 1; } if ((event->data.DownloadResumed.dc.pos != download) && (event->data.DownloadResumed.dc.ppos != download)) { fprintf (stderr, "Download progressing but parent reference not set correctly.\n"); have_error = 1; }#if DEBUG_VERBOSE printf ("Download is progressing (%llu/%llu)...\n", event->data.DownloadProgress.completed, event->data.DownloadProgress.total);#endif break; case GNUNET_FSUI_unindex_progress:#if DEBUG_VERBOSE printf ("Unindex is progressing (%llu/%llu)...\n", event->data.UnindexProgress.completed, event->data.UnindexProgress.total);#endif break; case GNUNET_FSUI_unindex_completed:#if DEBUG_VERBOSE printf ("Unindex complete.\n");#endif break; case GNUNET_FSUI_unindex_error: fprintf (stderr, "Received ERROR: %d %s\n", event->type, event->data.UnindexError.message); GNUNET_GE_BREAK (ectx, 0); break; case GNUNET_FSUI_upload_error: fprintf (stderr, "Received ERROR: %d %s\n", event->type, event->data.UploadError.message); GNUNET_GE_BREAK (ectx, 0); break; case GNUNET_FSUI_download_error: fprintf (stderr, "Received ERROR: %d %s\n", event->type, event->data.DownloadError.message);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -