Update contrib.
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3 * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). 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.
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.
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.
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/.
27 #undef G_DISABLE_ASSERT
36 #include "mrt2_glib2_test.h"
37 #endif /*__SYMBIAN32__*/
39 typedef struct _TestResult TestResult;
48 test_command_lines[] =
52 /* 2 */ "foo \"bar\"",
53 /* 3 */ "foo '' 'bar'",
54 /* 4 */ "foo \"bar\"'baz'blah'foo'\\''blah'\"boo\"",
55 /* 5 */ "foo \t \tblah\tfoo\t\tbar baz",
56 /* 6 */ "foo ' spaces more spaces lots of spaces in this ' \t",
57 /* 7 */ "foo \\\nbar",
59 /* 9 */ "foo \\\" la la la",
60 /* 10 */ "foo \\ foo woo woo\\ ",
61 /* 11 */ "foo \"yada yada \\$\\\"\"",
62 /* 12 */ "foo \"c:\\\\\"",
66 static const gchar *result0[] = { "foo", "bar", NULL };
67 static const gchar *result1[] = { "foo", "bar", NULL };
68 static const gchar *result2[] = { "foo", "bar", NULL };
69 static const gchar *result3[] = { "foo", "", "bar", NULL };
70 static const gchar *result4[] = { "foo", "barbazblahfoo'blahboo", NULL };
71 static const gchar *result5[] = { "foo", "blah", "foo", "bar", "baz", NULL };
72 static const gchar *result6[] = { "foo", " spaces more spaces lots of spaces in this ", NULL };
73 static const gchar *result7[] = { "foo", "bar", NULL };
74 static const gchar *result8[] = { "foo", "", "", NULL };
75 static const gchar *result9[] = { "foo", "\"", "la", "la", "la", NULL };
76 static const gchar *result10[] = { "foo", " foo", "woo", "woo ", NULL };
77 static const gchar *result11[] = { "foo", "yada yada $\"", NULL };
78 static const gchar *result12[] = { "foo", "c:\\", NULL };
80 static const TestResult
83 { G_N_ELEMENTS (result0) - 1, result0 },
84 { G_N_ELEMENTS (result1) - 1, result1 },
85 { G_N_ELEMENTS (result2) - 1, result2 },
86 { G_N_ELEMENTS (result3) - 1, result3 },
87 { G_N_ELEMENTS (result4) - 1, result4 },
88 { G_N_ELEMENTS (result5) - 1, result5 },
89 { G_N_ELEMENTS (result6) - 1, result6 },
90 { G_N_ELEMENTS (result7) - 1, result7 },
91 { G_N_ELEMENTS (result8) - 1, result8 },
92 { G_N_ELEMENTS (result9) - 1, result9 },
93 { G_N_ELEMENTS (result10) - 1, result10 },
94 { G_N_ELEMENTS (result11) - 1, result11 },
95 { G_N_ELEMENTS (result12) - 1, result12 }
99 print_test (const gchar *cmdline, gint argc, gchar **argv,
100 const TestResult *result)
104 fprintf (stderr, "Command line was: '%s'\n", cmdline);
106 fprintf (stderr, "Expected result (%d args):\n", result->argc);
109 while (result->argv[i])
111 fprintf (stderr, " %3d '%s'\n", i, result->argv[i]);
115 fprintf (stderr, "Actual result (%d args):\n", argc);
120 fprintf (stderr, " %3d '%s'\n", i, argv[i]);
126 do_argv_test (const gchar *cmdline, const TestResult *result)
134 if (!g_shell_parse_argv (cmdline, &argc, &argv, &err))
136 fprintf (stderr, "Error parsing command line that should work fine: %s\n",
142 if (argc != result->argc)
144 fprintf (stderr, "Expected and actual argc don't match\n");
145 print_test (cmdline, argc, argv, result);
152 if (strcmp (argv[i], result->argv[i]) != 0)
154 fprintf (stderr, "Expected and actual arg %d do not match\n", i);
155 print_test (cmdline, argc, argv, result);
164 fprintf (stderr, "argv didn't get NULL-terminated\n");
176 while (test_command_lines[i])
178 do_argv_test (test_command_lines[i], &correct_results[i]);
183 static gboolean any_test_failed = FALSE;
185 #define CHECK_STRING_RESULT(expression, expected_value) \
186 check_string_result (#expression, __FILE__, __LINE__, expression, expected_value)
189 check_string_result (const char *expression,
190 const char *file_name,
193 const char *expected)
197 if (expected == NULL)
198 match = result == NULL;
200 match = result != NULL && strcmp (result, expected) == 0;
204 if (!any_test_failed)
205 fprintf (stderr, "\n");
207 fprintf (stderr, "FAIL: check failed in %s, line %d\n", file_name, line_number);
208 fprintf (stderr, " evaluated: %s\n", expression);
209 fprintf (stderr, " expected: %s\n", expected == NULL ? "NULL" : expected);
210 fprintf (stderr, " got: %s\n", result == NULL ? "NULL" : result);
212 any_test_failed = TRUE;
219 test_shell_unquote (const char *str)
225 result = g_shell_unquote (str, &error);
229 /* Leaks the error, which is no big deal and easy to fix if we
233 if (error->domain != G_SHELL_ERROR)
234 return g_strdup ("error in domain other than G_SHELL_ERROR");
236 /* It would be nice to check the error message too, but that's
237 * localized, so it's too much of a pain.
241 case G_SHELL_ERROR_BAD_QUOTING:
242 return g_strdup ("G_SHELL_ERROR_BAD_QUOTING");
243 case G_SHELL_ERROR_EMPTY_STRING:
244 return g_strdup ("G_SHELL_ERROR_EMPTY_STRING");
245 case G_SHELL_ERROR_FAILED:
246 return g_strdup ("G_SHELL_ERROR_FAILED");
248 return g_strdup ("bad error code in G_SHELL_ERROR domain");
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);
258 g_set_print_handler(mrtPrintHandler);
259 #endif /*__SYMBIAN32__*/
264 CHECK_STRING_RESULT (g_shell_quote (""), "''");
265 CHECK_STRING_RESULT (g_shell_quote ("a"), "'a'");
266 CHECK_STRING_RESULT (g_shell_quote ("("), "'('");
267 CHECK_STRING_RESULT (g_shell_quote ("'"), "''\\'''");
268 CHECK_STRING_RESULT (g_shell_quote ("'a"), "''\\''a'");
269 CHECK_STRING_RESULT (g_shell_quote ("a'"), "'a'\\'''");
270 CHECK_STRING_RESULT (g_shell_quote ("a'a"), "'a'\\''a'");
272 CHECK_STRING_RESULT (test_shell_unquote (""), "");
273 CHECK_STRING_RESULT (test_shell_unquote ("a"), "a");
274 CHECK_STRING_RESULT (test_shell_unquote ("'a'"), "a");
275 CHECK_STRING_RESULT (test_shell_unquote ("'('"), "(");
276 CHECK_STRING_RESULT (test_shell_unquote ("''\\'''"), "'");
277 CHECK_STRING_RESULT (test_shell_unquote ("''\\''a'"), "'a");
278 CHECK_STRING_RESULT (test_shell_unquote ("'a'\\'''"), "a'");
279 CHECK_STRING_RESULT (test_shell_unquote ("'a'\\''a'"), "a'a");
281 CHECK_STRING_RESULT (test_shell_unquote ("\\\\"), "\\");
282 CHECK_STRING_RESULT (test_shell_unquote ("\\\n"), "");
284 CHECK_STRING_RESULT (test_shell_unquote ("'\\''"), "G_SHELL_ERROR_BAD_QUOTING");
286 #if defined (_MSC_VER) && (_MSC_VER <= 1200)
287 /* using \x22 instead of \" to work around a msvc 5.0, 6.0 compiler bug */
288 CHECK_STRING_RESULT (test_shell_unquote ("\x22\\\x22\""), "\"");
290 CHECK_STRING_RESULT (test_shell_unquote ("\"\\\"\""), "\"");
293 CHECK_STRING_RESULT (test_shell_unquote ("\""), "G_SHELL_ERROR_BAD_QUOTING");
294 CHECK_STRING_RESULT (test_shell_unquote ("'"), "G_SHELL_ERROR_BAD_QUOTING");
296 CHECK_STRING_RESULT (test_shell_unquote ("\x22\\\\\""), "\\");
297 CHECK_STRING_RESULT (test_shell_unquote ("\x22\\`\""), "`");
298 CHECK_STRING_RESULT (test_shell_unquote ("\x22\\$\""), "$");
299 CHECK_STRING_RESULT (test_shell_unquote ("\x22\\\n\""), "\n");
301 CHECK_STRING_RESULT (test_shell_unquote ("\"\\'\""), "\\'");
302 CHECK_STRING_RESULT (test_shell_unquote ("\x22\\\r\""), "\\\r");
303 CHECK_STRING_RESULT (test_shell_unquote ("\x22\\n\""), "\\n");
306 testResultXml("shell-test");
307 #endif /* EMULATOR */
308 return any_test_failed ? 1 : 0;