os/ossrv/glib/tests/spawn-test.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /* GLIB - Library of useful routines for C programming
     2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
     3  * Portions copyright (c) 2009 Nokia Corporation.  All rights reserved.
     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 #ifdef G_OS_WIN32
    36 #include <fcntl.h>
    37 #include <io.h>
    38 #define pipe(fds) _pipe(fds, 4096, _O_BINARY)
    39 #endif
    40 
    41 #ifdef __SYMBIAN32__
    42 #include "mrt2_glib2_test.h"
    43 #endif /*__SYMBIAN32__*/
    44 
    45 
    46 static void
    47 run_tests (void)
    48 {
    49   GError *err;
    50   gint exit_status;
    51   gchar *output = NULL;
    52 #ifdef G_OS_WIN32
    53   gchar *erroutput = NULL;
    54   int pipedown[2], pipeup[2];
    55   gchar **argv = 0;
    56 #endif
    57   
    58   err = NULL;
    59   if (!g_spawn_command_line_sync ("helloworld.exe 10 11 12",
    60                                   NULL, NULL, &exit_status,
    61                                   &err))
    62     { 
    63       assert_failed = 1;
    64       g_error_free (err);
    65     }
    66   else
    67     {
    68 #ifndef __SYMBIAN32__    
    69       g_warning ("no error for sync spawn of nonexistent application");
    70       exit (1);
    71 #endif//__SYMBIAN32__
    72     }
    73 
    74   err = NULL;
    75   if (!g_spawn_command_line_async ("helloworld.exe 10 11 12",
    76                                    &err))
    77     {
    78       assert_failed = 1;
    79       g_error_free (err);
    80     }
    81   else
    82     {
    83 #ifndef __SYMBIAN32__    
    84       g_warning ("no error for async spawn of nonexistent application");
    85       exit (1);
    86 #endif//__SYMBIAN32__      
    87     }
    88 
    89   err = NULL;
    90 #ifdef G_OS_UNIX
    91   if (!g_spawn_command_line_sync ("/bin/sh -c 'echo hello'",
    92                                   &output, NULL, NULL,
    93                                   &err))
    94     {
    95       fprintf (stderr, "Error: %s\n", err->message);
    96       g_error_free (err);
    97       exit (1);
    98     }
    99   else
   100     {
   101       g_assert (output != NULL);
   102       
   103       if (strcmp (output, "hello\n") != 0)
   104         {
   105           printf ("output was '%s', should have been 'hello'\n",
   106                   output);
   107 
   108           exit (1);
   109         }
   110 
   111       g_free (output);
   112     }
   113 #else
   114 #ifdef G_OS_WIN32
   115   printf ("Running netstat synchronously, collecting its output\n");
   116 
   117   if (!g_spawn_command_line_sync ("c:\\sys\\bin\\helloworld.exe",
   118                                   &output, &erroutput, NULL,
   119                                   &err))
   120     {
   121       fprintf (stderr, "Error: %s\n", err->message);
   122       g_error_free (err);
   123       exit (1);
   124     }
   125   else
   126     {
   127       g_assert (output != NULL);
   128       g_assert (erroutput != NULL);
   129       
   130       if (strstr (output, "Active Connections") == 0)
   131         {
   132           printf ("output was '%s', should have contained 'Active Connections'\n",
   133                   output);
   134 
   135           exit (1);
   136         }
   137       if (erroutput[0] != '\0')
   138 	{
   139 	  printf ("error output was '%s', should have been empty\n",
   140 		  erroutput);
   141 	  exit (1);
   142 	}
   143 
   144       g_free (output);
   145       output = NULL;
   146       g_free (erroutput);
   147       erroutput = NULL;
   148     }
   149 
   150   printf ("Running spawn-test-win32-gui in various ways. Click on the OK buttons.\n");
   151 
   152   printf ("First asynchronously (without wait).\n");
   153 
   154   if (!g_spawn_command_line_async ("'.\\spawn-test-win32-gui.exe' 1", &err))
   155     {
   156       fprintf (stderr, "Error: %s\n", err->message);
   157       g_error_free (err);
   158       exit (1);
   159     }
   160 
   161   printf ("Now synchronously, collecting its output.\n");
   162   if (!g_spawn_command_line_sync ("'.\\spawn-test-win32-gui.exe' 2",
   163 				  &output, &erroutput, NULL,
   164 				  &err))
   165     {
   166       fprintf (stderr, "Error: %s\n", err->message);
   167       g_error_free (err);
   168       exit (1);
   169     }
   170   else
   171     {
   172       g_assert (output != NULL);
   173       g_assert (erroutput != NULL);
   174       
   175       if (strcmp (output, "This is stdout\r\n") != 0)
   176         {
   177           printf ("output was '%s', should have been 'This is stdout'\n",
   178                   g_strescape (output, NULL));
   179 
   180           exit (1);
   181         }
   182       if (strcmp (erroutput, "This is stderr\r\n") != 0)
   183 	{
   184 	  printf ("error output was '%s', should have been 'This is stderr'\n",
   185 		  g_strescape (erroutput, NULL));
   186 	  exit (1);
   187 	}
   188 
   189       g_free (output);
   190       g_free (erroutput);
   191     }
   192 
   193   printf ("Now with G_SPAWN_FILE_AND_ARGV_ZERO.\n");
   194 
   195   if (!g_shell_parse_argv ("'.\\spawn-test-win32-gui.exe' this-should-be-argv-zero nop", NULL, &argv, &err))
   196     {
   197       fprintf (stderr, "Error parsing command line? %s\n", err->message);
   198       g_error_free (err);
   199       exit (1);
   200     }
   201 
   202   if (!g_spawn_async (NULL, argv, NULL,
   203 		      G_SPAWN_FILE_AND_ARGV_ZERO,
   204 		      NULL, NULL, NULL,
   205 		      &err))
   206     {
   207       fprintf (stderr, "Error: %s\n", err->message);
   208       g_error_free (err);
   209       exit (1);
   210     }
   211 
   212   printf ("Now talking to it through pipes.\n");
   213 
   214   if (pipe (pipedown) < 0 ||
   215       pipe (pipeup) < 0)
   216     {
   217       fprintf (stderr, "Could not create pipes\n");
   218       exit (1);
   219     }
   220 
   221   if (!g_shell_parse_argv (g_strdup_printf ("'.\\spawn-test-win32-gui.exe' pipes %d %d",
   222 					    pipedown[0], pipeup[1]),
   223                            NULL, &argv,
   224                            &err))
   225     {
   226       fprintf (stderr, "Error parsing command line? %s\n", err->message);
   227       g_error_free (err);
   228       exit (1);
   229     }
   230   
   231   if (!g_spawn_async (NULL, argv, NULL,
   232 		      G_SPAWN_LEAVE_DESCRIPTORS_OPEN |
   233 		      G_SPAWN_DO_NOT_REAP_CHILD,
   234 		      NULL, NULL, NULL,
   235 		      &err))
   236     {
   237       fprintf (stderr, "Error: %s\n", err->message);
   238       g_error_free (err);
   239       exit (1);
   240     }
   241   else
   242     {
   243       int k, n;
   244       char buf[100];
   245 
   246       if ((k = read (pipeup[0], &n, sizeof (n))) != sizeof (n))
   247 	{
   248 	  if (k == -1)
   249 	    fprintf (stderr, "Read error: %s\n", g_strerror (errno));
   250 	  else
   251 	    fprintf (stderr, "Wanted to read %d bytes, got %d\n",
   252 		     sizeof (n), k);
   253 	  exit (1);
   254 	}
   255 
   256       if ((k = read (pipeup[0], buf, n)) != n)
   257 	{
   258 	  if (k == -1)
   259 	    fprintf (stderr, "Read error: %s\n", g_strerror (errno));
   260 	  else
   261 	    fprintf (stderr, "Wanted to read %d bytes, got %d\n",
   262 		     n, k);
   263 	  exit (1);
   264 	}
   265 
   266       n = strlen ("Bye then");
   267       if (write (pipedown[1], &n, sizeof (n)) == -1 ||
   268 	  write (pipedown[1], "Bye then", n) == -1)
   269 	{
   270 	  fprintf (stderr, "Write error: %s\n", g_strerror (errno));
   271 	  exit (1);
   272 	}
   273 
   274       if ((k = read (pipeup[0], &n, sizeof (n))) != sizeof (n))
   275 	{
   276 	  if (k == -1)
   277 	    fprintf (stderr, "Read error: %s\n", g_strerror (errno));
   278 	  else
   279 	    fprintf (stderr, "Wanted to read %d bytes, got %d\n",
   280 		     sizeof (n), k);
   281 	  exit (1);
   282 	}
   283 
   284       if ((k = read (pipeup[0], buf, n)) != n)
   285 	{
   286 	  if (k == -1)
   287 	    fprintf (stderr, "Read error: %s\n", g_strerror (errno));
   288 	  else
   289 	    fprintf (stderr, "Wanted to read %d bytes, got %d\n",
   290 		     n, k);
   291 	  exit (1);
   292 	}
   293     }
   294 #endif
   295 #endif
   296 }
   297 
   298 int
   299 main (int   argc,
   300       char *argv[])
   301 {
   302 
   303 	#ifdef __SYMBIAN32__
   304   	g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
   305   	g_set_print_handler(mrtPrintHandler);
   306   	#endif
   307 
   308   run_tests ();
   309   
   310 	#ifdef __SYMBIAN32__
   311   	testResultXml("spawn_test");
   312   	#endif /* EMULATOR */
   313 	
   314   return 0;
   315 }