adding man page for gnunet-auto-share, updating man page for gnunet-publish
[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 struct GNUNET_FS_TEST_ConnectContext *cc;
48
49 static int ret;
50
51 static void
52 do_stop (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
53 {
54   if (NULL != cc)
55   {
56     GNUNET_FS_TEST_daemons_connect_cancel (cc);
57     cc = NULL;
58   }
59   if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE))
60   {
61     GNUNET_break (0);
62     ret = 1;
63   }
64   else
65   {
66     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Finished download, shutting down\n",
67                 (unsigned long long) FILESIZE);
68   }
69   GNUNET_FS_TEST_daemons_stop (NUM_DAEMONS, daemons);
70 }
71
72
73 static void
74 do_download (void *cls, const struct GNUNET_FS_Uri *uri)
75 {
76   if (NULL == uri)
77   {
78     GNUNET_break (0);
79     GNUNET_SCHEDULER_add_now (&do_stop, NULL);
80     ret = 1;
81     return;
82   }
83   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Downloading %llu bytes\n",
84               (unsigned long long) FILESIZE);
85   GNUNET_FS_TEST_download (daemons[0], TIMEOUT, 1, SEED, uri, VERBOSE, &do_stop,
86                            NULL);
87 }
88
89
90 static void
91 do_publish (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
92 {
93   cc = NULL;
94   if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE))
95   {
96     GNUNET_break (0);
97     ret = 1;
98     GNUNET_SCHEDULER_add_now (&do_stop, NULL);
99     return;
100   }
101   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Publishing %llu bytes\n",
102               (unsigned long long) FILESIZE);
103   GNUNET_FS_TEST_publish (daemons[0], TIMEOUT, 1, GNUNET_NO, FILESIZE, SEED,
104                           VERBOSE, &do_download, NULL);
105 }
106
107
108 static void
109 do_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
110 {
111   if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE))
112   {
113     GNUNET_break (0);
114     ret = 1;
115     GNUNET_SCHEDULER_add_now (&do_stop, NULL);
116     return;
117   }
118   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
119               "Daemons started, will now try to connect them\n");
120   cc = GNUNET_FS_TEST_daemons_connect (daemons[0], daemons[1], TIMEOUT,
121                                        &do_publish, NULL);
122 }
123
124
125 static void
126 run (void *cls, char *const *args, const char *cfgfile,
127      const struct GNUNET_CONFIGURATION_Handle *cfg)
128 {
129   GNUNET_FS_TEST_daemons_start ("fs_test_lib_data.conf", TIMEOUT, NUM_DAEMONS,
130                                 daemons, &do_connect, NULL);
131 }
132
133
134 int
135 main (int argc, char *argv[])
136 {
137   char *const argvx[] = {
138     "test-fs-test-lib",
139     "-c",
140     "fs_test_lib_data.conf",
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                     "WARNING",
150                     NULL);
151   GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1, argvx,
152                       "test-fs-test-lib", "nohelp", options, &run, NULL);
153   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-lib/");
154   return ret;
155 }
156
157 /* end of test_fs_test_lib.c */