aece0e80ac72eec626aa01b9e23b27e7cadd6afc
[oweals/gnunet.git] / src / fs / test_gnunet_service_fs_p2p.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file fs/test_gnunet_service_fs_p2p.c
23  * @brief test P2P routing using simple publish + download operation
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "fs_test_lib.h"
28
29 #define VERBOSE GNUNET_NO
30
31 /**
32  * File-size we use for testing.
33  */
34 #define FILESIZE (1024 * 1024 * 1)
35
36 /**
37  * How long until we give up on the download?
38  */
39 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 300)
40
41 #define NUM_DAEMONS 2
42
43 #define SEED 42
44
45 static struct GNUNET_FS_TestDaemon *daemons[NUM_DAEMONS];
46
47 static int ok;
48
49 static struct GNUNET_TIME_Absolute start_time;
50
51 static void
52 do_stop (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
53 {
54   struct GNUNET_TIME_Relative del;
55   char *fancy;
56
57   GNUNET_FS_TEST_daemons_stop (NUM_DAEMONS, daemons);
58   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE))
59   {
60     del = GNUNET_TIME_absolute_get_duration (start_time);
61     if (del.rel_value == 0)
62       del.rel_value = 1;
63     fancy =
64         GNUNET_STRINGS_byte_size_fancy (((unsigned long long) FILESIZE) *
65                                         1000LL / del.rel_value);
66     fprintf (stdout, "Download speed was %s/s\n", fancy);
67     GNUNET_free (fancy);
68     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Finished download, shutting down\n",
69                 (unsigned long long) FILESIZE);
70   }
71   else
72   {
73     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
74                 "Timeout during download, shutting down with error\n");
75     ok = 1;
76   }
77 }
78
79
80 static void
81 do_download (void *cls, const struct GNUNET_FS_Uri *uri)
82 {
83   if (NULL == uri)
84   {
85     GNUNET_FS_TEST_daemons_stop (NUM_DAEMONS, daemons);
86     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
87                 "Timeout during upload attempt, shutting down with error\n");
88     ok = 1;
89     return;
90   }
91   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Downloading %llu bytes\n",
92               (unsigned long long) FILESIZE);
93   start_time = GNUNET_TIME_absolute_get ();
94   GNUNET_FS_TEST_download (daemons[0], TIMEOUT, 1, SEED, uri, VERBOSE, &do_stop,
95                            NULL);
96 }
97
98
99 static void
100 do_publish (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
101 {
102   if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE))
103   {
104     GNUNET_FS_TEST_daemons_stop (NUM_DAEMONS, daemons);
105     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
106                 "Timeout during connect attempt, shutting down with error\n");
107     ok = 1;
108     return;
109   }
110   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Publishing %llu bytes\n",
111               (unsigned long long) FILESIZE);
112   GNUNET_FS_TEST_publish (daemons[1], TIMEOUT, 1, GNUNET_NO, FILESIZE, SEED,
113                           VERBOSE, &do_download, NULL);
114 }
115
116
117 static void
118 do_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
119 {
120   GNUNET_assert (0 != (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE));
121   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
122               "Daemons started, will now try to connect them\n");
123   GNUNET_FS_TEST_daemons_connect (daemons[0], daemons[1], TIMEOUT, &do_publish,
124                                   NULL);
125 }
126
127
128 static void
129 run (void *cls, char *const *args, const char *cfgfile,
130      const struct GNUNET_CONFIGURATION_Handle *cfg)
131 {
132   GNUNET_FS_TEST_daemons_start ("fs_test_lib_data.conf", TIMEOUT, NUM_DAEMONS,
133                                 daemons, &do_connect, NULL);
134 }
135
136
137 int
138 main (int argc, char *argv[])
139 {
140   char *const argvx[] = {
141     "test-gnunet-service-fs-p2p",
142     "-c",
143     "fs_test_lib_data.conf",
144 #if VERBOSE
145     "-L", "DEBUG",
146 #endif
147     NULL
148   };
149   struct GNUNET_GETOPT_CommandLineOption options[] = {
150     GNUNET_GETOPT_OPTION_END
151   };
152
153   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-lib/");
154   GNUNET_log_setup ("test_gnunet_service_fs_p2p",
155 #if VERBOSE
156                     "DEBUG",
157 #else
158                     "WARNING",
159 #endif
160                     NULL);
161   GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1, argvx,
162                       "test-gnunet-service-fs-p2p", "nohelp", options, &run,
163                       NULL);
164   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-lib/");
165   return ok;
166 }
167
168 /* end of test_gnunet_service_fs_p2p.c */