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.
sl@0
     1
/* GLIB - Library of useful routines for C programming
sl@0
     2
 * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
sl@0
     3
 * Portions copyright (c) 2009 Nokia Corporation.  All rights reserved.
sl@0
     4
 * This library is free software; you can redistribute it and/or
sl@0
     5
 * modify it under the terms of the GNU Lesser General Public
sl@0
     6
 * License as published by the Free Software Foundation; either
sl@0
     7
 * version 2 of the License, or (at your option) any later version.
sl@0
     8
 *
sl@0
     9
 * This library is distributed in the hope that it will be useful,
sl@0
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
sl@0
    12
 * Lesser General Public License for more details.
sl@0
    13
 *
sl@0
    14
 * You should have received a copy of the GNU Lesser General Public
sl@0
    15
 * License along with this library; if not, write to the
sl@0
    16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
sl@0
    17
 * Boston, MA 02111-1307, USA.
sl@0
    18
 */
sl@0
    19
sl@0
    20
/*
sl@0
    21
 * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
sl@0
    22
 * file for a list of people on the GLib Team.  See the ChangeLog
sl@0
    23
 * files for a list of changes.  These files are distributed with
sl@0
    24
 * GLib at ftp://ftp.gtk.org/pub/gtk/. 
sl@0
    25
 */
sl@0
    26
sl@0
    27
#undef G_DISABLE_ASSERT
sl@0
    28
#undef G_LOG_DOMAIN
sl@0
    29
sl@0
    30
#include <glib.h>
sl@0
    31
#include <stdio.h>
sl@0
    32
#include <string.h>
sl@0
    33
#include <stdlib.h>
sl@0
    34
sl@0
    35
#ifdef G_OS_WIN32
sl@0
    36
#include <fcntl.h>
sl@0
    37
#include <io.h>
sl@0
    38
#define pipe(fds) _pipe(fds, 4096, _O_BINARY)
sl@0
    39
#endif
sl@0
    40
sl@0
    41
#ifdef __SYMBIAN32__
sl@0
    42
#include "mrt2_glib2_test.h"
sl@0
    43
#endif /*__SYMBIAN32__*/
sl@0
    44
sl@0
    45
sl@0
    46
static void
sl@0
    47
run_tests (void)
sl@0
    48
{
sl@0
    49
  GError *err;
sl@0
    50
  gint exit_status;
sl@0
    51
  gchar *output = NULL;
sl@0
    52
#ifdef G_OS_WIN32
sl@0
    53
  gchar *erroutput = NULL;
sl@0
    54
  int pipedown[2], pipeup[2];
sl@0
    55
  gchar **argv = 0;
sl@0
    56
#endif
sl@0
    57
  
sl@0
    58
  err = NULL;
sl@0
    59
  if (!g_spawn_command_line_sync ("helloworld.exe 10 11 12",
sl@0
    60
                                  NULL, NULL, &exit_status,
sl@0
    61
                                  &err))
sl@0
    62
    { 
sl@0
    63
      assert_failed = 1;
sl@0
    64
      g_error_free (err);
sl@0
    65
    }
sl@0
    66
  else
sl@0
    67
    {
sl@0
    68
#ifndef __SYMBIAN32__    
sl@0
    69
      g_warning ("no error for sync spawn of nonexistent application");
sl@0
    70
      exit (1);
sl@0
    71
#endif//__SYMBIAN32__
sl@0
    72
    }
sl@0
    73
sl@0
    74
  err = NULL;
sl@0
    75
  if (!g_spawn_command_line_async ("helloworld.exe 10 11 12",
sl@0
    76
                                   &err))
sl@0
    77
    {
sl@0
    78
      assert_failed = 1;
sl@0
    79
      g_error_free (err);
sl@0
    80
    }
sl@0
    81
  else
sl@0
    82
    {
sl@0
    83
#ifndef __SYMBIAN32__    
sl@0
    84
      g_warning ("no error for async spawn of nonexistent application");
sl@0
    85
      exit (1);
sl@0
    86
#endif//__SYMBIAN32__      
sl@0
    87
    }
sl@0
    88
sl@0
    89
  err = NULL;
sl@0
    90
#ifdef G_OS_UNIX
sl@0
    91
  if (!g_spawn_command_line_sync ("/bin/sh -c 'echo hello'",
sl@0
    92
                                  &output, NULL, NULL,
sl@0
    93
                                  &err))
sl@0
    94
    {
sl@0
    95
      fprintf (stderr, "Error: %s\n", err->message);
sl@0
    96
      g_error_free (err);
sl@0
    97
      exit (1);
sl@0
    98
    }
sl@0
    99
  else
sl@0
   100
    {
sl@0
   101
      g_assert (output != NULL);
sl@0
   102
      
sl@0
   103
      if (strcmp (output, "hello\n") != 0)
sl@0
   104
        {
sl@0
   105
          printf ("output was '%s', should have been 'hello'\n",
sl@0
   106
                  output);
sl@0
   107
sl@0
   108
          exit (1);
sl@0
   109
        }
sl@0
   110
sl@0
   111
      g_free (output);
sl@0
   112
    }
sl@0
   113
#else
sl@0
   114
#ifdef G_OS_WIN32
sl@0
   115
  printf ("Running netstat synchronously, collecting its output\n");
sl@0
   116
sl@0
   117
  if (!g_spawn_command_line_sync ("c:\\sys\\bin\\helloworld.exe",
sl@0
   118
                                  &output, &erroutput, NULL,
sl@0
   119
                                  &err))
sl@0
   120
    {
sl@0
   121
      fprintf (stderr, "Error: %s\n", err->message);
sl@0
   122
      g_error_free (err);
sl@0
   123
      exit (1);
sl@0
   124
    }
sl@0
   125
  else
sl@0
   126
    {
sl@0
   127
      g_assert (output != NULL);
sl@0
   128
      g_assert (erroutput != NULL);
sl@0
   129
      
sl@0
   130
      if (strstr (output, "Active Connections") == 0)
sl@0
   131
        {
sl@0
   132
          printf ("output was '%s', should have contained 'Active Connections'\n",
sl@0
   133
                  output);
sl@0
   134
sl@0
   135
          exit (1);
sl@0
   136
        }
sl@0
   137
      if (erroutput[0] != '\0')
sl@0
   138
	{
sl@0
   139
	  printf ("error output was '%s', should have been empty\n",
sl@0
   140
		  erroutput);
sl@0
   141
	  exit (1);
sl@0
   142
	}
sl@0
   143
sl@0
   144
      g_free (output);
sl@0
   145
      output = NULL;
sl@0
   146
      g_free (erroutput);
sl@0
   147
      erroutput = NULL;
sl@0
   148
    }
sl@0
   149
sl@0
   150
  printf ("Running spawn-test-win32-gui in various ways. Click on the OK buttons.\n");
sl@0
   151
sl@0
   152
  printf ("First asynchronously (without wait).\n");
sl@0
   153
sl@0
   154
  if (!g_spawn_command_line_async ("'.\\spawn-test-win32-gui.exe' 1", &err))
sl@0
   155
    {
sl@0
   156
      fprintf (stderr, "Error: %s\n", err->message);
sl@0
   157
      g_error_free (err);
sl@0
   158
      exit (1);
sl@0
   159
    }
sl@0
   160
sl@0
   161
  printf ("Now synchronously, collecting its output.\n");
sl@0
   162
  if (!g_spawn_command_line_sync ("'.\\spawn-test-win32-gui.exe' 2",
sl@0
   163
				  &output, &erroutput, NULL,
sl@0
   164
				  &err))
sl@0
   165
    {
sl@0
   166
      fprintf (stderr, "Error: %s\n", err->message);
sl@0
   167
      g_error_free (err);
sl@0
   168
      exit (1);
sl@0
   169
    }
sl@0
   170
  else
sl@0
   171
    {
sl@0
   172
      g_assert (output != NULL);
sl@0
   173
      g_assert (erroutput != NULL);
sl@0
   174
      
sl@0
   175
      if (strcmp (output, "This is stdout\r\n") != 0)
sl@0
   176
        {
sl@0
   177
          printf ("output was '%s', should have been 'This is stdout'\n",
sl@0
   178
                  g_strescape (output, NULL));
sl@0
   179
sl@0
   180
          exit (1);
sl@0
   181
        }
sl@0
   182
      if (strcmp (erroutput, "This is stderr\r\n") != 0)
sl@0
   183
	{
sl@0
   184
	  printf ("error output was '%s', should have been 'This is stderr'\n",
sl@0
   185
		  g_strescape (erroutput, NULL));
sl@0
   186
	  exit (1);
sl@0
   187
	}
sl@0
   188
sl@0
   189
      g_free (output);
sl@0
   190
      g_free (erroutput);
sl@0
   191
    }
sl@0
   192
sl@0
   193
  printf ("Now with G_SPAWN_FILE_AND_ARGV_ZERO.\n");
sl@0
   194
sl@0
   195
  if (!g_shell_parse_argv ("'.\\spawn-test-win32-gui.exe' this-should-be-argv-zero nop", NULL, &argv, &err))
sl@0
   196
    {
sl@0
   197
      fprintf (stderr, "Error parsing command line? %s\n", err->message);
sl@0
   198
      g_error_free (err);
sl@0
   199
      exit (1);
sl@0
   200
    }
sl@0
   201
sl@0
   202
  if (!g_spawn_async (NULL, argv, NULL,
sl@0
   203
		      G_SPAWN_FILE_AND_ARGV_ZERO,
sl@0
   204
		      NULL, NULL, NULL,
sl@0
   205
		      &err))
sl@0
   206
    {
sl@0
   207
      fprintf (stderr, "Error: %s\n", err->message);
sl@0
   208
      g_error_free (err);
sl@0
   209
      exit (1);
sl@0
   210
    }
sl@0
   211
sl@0
   212
  printf ("Now talking to it through pipes.\n");
sl@0
   213
sl@0
   214
  if (pipe (pipedown) < 0 ||
sl@0
   215
      pipe (pipeup) < 0)
sl@0
   216
    {
sl@0
   217
      fprintf (stderr, "Could not create pipes\n");
sl@0
   218
      exit (1);
sl@0
   219
    }
sl@0
   220
sl@0
   221
  if (!g_shell_parse_argv (g_strdup_printf ("'.\\spawn-test-win32-gui.exe' pipes %d %d",
sl@0
   222
					    pipedown[0], pipeup[1]),
sl@0
   223
                           NULL, &argv,
sl@0
   224
                           &err))
sl@0
   225
    {
sl@0
   226
      fprintf (stderr, "Error parsing command line? %s\n", err->message);
sl@0
   227
      g_error_free (err);
sl@0
   228
      exit (1);
sl@0
   229
    }
sl@0
   230
  
sl@0
   231
  if (!g_spawn_async (NULL, argv, NULL,
sl@0
   232
		      G_SPAWN_LEAVE_DESCRIPTORS_OPEN |
sl@0
   233
		      G_SPAWN_DO_NOT_REAP_CHILD,
sl@0
   234
		      NULL, NULL, NULL,
sl@0
   235
		      &err))
sl@0
   236
    {
sl@0
   237
      fprintf (stderr, "Error: %s\n", err->message);
sl@0
   238
      g_error_free (err);
sl@0
   239
      exit (1);
sl@0
   240
    }
sl@0
   241
  else
sl@0
   242
    {
sl@0
   243
      int k, n;
sl@0
   244
      char buf[100];
sl@0
   245
sl@0
   246
      if ((k = read (pipeup[0], &n, sizeof (n))) != sizeof (n))
sl@0
   247
	{
sl@0
   248
	  if (k == -1)
sl@0
   249
	    fprintf (stderr, "Read error: %s\n", g_strerror (errno));
sl@0
   250
	  else
sl@0
   251
	    fprintf (stderr, "Wanted to read %d bytes, got %d\n",
sl@0
   252
		     sizeof (n), k);
sl@0
   253
	  exit (1);
sl@0
   254
	}
sl@0
   255
sl@0
   256
      if ((k = read (pipeup[0], buf, n)) != n)
sl@0
   257
	{
sl@0
   258
	  if (k == -1)
sl@0
   259
	    fprintf (stderr, "Read error: %s\n", g_strerror (errno));
sl@0
   260
	  else
sl@0
   261
	    fprintf (stderr, "Wanted to read %d bytes, got %d\n",
sl@0
   262
		     n, k);
sl@0
   263
	  exit (1);
sl@0
   264
	}
sl@0
   265
sl@0
   266
      n = strlen ("Bye then");
sl@0
   267
      if (write (pipedown[1], &n, sizeof (n)) == -1 ||
sl@0
   268
	  write (pipedown[1], "Bye then", n) == -1)
sl@0
   269
	{
sl@0
   270
	  fprintf (stderr, "Write error: %s\n", g_strerror (errno));
sl@0
   271
	  exit (1);
sl@0
   272
	}
sl@0
   273
sl@0
   274
      if ((k = read (pipeup[0], &n, sizeof (n))) != sizeof (n))
sl@0
   275
	{
sl@0
   276
	  if (k == -1)
sl@0
   277
	    fprintf (stderr, "Read error: %s\n", g_strerror (errno));
sl@0
   278
	  else
sl@0
   279
	    fprintf (stderr, "Wanted to read %d bytes, got %d\n",
sl@0
   280
		     sizeof (n), k);
sl@0
   281
	  exit (1);
sl@0
   282
	}
sl@0
   283
sl@0
   284
      if ((k = read (pipeup[0], buf, n)) != n)
sl@0
   285
	{
sl@0
   286
	  if (k == -1)
sl@0
   287
	    fprintf (stderr, "Read error: %s\n", g_strerror (errno));
sl@0
   288
	  else
sl@0
   289
	    fprintf (stderr, "Wanted to read %d bytes, got %d\n",
sl@0
   290
		     n, k);
sl@0
   291
	  exit (1);
sl@0
   292
	}
sl@0
   293
    }
sl@0
   294
#endif
sl@0
   295
#endif
sl@0
   296
}
sl@0
   297
sl@0
   298
int
sl@0
   299
main (int   argc,
sl@0
   300
      char *argv[])
sl@0
   301
{
sl@0
   302
sl@0
   303
	#ifdef __SYMBIAN32__
sl@0
   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);
sl@0
   305
  	g_set_print_handler(mrtPrintHandler);
sl@0
   306
  	#endif
sl@0
   307
sl@0
   308
  run_tests ();
sl@0
   309
  
sl@0
   310
	#ifdef __SYMBIAN32__
sl@0
   311
  	testResultXml("spawn_test");
sl@0
   312
  	#endif /* EMULATOR */
sl@0
   313
	
sl@0
   314
  return 0;
sl@0
   315
}