MinGW pipes
[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 2, 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 #define VERBOSE GNUNET_NO
37
38 static char *test_phrase = "HELLO WORLD";
39 static int ok;
40
41 pid_t pid;
42 /* Pipe to write to started processes stdin (on write end) */
43 struct GNUNET_DISK_PipeHandle *hello_pipe_stdin;
44 /* Pipe to read from started processes stdout (on read end) */
45 struct GNUNET_DISK_PipeHandle *hello_pipe_stdout;
46
47 GNUNET_SCHEDULER_TaskIdentifier die_task;
48
49 static void
50 end_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
51 {
52
53   if (0 != PLIBC_KILL (pid, SIGTERM))
54     {
55       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
56     }
57   GNUNET_OS_process_wait (pid);
58   GNUNET_DISK_pipe_close(hello_pipe_stdout);
59   GNUNET_DISK_pipe_close(hello_pipe_stdin);
60 }
61
62 static void
63 read_call (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
64 {
65   struct GNUNET_DISK_FileHandle *stdout_read_handle = cls;
66   char buf[16];
67   memset(&buf, 0, sizeof(buf));
68   int bytes;
69   bytes = GNUNET_DISK_file_read(stdout_read_handle, &buf, sizeof(buf));
70
71 #if VERBOSE
72   fprintf(stderr, "bytes is %d\n", bytes);
73 #endif
74
75   if (bytes < 1)
76     {
77       ok = 1;
78       GNUNET_SCHEDULER_cancel(tc->sched, die_task);
79       GNUNET_SCHEDULER_add_now(tc->sched, &end_task, NULL);
80       return;
81     }
82
83   ok = strncmp(&buf[0], test_phrase, strlen(test_phrase));
84 #if VERBOSE
85   fprintf(stderr, "read %s\n", &buf[0]);
86 #endif
87   if (ok == 0)
88     {
89       GNUNET_SCHEDULER_cancel(tc->sched, die_task);
90       GNUNET_SCHEDULER_add_now(tc->sched, &end_task, NULL);
91       return;
92     }
93
94   GNUNET_SCHEDULER_add_read_file (tc->sched,
95                                        GNUNET_TIME_UNIT_FOREVER_REL,
96                                        stdout_read_handle, &read_call, stdout_read_handle);
97
98 }
99
100
101 static void
102 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
103 {
104   char *fn;
105   const struct GNUNET_DISK_FileHandle *stdout_read_handle;
106   struct GNUNET_DISK_FileHandle *wh;
107
108   GNUNET_asprintf(&fn, "cat");
109
110   hello_pipe_stdin = GNUNET_DISK_pipe(GNUNET_YES);
111   hello_pipe_stdout = GNUNET_DISK_pipe(GNUNET_YES);
112
113   if ((hello_pipe_stdout == NULL) || (hello_pipe_stdin == NULL))
114     {
115       ok = 1;
116       GNUNET_free (fn);
117       return;
118     }
119
120   pid = GNUNET_OS_start_process (hello_pipe_stdin, hello_pipe_stdout, fn,
121                                  "test_gnunet_echo_hello", "-", NULL);
122   GNUNET_free (fn);
123
124   /* Close the write end of the read pipe */
125   GNUNET_DISK_pipe_close_end(hello_pipe_stdout, GNUNET_DISK_PIPE_END_WRITE);
126   /* Close the read end of the write pipe */
127   GNUNET_DISK_pipe_close_end(hello_pipe_stdin, GNUNET_DISK_PIPE_END_READ);
128
129   wh = GNUNET_DISK_pipe_handle (hello_pipe_stdin, GNUNET_DISK_PIPE_END_WRITE);
130
131   /* Write the test_phrase to the cat process */
132   if (GNUNET_DISK_file_write(wh, test_phrase, strlen(test_phrase) + 1) != GNUNET_YES)
133     {
134       ok = 1;
135       return;
136     }
137
138   /* Close the write end to end the cycle! */
139   GNUNET_DISK_pipe_close_end(hello_pipe_stdin, GNUNET_DISK_PIPE_END_WRITE);
140
141   stdout_read_handle = GNUNET_DISK_pipe_handle(hello_pipe_stdout, GNUNET_DISK_PIPE_END_READ);
142
143   die_task = GNUNET_SCHEDULER_add_delayed(tc->sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 1), &end_task, NULL);
144
145   GNUNET_SCHEDULER_add_read_file (tc->sched,
146                                   GNUNET_TIME_UNIT_FOREVER_REL,
147                                   stdout_read_handle, &read_call, (void *)stdout_read_handle);
148
149 }
150
151 /**
152  * Main method, starts scheduler with task1,
153  * checks that "ok" is correct at the end.
154  */
155 static int
156 check ()
157 {
158   ok = 1;
159   GNUNET_SCHEDULER_run (&task, &ok);
160   return ok;
161 }
162
163
164 int
165 main (int argc, char *argv[])
166 {
167   int ret;
168
169   GNUNET_log_setup ("test-start-process",
170 #if VERBOSE
171                     "DEBUG",
172 #else
173                     "WARNING",
174 #endif
175                     NULL);
176   ret = check ();
177
178   return ret;
179 }