5b9973250ac93eb89b7d0fa33c006aaa8a4cebe4
[oweals/gnunet.git] / src / util / test_os_start_process.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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  * @file util/test_os_start_process.c
22  * @brief testcase for os start process code
23  *
24  * This testcase simply calls the os start process code
25  * giving a file descriptor to write stdout to.  If the
26  * correct data "HELLO" is read then all is well.
27  */
28 #include "platform.h"
29 #include "gnunet_common.h"
30 #include "gnunet_getopt_lib.h"
31 #include "gnunet_os_lib.h"
32 #include "gnunet_program_lib.h"
33 #include "gnunet_scheduler_lib.h"
34 #include "disk.h"
35
36
37 static const char *test_phrase = "HELLO WORLD";
38
39 static int ok;
40
41 static struct GNUNET_OS_Process *proc;
42
43 /**
44  * Pipe to write to started processes stdin (on write end) 
45  */
46 static struct GNUNET_DISK_PipeHandle *hello_pipe_stdin;
47
48 /**
49  * Pipe to read from started processes stdout (on read end) 
50  */
51 static struct GNUNET_DISK_PipeHandle *hello_pipe_stdout;
52
53 static GNUNET_SCHEDULER_TaskIdentifier die_task;
54
55
56 static void
57 end_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
58 {
59   if (0 != GNUNET_OS_process_kill (proc, SIGTERM))
60   {
61     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
62   }
63   GNUNET_assert (GNUNET_OK == GNUNET_OS_process_wait (proc));
64   GNUNET_OS_process_destroy (proc);
65   proc = NULL;
66   GNUNET_DISK_pipe_close (hello_pipe_stdout);
67   GNUNET_DISK_pipe_close (hello_pipe_stdin);
68 }
69
70
71 static void
72 read_call (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
73 {
74   struct GNUNET_DISK_FileHandle *stdout_read_handle = cls;
75   char buf[16];
76
77   memset (&buf, 0, sizeof (buf));
78   int bytes;
79
80   bytes = GNUNET_DISK_file_read (stdout_read_handle, &buf, sizeof (buf));
81
82   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "bytes is %d\n", bytes);
83
84   if (bytes < 1)
85   {
86     GNUNET_break (0);
87     ok = 1;
88     GNUNET_SCHEDULER_cancel (die_task);
89     GNUNET_SCHEDULER_add_now (&end_task, NULL);
90     return;
91   }
92
93   ok = strncmp (&buf[0], test_phrase, strlen (test_phrase));
94   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "read %s\n", &buf[0]);
95   if (0 == ok)
96   {
97     GNUNET_SCHEDULER_cancel (die_task);
98     GNUNET_SCHEDULER_add_now (&end_task, NULL);
99     return;
100   }
101
102   GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
103                                   stdout_read_handle, &read_call,
104                                   stdout_read_handle);
105
106 }
107
108
109 static void
110 run_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
111 {
112   char *fn;
113   const struct GNUNET_DISK_FileHandle *stdout_read_handle;
114   const struct GNUNET_DISK_FileHandle *wh;
115
116   GNUNET_asprintf (&fn, "cat");
117
118   hello_pipe_stdin = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_YES, GNUNET_NO);
119   hello_pipe_stdout = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_NO, GNUNET_YES);
120
121   if ((hello_pipe_stdout == NULL) || (hello_pipe_stdin == NULL))
122   {
123     GNUNET_break (0);
124     ok = 1;
125     GNUNET_free (fn);
126     return;
127   }
128
129   proc =
130       GNUNET_OS_start_process (GNUNET_NO, hello_pipe_stdin, hello_pipe_stdout, fn,
131                                "test_gnunet_echo_hello", "-", NULL);
132   GNUNET_free (fn);
133
134   /* Close the write end of the read pipe */
135   GNUNET_DISK_pipe_close_end (hello_pipe_stdout, GNUNET_DISK_PIPE_END_WRITE);
136   /* Close the read end of the write pipe */
137   GNUNET_DISK_pipe_close_end (hello_pipe_stdin, GNUNET_DISK_PIPE_END_READ);
138
139   wh = GNUNET_DISK_pipe_handle (hello_pipe_stdin, GNUNET_DISK_PIPE_END_WRITE);
140
141   /* Write the test_phrase to the cat process */
142   if (GNUNET_DISK_file_write (wh, test_phrase, strlen (test_phrase) + 1) !=
143       strlen (test_phrase) + 1)
144   {
145     GNUNET_break (0);
146     ok = 1;
147     return;
148   }
149
150   /* Close the write end to end the cycle! */
151   GNUNET_DISK_pipe_close_end (hello_pipe_stdin, GNUNET_DISK_PIPE_END_WRITE);
152
153   stdout_read_handle =
154       GNUNET_DISK_pipe_handle (hello_pipe_stdout, GNUNET_DISK_PIPE_END_READ);
155
156   die_task =
157       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
158                                     (GNUNET_TIME_UNIT_MINUTES, 1), &end_task,
159                                     NULL);
160
161   GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
162                                   stdout_read_handle, &read_call,
163                                   (void *) stdout_read_handle);
164 }
165
166
167 /**
168  * Main method, starts scheduler with task1,
169  * checks that "ok" is correct at the end.
170  */
171 static int
172 check_run ()
173 {
174   ok = 1;
175   GNUNET_SCHEDULER_run (&run_task, &ok);
176   return ok;
177 }
178
179
180 /**
181  * Test killing via pipe.
182  */
183 static int
184 check_kill ()
185 {
186   hello_pipe_stdin = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_YES, GNUNET_NO);
187   hello_pipe_stdout = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_NO, GNUNET_YES);
188   if ((hello_pipe_stdout == NULL) || (hello_pipe_stdin == NULL))
189   {
190     return 1;
191   }
192   proc =
193     GNUNET_OS_start_process (GNUNET_YES, hello_pipe_stdin, hello_pipe_stdout, "cat",
194                              "gnunet-service-resolver", "-", NULL); 
195   sleep (1); /* give process time to start, so we actually use the pipe-kill mechanism! */
196   if (0 != GNUNET_OS_process_kill (proc, SIGTERM))
197     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
198   GNUNET_assert (GNUNET_OK == GNUNET_OS_process_wait (proc));
199   GNUNET_OS_process_destroy (proc);
200   proc = NULL;
201   GNUNET_DISK_pipe_close (hello_pipe_stdout);
202   GNUNET_DISK_pipe_close (hello_pipe_stdin);
203   return 0;
204 }
205
206
207 /**
208  * Test killing via pipe.
209  */
210 static int
211 check_instant_kill ()
212 {
213   hello_pipe_stdin = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_YES, GNUNET_NO);
214   hello_pipe_stdout = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_NO, GNUNET_YES);
215   if ((hello_pipe_stdout == NULL) || (hello_pipe_stdin == NULL))
216   {
217     return 1;
218   }
219   proc =
220     GNUNET_OS_start_process (GNUNET_YES, hello_pipe_stdin, hello_pipe_stdout, "cat",
221                              "gnunet-service-resolver", "-", NULL); 
222   if (0 != GNUNET_OS_process_kill (proc, SIGTERM))
223   {
224     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
225   }
226   GNUNET_assert (GNUNET_OK == GNUNET_OS_process_wait (proc));
227   GNUNET_OS_process_destroy (proc);
228   proc = NULL;
229   GNUNET_DISK_pipe_close (hello_pipe_stdout);
230   GNUNET_DISK_pipe_close (hello_pipe_stdin);
231   return 0;
232 }
233
234
235 int
236 main (int argc, char *argv[])
237 {
238   int ret;
239
240   GNUNET_log_setup ("test-os-start-process",
241                     "WARNING",
242                     NULL);
243   ret = 0;
244   ret |= check_run ();
245   ret |= check_kill ();
246   ret |= check_instant_kill ();
247   return ret;
248 }
249
250 /* end of test_os_start_process.c */