-fix dht flags
[oweals/gnunet.git] / src / fs / test_gnunet_service_fs_migration.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010, 2012 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_migration.c
23  * @brief test content migration between two peers
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "fs_test_lib.h"
28 #include "gnunet_testbed_service.h"
29
30 #define VERBOSE GNUNET_NO
31
32 /**
33  * File-size we use for testing.
34  */
35 #define FILESIZE (2 * 32 * 1024)
36
37 /**
38  * How long until we give up on transmitting the message?
39  */
40 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
41
42 /**
43  * How long do we give the peers for content migration?
44  */
45 #define MIGRATION_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 90)
46
47 #define SEED 42
48
49 static struct GNUNET_TESTBED_Peer *daemons[2];
50
51 static int ok;
52
53 static struct GNUNET_TIME_Absolute start_time;
54
55
56 static void
57 do_stop (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
58 {
59   struct GNUNET_TIME_Relative del;
60   char *fancy;
61
62   GNUNET_SCHEDULER_shutdown ();
63   if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_TIMEOUT))
64   {
65     del = GNUNET_TIME_absolute_get_duration (start_time);
66     if (del.rel_value == 0)
67       del.rel_value = 1;
68     fancy =
69         GNUNET_STRINGS_byte_size_fancy (((unsigned long long) FILESIZE) *
70                                         1000LL / del.rel_value);
71     FPRINTF (stdout, "Download speed was %s/s\n", fancy);
72     GNUNET_free (fancy);
73     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Finished download, shutting down\n",
74                 (unsigned long long) FILESIZE);
75   }
76   else
77   {
78     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
79                 "Timeout during download, shutting down with error\n");
80     ok = 1;
81   }
82 }
83
84
85 static void
86 do_download (void *cls, 
87              const char *emsg)
88 {
89   struct GNUNET_FS_Uri *uri = cls;
90
91   if (NULL != emsg)
92   {
93     GNUNET_SCHEDULER_shutdown ();
94     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Failed to stop source daemon: %s\n",
95                 emsg);
96     GNUNET_FS_uri_destroy (uri);
97     ok = 1;
98     return;
99   }
100   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Downloading %llu bytes\n",
101               (unsigned long long) FILESIZE);
102   start_time = GNUNET_TIME_absolute_get ();
103   GNUNET_FS_TEST_download (daemons[0], TIMEOUT, 1, SEED, uri, VERBOSE, &do_stop,
104                            NULL);
105   GNUNET_FS_uri_destroy (uri);
106 }
107
108
109 static void
110 stop_source_peer (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
111 {
112   struct GNUNET_FS_Uri *uri = cls;
113
114   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping source peer\n");
115   GNUNET_TESTBED_peer_stop (daemons[1], &do_download, uri);
116 }
117
118
119 static void
120 do_wait (void *cls, const struct GNUNET_FS_Uri *uri)
121 {
122   struct GNUNET_FS_Uri *d;
123
124   if (NULL == uri)
125   {
126     GNUNET_SCHEDULER_shutdown ();
127     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
128                 "Timeout during upload attempt, shutting down with error\n");
129     ok = 1;
130     return;
131   }
132   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Waiting to allow content to migrate\n");
133   d = GNUNET_FS_uri_dup (uri);
134   (void) GNUNET_SCHEDULER_add_delayed (MIGRATION_DELAY, &stop_source_peer, d);
135 }
136
137
138 static void
139 do_publish (void *cls, 
140             struct GNUNET_TESTBED_Operation *op,
141             const char *emsg)
142 {
143   if (NULL != emsg)
144   {
145     GNUNET_SCHEDULER_shutdown ();
146     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
147                 "Error connecting peers: %s\n",
148                 emsg);
149     ok = 1;
150     return;
151   }
152   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Publishing %llu bytes\n",
153               (unsigned long long) FILESIZE);
154   GNUNET_FS_TEST_publish (daemons[1], TIMEOUT, 1, GNUNET_NO, FILESIZE, SEED,
155                           VERBOSE, &do_wait, NULL);
156 }
157
158
159 static void
160 do_connect (void *cls, 
161             unsigned int num_peers,
162             struct GNUNET_TESTBED_Peer **peers)
163 {
164   unsigned int i;
165
166   GNUNET_assert (2 == num_peers);
167   for (i=0;i<num_peers;i++)
168     daemons[i] = peers[i];
169   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
170               "Daemons started, will now try to connect them\n");
171   GNUNET_TESTBED_overlay_connect (NULL,
172                                   &do_publish, NULL,
173                                   daemons[0], daemons[1]);
174 }
175
176
177 int
178 main (int argc, char *argv[])
179 {
180   GNUNET_TESTBED_test_run ("test-gnunet-service-fs-migration",
181                            "fs_test_lib_data.conf",
182                            2,
183                            0, NULL, NULL,
184                            &do_connect,
185                            NULL);
186   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-service-fs-migration/");
187   return ok;
188 }
189
190 /* end of test_gnunet_service_fs_migration.c */