indentation
[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,
69                 "Finished download, shutting down\n",
70                 (unsigned long long) FILESIZE);
71   }
72   else
73   {
74     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
75                 "Timeout during download, shutting down with error\n");
76     ok = 1;
77   }
78 }
79
80
81 static void
82 do_download (void *cls, const struct GNUNET_FS_Uri *uri)
83 {
84   if (NULL == uri)
85   {
86     GNUNET_FS_TEST_daemons_stop (NUM_DAEMONS, daemons);
87     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
88                 "Timeout during upload attempt, shutting down with error\n");
89     ok = 1;
90     return;
91   }
92   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
93               "Downloading %llu bytes\n", (unsigned long long) FILESIZE);
94   start_time = GNUNET_TIME_absolute_get ();
95   GNUNET_FS_TEST_download (daemons[0],
96                            TIMEOUT, 1, SEED, uri, VERBOSE, &do_stop, NULL);
97 }
98
99
100 static void
101 do_publish (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
102 {
103   if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE))
104   {
105     GNUNET_FS_TEST_daemons_stop (NUM_DAEMONS, daemons);
106     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
107                 "Timeout during connect attempt, shutting down with error\n");
108     ok = 1;
109     return;
110   }
111   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
112               "Publishing %llu bytes\n", (unsigned long long) FILESIZE);
113   GNUNET_FS_TEST_publish (daemons[1],
114                           TIMEOUT,
115                           1, GNUNET_NO, FILESIZE, SEED,
116                           VERBOSE, &do_download, NULL);
117 }
118
119
120 static void
121 do_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
122 {
123   GNUNET_assert (0 != (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE));
124   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
125               "Daemons started, will now try to connect them\n");
126   GNUNET_FS_TEST_daemons_connect (daemons[0],
127                                   daemons[1], TIMEOUT, &do_publish, NULL);
128 }
129
130
131 static void
132 run (void *cls,
133      char *const *args,
134      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
135 {
136   GNUNET_FS_TEST_daemons_start ("fs_test_lib_data.conf",
137                                 TIMEOUT,
138                                 NUM_DAEMONS, daemons, &do_connect, NULL);
139 }
140
141
142 int
143 main (int argc, char *argv[])
144 {
145   char *const argvx[] = {
146     "test-gnunet-service-fs-p2p",
147     "-c",
148     "fs_test_lib_data.conf",
149 #if VERBOSE
150     "-L", "DEBUG",
151 #endif
152     NULL
153   };
154   struct GNUNET_GETOPT_CommandLineOption options[] = {
155     GNUNET_GETOPT_OPTION_END
156   };
157
158   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-lib/");
159   GNUNET_log_setup ("test_gnunet_service_fs_p2p",
160 #if VERBOSE
161                     "DEBUG",
162 #else
163                     "WARNING",
164 #endif
165                     NULL);
166   GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1,
167                       argvx, "test-gnunet-service-fs-p2p",
168                       "nohelp", options, &run, NULL);
169   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-lib/");
170   return ok;
171 }
172
173 /* end of test_gnunet_service_fs_p2p.c */