os/ossrv/glib/tests/shell-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
 * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). 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 __SYMBIAN32__
sl@0
    36
#include "mrt2_glib2_test.h"
sl@0
    37
#endif /*__SYMBIAN32__*/
sl@0
    38
sl@0
    39
typedef struct _TestResult TestResult;
sl@0
    40
sl@0
    41
struct _TestResult
sl@0
    42
{
sl@0
    43
  gint argc;
sl@0
    44
  const gchar **argv;
sl@0
    45
};
sl@0
    46
sl@0
    47
static const gchar *
sl@0
    48
test_command_lines[] =
sl@0
    49
{
sl@0
    50
  /*  0 */ "foo bar",
sl@0
    51
  /*  1 */ "foo 'bar'",
sl@0
    52
  /*  2 */ "foo \"bar\"",
sl@0
    53
  /*  3 */ "foo '' 'bar'",
sl@0
    54
  /*  4 */ "foo \"bar\"'baz'blah'foo'\\''blah'\"boo\"",
sl@0
    55
  /*  5 */ "foo \t \tblah\tfoo\t\tbar  baz",
sl@0
    56
  /*  6 */ "foo '    spaces more spaces lots of     spaces in this   '  \t",
sl@0
    57
  /*  7 */ "foo \\\nbar",
sl@0
    58
  /*  8 */ "foo '' ''",
sl@0
    59
  /*  9 */ "foo \\\" la la la",
sl@0
    60
  /* 10 */ "foo \\ foo woo woo\\ ",
sl@0
    61
  /* 11 */ "foo \"yada yada \\$\\\"\"",
sl@0
    62
  /* 12 */ "foo \"c:\\\\\"",
sl@0
    63
  NULL
sl@0
    64
};
sl@0
    65
sl@0
    66
static const gchar *result0[] = { "foo", "bar", NULL };
sl@0
    67
static const gchar *result1[] = { "foo", "bar", NULL };
sl@0
    68
static const gchar *result2[] = { "foo", "bar", NULL };
sl@0
    69
static const gchar *result3[] = { "foo", "", "bar", NULL };
sl@0
    70
static const gchar *result4[] = { "foo", "barbazblahfoo'blahboo", NULL };
sl@0
    71
static const gchar *result5[] = { "foo", "blah", "foo", "bar", "baz", NULL };
sl@0
    72
static const gchar *result6[] = { "foo", "    spaces more spaces lots of     spaces in this   ", NULL };
sl@0
    73
static const gchar *result7[] = { "foo", "bar", NULL };
sl@0
    74
static const gchar *result8[] = { "foo", "", "", NULL };
sl@0
    75
static const gchar *result9[] = { "foo", "\"", "la", "la", "la", NULL };
sl@0
    76
static const gchar *result10[] = { "foo", " foo", "woo", "woo ", NULL };
sl@0
    77
static const gchar *result11[] = { "foo", "yada yada $\"", NULL };
sl@0
    78
static const gchar *result12[] = { "foo", "c:\\", NULL };
sl@0
    79
sl@0
    80
static const TestResult
sl@0
    81
correct_results[] =
sl@0
    82
{
sl@0
    83
  { G_N_ELEMENTS (result0) - 1, result0 },
sl@0
    84
  { G_N_ELEMENTS (result1) - 1, result1 },
sl@0
    85
  { G_N_ELEMENTS (result2) - 1, result2 },
sl@0
    86
  { G_N_ELEMENTS (result3) - 1, result3 },
sl@0
    87
  { G_N_ELEMENTS (result4) - 1, result4 },
sl@0
    88
  { G_N_ELEMENTS (result5) - 1, result5 },
sl@0
    89
  { G_N_ELEMENTS (result6) - 1, result6 },
sl@0
    90
  { G_N_ELEMENTS (result7) - 1, result7 },
sl@0
    91
  { G_N_ELEMENTS (result8) - 1, result8 },
sl@0
    92
  { G_N_ELEMENTS (result9) - 1, result9 },
sl@0
    93
  { G_N_ELEMENTS (result10) - 1, result10 },
sl@0
    94
  { G_N_ELEMENTS (result11) - 1, result11 },
sl@0
    95
  { G_N_ELEMENTS (result12) - 1, result12 }
sl@0
    96
};
sl@0
    97
sl@0
    98
static void
sl@0
    99
print_test (const gchar *cmdline, gint argc, gchar **argv,
sl@0
   100
            const TestResult *result)
sl@0
   101
{
sl@0
   102
  gint i;
sl@0
   103
  
sl@0
   104
  fprintf (stderr, "Command line was: '%s'\n", cmdline);
sl@0
   105
sl@0
   106
  fprintf (stderr, "Expected result (%d args):\n", result->argc);
sl@0
   107
  
sl@0
   108
  i = 0;
sl@0
   109
  while (result->argv[i])
sl@0
   110
    {
sl@0
   111
      fprintf (stderr, " %3d '%s'\n", i, result->argv[i]);
sl@0
   112
      ++i;
sl@0
   113
    }  
sl@0
   114
sl@0
   115
  fprintf (stderr, "Actual result (%d args):\n", argc);
sl@0
   116
  
sl@0
   117
  i = 0;
sl@0
   118
  while (argv[i])
sl@0
   119
    {
sl@0
   120
      fprintf (stderr, " %3d '%s'\n", i, argv[i]);
sl@0
   121
      ++i;
sl@0
   122
    }
sl@0
   123
}
sl@0
   124
sl@0
   125
static void
sl@0
   126
do_argv_test (const gchar *cmdline, const TestResult *result)
sl@0
   127
{
sl@0
   128
  gint argc;
sl@0
   129
  gchar **argv;
sl@0
   130
  GError *err;
sl@0
   131
  gint i;
sl@0
   132
sl@0
   133
  err = NULL;
sl@0
   134
  if (!g_shell_parse_argv (cmdline, &argc, &argv, &err))
sl@0
   135
    {
sl@0
   136
      fprintf (stderr, "Error parsing command line that should work fine: %s\n",
sl@0
   137
               err->message);
sl@0
   138
      
sl@0
   139
      exit (1);
sl@0
   140
    }
sl@0
   141
  
sl@0
   142
  if (argc != result->argc)
sl@0
   143
    {
sl@0
   144
      fprintf (stderr, "Expected and actual argc don't match\n");
sl@0
   145
      print_test (cmdline, argc, argv, result);
sl@0
   146
      exit (1);
sl@0
   147
    }
sl@0
   148
sl@0
   149
  i = 0;
sl@0
   150
  while (argv[i])
sl@0
   151
    {
sl@0
   152
      if (strcmp (argv[i], result->argv[i]) != 0)
sl@0
   153
        {
sl@0
   154
          fprintf (stderr, "Expected and actual arg %d do not match\n", i);
sl@0
   155
          print_test (cmdline, argc, argv, result);
sl@0
   156
          exit (1);
sl@0
   157
        }
sl@0
   158
      
sl@0
   159
      ++i;
sl@0
   160
    }
sl@0
   161
sl@0
   162
  if (argv[i] != NULL)
sl@0
   163
    {
sl@0
   164
      fprintf (stderr, "argv didn't get NULL-terminated\n");
sl@0
   165
      exit (1);
sl@0
   166
    }
sl@0
   167
  g_strfreev (argv);
sl@0
   168
}
sl@0
   169
sl@0
   170
static void
sl@0
   171
run_tests (void)
sl@0
   172
{
sl@0
   173
  gint i;
sl@0
   174
  
sl@0
   175
  i = 0;
sl@0
   176
  while (test_command_lines[i])
sl@0
   177
    {
sl@0
   178
      do_argv_test (test_command_lines[i], &correct_results[i]);
sl@0
   179
      ++i;
sl@0
   180
    }
sl@0
   181
}
sl@0
   182
sl@0
   183
static gboolean any_test_failed = FALSE;
sl@0
   184
sl@0
   185
#define CHECK_STRING_RESULT(expression, expected_value) \
sl@0
   186
 check_string_result (#expression, __FILE__, __LINE__, expression, expected_value)
sl@0
   187
sl@0
   188
static void
sl@0
   189
check_string_result (const char *expression,
sl@0
   190
		     const char *file_name,
sl@0
   191
		     int line_number,
sl@0
   192
		     char *result,
sl@0
   193
		     const char *expected)
sl@0
   194
{
sl@0
   195
  gboolean match;
sl@0
   196
  
sl@0
   197
  if (expected == NULL)
sl@0
   198
    match = result == NULL;
sl@0
   199
  else
sl@0
   200
    match = result != NULL && strcmp (result, expected) == 0;
sl@0
   201
  
sl@0
   202
  if (!match)
sl@0
   203
    {
sl@0
   204
      if (!any_test_failed)
sl@0
   205
	fprintf (stderr, "\n");
sl@0
   206
      
sl@0
   207
      fprintf (stderr, "FAIL: check failed in %s, line %d\n", file_name, line_number);
sl@0
   208
      fprintf (stderr, "      evaluated: %s\n", expression);
sl@0
   209
      fprintf (stderr, "       expected: %s\n", expected == NULL ? "NULL" : expected);
sl@0
   210
      fprintf (stderr, "            got: %s\n", result == NULL ? "NULL" : result);
sl@0
   211
      
sl@0
   212
      any_test_failed = TRUE;
sl@0
   213
    }
sl@0
   214
  
sl@0
   215
  g_free (result);
sl@0
   216
}
sl@0
   217
sl@0
   218
static char *
sl@0
   219
test_shell_unquote (const char *str)
sl@0
   220
{
sl@0
   221
  char *result;
sl@0
   222
  GError *error;
sl@0
   223
sl@0
   224
  error = NULL;
sl@0
   225
  result = g_shell_unquote (str, &error);
sl@0
   226
  if (error == NULL)
sl@0
   227
    return result;
sl@0
   228
sl@0
   229
  /* Leaks the error, which is no big deal and easy to fix if we
sl@0
   230
   * decide it matters.
sl@0
   231
   */
sl@0
   232
sl@0
   233
  if (error->domain != G_SHELL_ERROR)
sl@0
   234
    return g_strdup ("error in domain other than G_SHELL_ERROR");
sl@0
   235
sl@0
   236
  /* It would be nice to check the error message too, but that's
sl@0
   237
   * localized, so it's too much of a pain.
sl@0
   238
   */
sl@0
   239
  switch (error->code)
sl@0
   240
    {
sl@0
   241
    case G_SHELL_ERROR_BAD_QUOTING:
sl@0
   242
      return g_strdup ("G_SHELL_ERROR_BAD_QUOTING");
sl@0
   243
    case G_SHELL_ERROR_EMPTY_STRING:
sl@0
   244
      return g_strdup ("G_SHELL_ERROR_EMPTY_STRING");
sl@0
   245
    case G_SHELL_ERROR_FAILED:
sl@0
   246
      return g_strdup ("G_SHELL_ERROR_FAILED");
sl@0
   247
    default:
sl@0
   248
      return g_strdup ("bad error code in G_SHELL_ERROR domain");
sl@0
   249
    }
sl@0
   250
}
sl@0
   251
sl@0
   252
int
sl@0
   253
main (int   argc,
sl@0
   254
      char *argv[])
sl@0
   255
{
sl@0
   256
  #ifdef __SYMBIAN32__
sl@0
   257
  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
   258
  g_set_print_handler(mrtPrintHandler);
sl@0
   259
  #endif /*__SYMBIAN32__*/
sl@0
   260
	  
sl@0
   261
sl@0
   262
  run_tests ();
sl@0
   263
  
sl@0
   264
  CHECK_STRING_RESULT (g_shell_quote (""), "''");
sl@0
   265
  CHECK_STRING_RESULT (g_shell_quote ("a"), "'a'");
sl@0
   266
  CHECK_STRING_RESULT (g_shell_quote ("("), "'('");
sl@0
   267
  CHECK_STRING_RESULT (g_shell_quote ("'"), "''\\'''");
sl@0
   268
  CHECK_STRING_RESULT (g_shell_quote ("'a"), "''\\''a'");
sl@0
   269
  CHECK_STRING_RESULT (g_shell_quote ("a'"), "'a'\\'''");
sl@0
   270
  CHECK_STRING_RESULT (g_shell_quote ("a'a"), "'a'\\''a'");
sl@0
   271
  
sl@0
   272
  CHECK_STRING_RESULT (test_shell_unquote (""), "");
sl@0
   273
  CHECK_STRING_RESULT (test_shell_unquote ("a"), "a");
sl@0
   274
  CHECK_STRING_RESULT (test_shell_unquote ("'a'"), "a");
sl@0
   275
  CHECK_STRING_RESULT (test_shell_unquote ("'('"), "(");
sl@0
   276
  CHECK_STRING_RESULT (test_shell_unquote ("''\\'''"), "'");
sl@0
   277
  CHECK_STRING_RESULT (test_shell_unquote ("''\\''a'"), "'a");
sl@0
   278
  CHECK_STRING_RESULT (test_shell_unquote ("'a'\\'''"), "a'");
sl@0
   279
  CHECK_STRING_RESULT (test_shell_unquote ("'a'\\''a'"), "a'a");
sl@0
   280
sl@0
   281
  CHECK_STRING_RESULT (test_shell_unquote ("\\\\"), "\\");
sl@0
   282
  CHECK_STRING_RESULT (test_shell_unquote ("\\\n"), "");
sl@0
   283
sl@0
   284
  CHECK_STRING_RESULT (test_shell_unquote ("'\\''"), "G_SHELL_ERROR_BAD_QUOTING");
sl@0
   285
sl@0
   286
#if defined (_MSC_VER) && (_MSC_VER <= 1200)
sl@0
   287
  /* using \x22 instead of \" to work around a msvc 5.0, 6.0 compiler bug */
sl@0
   288
  CHECK_STRING_RESULT (test_shell_unquote ("\x22\\\x22\""), "\"");
sl@0
   289
#else
sl@0
   290
  CHECK_STRING_RESULT (test_shell_unquote ("\"\\\"\""), "\"");
sl@0
   291
#endif
sl@0
   292
sl@0
   293
  CHECK_STRING_RESULT (test_shell_unquote ("\""), "G_SHELL_ERROR_BAD_QUOTING");
sl@0
   294
  CHECK_STRING_RESULT (test_shell_unquote ("'"), "G_SHELL_ERROR_BAD_QUOTING");
sl@0
   295
sl@0
   296
  CHECK_STRING_RESULT (test_shell_unquote ("\x22\\\\\""), "\\");
sl@0
   297
  CHECK_STRING_RESULT (test_shell_unquote ("\x22\\`\""), "`");
sl@0
   298
  CHECK_STRING_RESULT (test_shell_unquote ("\x22\\$\""), "$");
sl@0
   299
  CHECK_STRING_RESULT (test_shell_unquote ("\x22\\\n\""), "\n");
sl@0
   300
sl@0
   301
  CHECK_STRING_RESULT (test_shell_unquote ("\"\\'\""), "\\'");
sl@0
   302
  CHECK_STRING_RESULT (test_shell_unquote ("\x22\\\r\""), "\\\r");
sl@0
   303
  CHECK_STRING_RESULT (test_shell_unquote ("\x22\\n\""), "\\n");
sl@0
   304
sl@0
   305
#ifdef __SYMBIAN32__
sl@0
   306
  testResultXml("shell-test");
sl@0
   307
#endif /* EMULATOR */	
sl@0
   308
  return any_test_failed ? 1 : 0;
sl@0
   309
}