Add missing const. (g_strsplit): Add g_return_val_if_fail for case of
[platform/upstream/glib.git] / tests / spawn-test.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GLib Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #undef G_DISABLE_ASSERT
28 #undef G_LOG_DOMAIN
29
30 #include <glib.h>
31 #include <stdio.h>
32 #include <string.h>
33 #include <stdlib.h>
34
35
36 static void
37 run_tests (void)
38 {
39   GError *err;
40   gchar *output = NULL;
41   
42   printf ("The following errors are supposed to occur:\n");
43
44   err = NULL;
45   if (!g_spawn_command_line_sync ("nonexistent_application foo 'bar baz' blah blah",
46                                   NULL, NULL, NULL,
47                                   &err))
48     {
49       fprintf (stderr, "Error (normal, supposed to happen): %s\n", err->message);
50       g_error_free (err);
51     }
52
53   err = NULL;
54   if (!g_spawn_command_line_async ("nonexistent_application foo bar baz \"blah blah\"",
55                                    &err))
56     {
57       fprintf (stderr, "Error (normal, supposed to happen): %s\n", err->message);
58       g_error_free (err);
59     }
60
61   printf ("Errors after this are not supposed to happen:\n");
62   
63   err = NULL;
64 #ifdef G_OS_UNIX
65   if (!g_spawn_command_line_sync ("/bin/sh -c 'echo hello'",
66                                   &output, NULL, NULL,
67                                   &err))
68     {
69       fprintf (stderr, "Error: %s\n", err->message);
70       g_error_free (err);
71       exit (1);
72     }
73   else
74     {
75       g_assert (output != NULL);
76       
77       if (strcmp (output, "hello\n") != 0)
78         {
79           printf ("output was '%s', should have been 'hello'\n",
80                   output);
81
82           exit (1);
83         }
84
85       g_free (output);
86     }
87 #else
88 #ifdef G_OS_WIN32
89   if (!g_spawn_command_line_sync ("ipconfig /all",
90                                   &output, NULL, NULL,
91                                   &err))
92     {
93       fprintf (stderr, "Error: %s\n", err->message);
94       g_error_free (err);
95       exit (1);
96     }
97   else
98     {
99       g_assert (output != NULL);
100       
101       if (strstr (output, "IP Configuration") == 0)
102         {
103           printf ("output was '%s', should have contained 'IP Configuration'\n",
104                   output);
105
106           exit (1);
107         }
108
109       g_free (output);
110     }
111
112 #endif
113 #endif
114 }
115
116 int
117 main (int   argc,
118       char *argv[])
119 {
120   run_tests ();
121   
122   return 0;
123 }
124
125