1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
|
/* GLIB - Library of useful routines for C programming
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
/*
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
* file for a list of people on the GLib Team. See the ChangeLog
* files for a list of changes. These files are distributed with
* GLib at ftp://ftp.gtk.org/pub/gtk/.
*/
#undef G_DISABLE_ASSERT
#undef G_LOG_DOMAIN
#include <glib.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef struct _TestResult TestResult;
struct _TestResult
{
gint argc;
const gchar **argv;
};
static const gchar *
test_command_lines[] =
{
/* 0 */ "foo bar",
/* 1 */ "foo 'bar'",
/* 2 */ "foo \"bar\"",
/* 3 */ "foo '' 'bar'",
/* 4 */ "foo \"bar\"'baz'blah'foo'\\''blah'\"boo\"",
/* 5 */ "foo \t \tblah\tfoo\t\tbar baz",
/* 6 */ "foo ' spaces more spaces lots of spaces in this ' \t",
/* 7 */ "foo \\\nbar",
/* 8 */ "foo '' ''",
/* 9 */ "foo \\\" la la la",
/* 10 */ "foo \\ foo woo woo\\ ",
/* 11 */ "foo \"yada yada \\$\\\"\"",
NULL
};
static const gchar *result0[] = { "foo", "bar", NULL };
static const gchar *result1[] = { "foo", "bar", NULL };
static const gchar *result2[] = { "foo", "bar", NULL };
static const gchar *result3[] = { "foo", "", "bar", NULL };
static const gchar *result4[] = { "foo", "barbazblahfoo'blahboo", NULL };
static const gchar *result5[] = { "foo", "blah", "foo", "bar", "baz", NULL };
static const gchar *result6[] = { "foo", " spaces more spaces lots of spaces in this ", NULL };
static const gchar *result7[] = { "foo", "bar", NULL };
static const gchar *result8[] = { "foo", "", "", NULL };
static const gchar *result9[] = { "foo", "\"", "la", "la", "la", NULL };
static const gchar *result10[] = { "foo", " foo", "woo", "woo ", NULL };
static const gchar *result11[] = { "foo", "yada yada $\"", NULL };
static const TestResult
correct_results[] =
{
{ G_N_ELEMENTS (result0) - 1, result0 },
{ G_N_ELEMENTS (result1) - 1, result1 },
{ G_N_ELEMENTS (result2) - 1, result2 },
{ G_N_ELEMENTS (result3) - 1, result3 },
{ G_N_ELEMENTS (result4) - 1, result4 },
{ G_N_ELEMENTS (result5) - 1, result5 },
{ G_N_ELEMENTS (result6) - 1, result6 },
{ G_N_ELEMENTS (result7) - 1, result7 },
{ G_N_ELEMENTS (result8) - 1, result8 },
{ G_N_ELEMENTS (result9) - 1, result9 },
{ G_N_ELEMENTS (result10) - 1, result10 },
{ G_N_ELEMENTS (result11) - 1, result11 }
};
static void
print_test (const gchar *cmdline, gint argc, gchar **argv,
const TestResult *result)
{
gint i;
printf ("\nCommand line was: '%s'\n", cmdline);
printf ("Expected result (%d args):\n", result->argc);
i = 0;
while (result->argv[i])
{
printf (" %3d '%s'\n", i, result->argv[i]);
++i;
}
printf ("Actual result (%d args):\n", argc);
i = 0;
while (argv[i])
{
printf (" %3d '%s'\n", i, argv[i]);
++i;
}
}
static void
do_argv_test (const gchar *cmdline, const TestResult *result)
{
gint argc;
gchar **argv;
GError *err;
gint i;
err = NULL;
if (!g_shell_parse_argv (cmdline, &argc, &argv, &err))
{
fprintf (stderr, "Error parsing command line that should work fine: %s\n",
err->message);
exit (1);
}
if (argc != result->argc)
{
fprintf (stderr, "Expected and actual argc don't match\n");
print_test (cmdline, argc, argv, result);
exit (1);
}
i = 0;
while (argv[i])
{
if (strcmp (argv[i], result->argv[i]) != 0)
{
fprintf (stderr, "Expected and actual arg %d do not match\n", i);
print_test (cmdline, argc, argv, result);
exit (1);
}
++i;
}
if (argv[i] != NULL)
{
fprintf (stderr, "argv didn't get NULL-terminated\n");
exit (1);
}
}
static void
run_tests (void)
{
gint i;
i = 0;
while (test_command_lines[i])
{
printf ("g_shell_parse_argv() test %d - ", i);
do_argv_test (test_command_lines[i], &correct_results[i]);
printf ("ok (%s)\n", test_command_lines[i]);
++i;
}
}
static gboolean any_test_failed = FALSE;
#define CHECK_STRING_RESULT(expression, expected_value) \
check_string_result (#expression, __FILE__, __LINE__, expression, expected_value)
static void
check_string_result (const char *expression,
const char *file_name,
int line_number,
char *result,
const char *expected)
{
gboolean match;
if (expected == NULL)
match = result == NULL;
else
match = result != NULL && strcmp (result, expected) == 0;
if (!match)
{
if (!any_test_failed)
fprintf (stderr, "\n");
fprintf (stderr, "FAIL: check failed in %s, line %d\n", file_name, line_number);
fprintf (stderr, " evaluated: %s\n", expression);
fprintf (stderr, " expected: %s\n", expected == NULL ? "NULL" : expected);
fprintf (stderr, " got: %s\n", result == NULL ? "NULL" : result);
any_test_failed = TRUE;
}
g_free (result);
}
static char *
test_shell_unquote (const char *str)
{
char *result;
GError *error;
error = NULL;
result = g_shell_unquote (str, &error);
if (error == NULL)
return result;
/* Leaks the error, which is no big deal. */
if (error->domain != G_SHELL_ERROR)
return g_strdup ("error in domain other than G_SHELL_ERROR");
/* It would be nice to check the error message too, but that's
* localized, so it's too much of a pain.
*/
switch (error->code)
{
case G_SHELL_ERROR_BAD_QUOTING:
return g_strdup ("G_SHELL_ERROR_BAD_QUOTING");
case G_SHELL_ERROR_EMPTY_STRING:
return g_strdup ("G_SHELL_ERROR_EMPTY_STRING");
case G_SHELL_ERROR_FAILED:
return g_strdup ("G_SHELL_ERROR_FAILED");
default:
return g_strdup ("bad error code in G_SHELL_ERROR domain");
}
}
int
main (int argc,
char *argv[])
{
run_tests ();
CHECK_STRING_RESULT (g_shell_quote (""), "''");
CHECK_STRING_RESULT (g_shell_quote ("a"), "'a'");
CHECK_STRING_RESULT (g_shell_quote ("("), "'('");
CHECK_STRING_RESULT (g_shell_quote ("'"), "''\\'''");
CHECK_STRING_RESULT (g_shell_quote ("'a"), "''\\''a'");
CHECK_STRING_RESULT (g_shell_quote ("a'"), "'a'\\'''");
CHECK_STRING_RESULT (g_shell_quote ("a'a"), "'a'\\''a'");
CHECK_STRING_RESULT (test_shell_unquote (""), "");
CHECK_STRING_RESULT (test_shell_unquote ("a"), "a");
CHECK_STRING_RESULT (test_shell_unquote ("'a'"), "a");
CHECK_STRING_RESULT (test_shell_unquote ("'('"), "(");
CHECK_STRING_RESULT (test_shell_unquote ("''\\'''"), "'");
CHECK_STRING_RESULT (test_shell_unquote ("''\\''a'"), "'a");
CHECK_STRING_RESULT (test_shell_unquote ("'a'\\'''"), "a'");
CHECK_STRING_RESULT (test_shell_unquote ("'a'\\''a'"), "a'a");
CHECK_STRING_RESULT (test_shell_unquote ("\\\\"), "\\");
CHECK_STRING_RESULT (test_shell_unquote ("\\\n"), "");
CHECK_STRING_RESULT (test_shell_unquote ("'\\''"), "G_SHELL_ERROR_BAD_QUOTING");
CHECK_STRING_RESULT (test_shell_unquote ("\"\\\"\""), "\"");
CHECK_STRING_RESULT (test_shell_unquote ("\""), "G_SHELL_ERROR_BAD_QUOTING");
CHECK_STRING_RESULT (test_shell_unquote ("'"), "G_SHELL_ERROR_BAD_QUOTING");
CHECK_STRING_RESULT (test_shell_unquote ("\"\\\\\""), "\\");
CHECK_STRING_RESULT (test_shell_unquote ("\"\\`\""), "`");
CHECK_STRING_RESULT (test_shell_unquote ("\"\\$\""), "$");
CHECK_STRING_RESULT (test_shell_unquote ("\"\\\n\""), "\n");
CHECK_STRING_RESULT (test_shell_unquote ("\"\\'\""), "\\'");
CHECK_STRING_RESULT (test_shell_unquote ("\"\\\r\""), "\\\r");
CHECK_STRING_RESULT (test_shell_unquote ("\"\\n\""), "\\n");
return any_test_failed ? 1 : 0;
}
|