indentation
[oweals/gnunet.git] / src / fs / test_fs_test_lib.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_fs_test_lib.c
23  * @brief test fs test library
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 * 2)
35
36 /**
37  * How long until we give up on transmitting the message?
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 ret;
48
49 static void
50 do_stop (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
51 {
52   if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE))
53   {
54     GNUNET_break (0);
55     ret = 1;
56   }
57   else
58   {
59     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
60                 "Finished download, shutting down\n",
61                 (unsigned long long) FILESIZE);
62   }
63   GNUNET_FS_TEST_daemons_stop (NUM_DAEMONS, daemons);
64 }
65
66
67 static void
68 do_download (void *cls, const struct GNUNET_FS_Uri *uri)
69 {
70   if (NULL == uri)
71   {
72     GNUNET_break (0);
73     GNUNET_SCHEDULER_add_now (&do_stop, NULL);
74     ret = 1;
75     return;
76   }
77   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
78               "Downloading %llu bytes\n", (unsigned long long) FILESIZE);
79   GNUNET_FS_TEST_download (daemons[0],
80                            TIMEOUT, 1, SEED, uri, VERBOSE, &do_stop, NULL);
81 }
82
83
84 static void
85 do_publish (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
86 {
87   if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE))
88   {
89     GNUNET_break (0);
90     ret = 1;
91     GNUNET_SCHEDULER_add_now (&do_stop, NULL);
92     return;
93   }
94   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
95               "Publishing %llu bytes\n", (unsigned long long) FILESIZE);
96   GNUNET_FS_TEST_publish (daemons[0],
97                           TIMEOUT,
98                           1, GNUNET_NO, FILESIZE, SEED,
99                           VERBOSE, &do_download, NULL);
100 }
101
102
103 static void
104 do_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
105 {
106   if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE))
107   {
108     GNUNET_break (0);
109     ret = 1;
110     GNUNET_SCHEDULER_add_now (&do_stop, NULL);
111     return;
112   }
113   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
114               "Daemons started, will now try to connect them\n");
115   GNUNET_FS_TEST_daemons_connect (daemons[0],
116                                   daemons[1], TIMEOUT, &do_publish, NULL);
117 }
118
119
120 static void
121 run (void *cls,
122      char *const *args,
123      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
124 {
125   GNUNET_FS_TEST_daemons_start ("fs_test_lib_data.conf",
126                                 TIMEOUT,
127                                 NUM_DAEMONS, daemons, &do_connect, NULL);
128 }
129
130
131 int
132 main (int argc, char *argv[])
133 {
134   char *const argvx[] = {
135     "test-fs-test-lib",
136     "-c",
137     "fs_test_lib_data.conf",
138 #if VERBOSE
139     "-L", "DEBUG",
140 #endif
141     NULL
142   };
143   struct GNUNET_GETOPT_CommandLineOption options[] = {
144     GNUNET_GETOPT_OPTION_END
145   };
146
147   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-lib/");
148   GNUNET_log_setup ("test_fs_test_lib",
149 #if VERBOSE
150                     "DEBUG",
151 #else
152                     "WARNING",
153 #endif
154                     NULL);
155   GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1,
156                       argvx, "test-fs-test-lib", "nohelp", options, &run, NULL);
157   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-lib/");
158   return ret;
159 }
160
161 /* end of test_fs_test_lib.c */