Update.
[glibc.git] / posix / wordexp-test.c
blob8720389d4b1167f9a417aa85955f7bcc120bcd14
1 /* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C 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 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
19 #include <sys/stat.h>
20 #include <sys/types.h>
21 #include <fcntl.h>
22 #include <unistd.h>
23 #include <pwd.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <wordexp.h>
28 #define IFS " \n\t"
30 struct test_case_struct
32 int retval;
33 const char *env;
34 const char *words;
35 int flags;
36 int wordc;
37 const char *wordv[10];
38 const char *ifs;
39 } test_case[] =
41 /* Simple word- and field-splitting */
42 { 0, NULL, "one", 0, 1, { "one", }, IFS },
43 { 0, NULL, "one two", 0, 2, { "one", "two", }, IFS },
44 { 0, NULL, "one two three", 0, 3, { "one", "two", "three", }, IFS },
45 { 0, NULL, " \tfoo\t\tbar ", 0, 2, { "foo", "bar", }, IFS },
46 { 0, NULL, "red , white blue", 0, 4, { "red", ",", "white", "blue", }, " ," },
47 { 0, NULL, "one two three", 0, 3, { "one", "two", "three", }, "" },
48 { 0, NULL, "one \"two three\"", 0, 2, { "one", "two three", }, IFS },
49 { 0, NULL, "one \"two three\"", 0, 2, { "one", "two three", }, "" },
50 { 0, "two three", "one \"$var\"", 0, 2, { "one", "two three", }, IFS },
51 { 0, "two three", "one $var", 0, 3, { "one", "two", "three", }, IFS },
52 { 0, "two three", "one \"$var\"", 0, 2, { "one", "two three", }, "" },
53 { 0, "two three", "one $var", 0, 2, { "one", "two three", }, "" },
55 /* The non-whitespace IFS char at the end delimits the second field
56 * but does NOT start a new field. */
57 { 0, ":abc:", "$var", 0, 2, { "", "abc", }, ":" },
59 { 0, NULL, "$(unset IFS;echo :abc:)", 0, 2, { "", "abc", }, ":" },
60 { 0, NULL, "$(unset IFS;echo :abc:\\ )", 0, 2, { "", "abc", }, ": " },
61 { 0, NULL, "$(unset IFS;echo :abc\\ )", 0, 2, { "", "abc", }, ": " },
62 { 0, ":abc:", "$(unset IFS;echo $var)", 0, 2, { "", "abc", }, ":" },
63 { 0, NULL, ":abc:", 0, 1, { ":abc:", }, ":" },
64 { 0, NULL, "$(unset IFS;echo :abc:)def", 0, 3, { "", "abc", "def", },
65 ":" },
66 { 0, NULL, "$(unset IFS;echo abc:de)f", 0, 2, { "abc", "def", }, ":" },
67 { 0, NULL, "$(unset IFS;echo abc:de)f:ghi", 0, 2, { "abc", "def:ghi", },
68 ":" },
69 { 0, NULL, "abc:d$(unset IFS;echo ef:ghi)", 0, 2, { "abc:def", "ghi", },
70 ":" },
71 { 0, "abc:", "$var$(unset IFS;echo def:ghi)", 0, 3, { "abc", "def",
72 "ghi", }, ":" },
73 { 0, "abc:d", "$var$(unset IFS;echo ef:ghi)", 0, 3, { "abc", "def",
74 "ghi", }, ":" },
75 { 0, "def:ghi", "$(unset IFS;echo abc:)$var", 0, 3, { "abc", "def",
76 "ghi", }, ":" },
77 { 0, "ef:ghi", "$(unset IFS;echo abc:d)$var", 0, 3, { "abc", "def",
78 "ghi", }, ":" },
80 /* Simple parameter expansion */
81 { 0, "foo", "${var}", 0, 1, { "foo", }, IFS },
82 { 0, "foo", "$var", 0, 1, { "foo", }, IFS },
83 { 0, "foo", "\\\"$var\\\"", 0, 1, { "\"foo\"", }, IFS },
84 { 0, "foo", "%$var%", 0, 1, { "%foo%", }, IFS },
85 { 0, "foo", "-$var-", 0, 1, { "-foo-", }, IFS },
87 /* Simple quote removal */
88 { 0, NULL, "\"quoted\"", 0, 1, { "quoted", }, IFS },
89 { 0, "foo", "\"$var\"\"$var\"", 0, 1, { "foofoo", }, IFS },
90 { 0, NULL, "'singly-quoted'", 0, 1, { "singly-quoted", }, IFS },
91 { 0, NULL, "contin\\\nuation", 0, 1, { "continuation", }, IFS },
93 /* Simple command substitution */
94 { 0, NULL, "$(echo hello)", 0, 1, { "hello", }, IFS },
95 { 0, NULL, "$( (echo hello) )", 0, 1, { "hello", }, IFS },
96 { 0, NULL, "$((echo hello);(echo there))", 0, 2, { "hello", "there", }, IFS },
97 { 0, NULL, "`echo one two`", 0, 2, { "one", "two", }, IFS },
98 { 0, NULL, "$(echo ')')", 0, 1, { ")" }, IFS },
99 { 0, NULL, "$(echo hello; echo)", 0, 1, { "hello", }, IFS },
101 /* Simple arithmetic expansion */
102 { 0, NULL, "$((1 + 1))", 0, 1, { "2", }, IFS },
103 { 0, NULL, "$((2-3))", 0, 1, { "-1", }, IFS },
104 { 0, NULL, "$((-1))", 0, 1, { "-1", }, IFS },
105 { 0, NULL, "$[50+20]", 0, 1, { "70", }, IFS },
106 { 0, NULL, "$(((2+3)*(4+5)))", 0, 1, { "45", }, IFS },
108 /* Advanced parameter expansion */
109 { 0, NULL, "${var:-bar}", 0, 1, { "bar", }, IFS },
110 { 0, NULL, "${var-bar}", 0, 1, { "bar", }, IFS },
111 { 0, "", "${var:-bar}", 0, 1, { "bar", }, IFS },
112 { 0, "foo", "${var:-bar}", 0, 1, { "foo", }, IFS },
113 { 0, "", "${var-bar}", 0, 0, { NULL, }, IFS },
114 { 0, NULL, "${var:=bar}", 0, 1, { "bar", }, IFS },
115 { 0, NULL, "${var=bar}", 0, 1, { "bar", }, IFS },
116 { 0, "", "${var:=bar}", 0, 1, { "bar", }, IFS },
117 { 0, "foo", "${var:=bar}", 0, 1, { "foo", }, IFS },
118 { 0, "", "${var=bar}", 0, 0, { NULL, }, IFS },
119 { 0, "foo", "${var:?bar}", 0, 1, { "foo", }, IFS },
120 { 0, NULL, "${var:+bar}", 0, 0, { NULL, }, IFS },
121 { 0, NULL, "${var+bar}", 0, 0, { NULL, }, IFS },
122 { 0, "", "${var:+bar}", 0, 0, { NULL, }, IFS },
123 { 0, "foo", "${var:+bar}", 0, 1, { "bar", }, IFS },
124 { 0, "", "${var+bar}", 0, 1, { "bar", }, IFS },
125 { 0, "12345", "${#var}", 0, 1, { "5", }, IFS },
126 { 0, NULL, "${var:-'}'}", 0, 1, { "}", }, IFS },
127 { 0, NULL, "${var-}", 0, 0, { NULL }, IFS },
129 { 0, "pizza", "${var#${var}}", 0, 0, { NULL }, IFS },
130 { 0, "pepperoni", "${var%$(echo oni)}", 0, 1, { "pepper" }, IFS },
131 { 0, "6pack", "${var#$((6))}", 0, 1, { "pack" }, IFS },
132 { 0, "b*witched", "${var##b*}", 0, 0, { NULL }, IFS },
133 { 0, "b*witched", "${var##\"b*\"}", 0, 1, { "witched" }, IFS },
134 { 0, "banana", "${var%na*}", 0, 1, { "bana", }, IFS },
135 { 0, "banana", "${var%%na*}", 0, 1, { "ba", }, IFS },
136 { 0, "borabora-island", "${var#*bora}", 0, 1, { "bora-island", }, IFS },
137 { 0, "borabora-island", "${var##*bora}", 0, 1, { "-island", }, IFS },
138 { 0, "coconut", "${var##\\*co}", 0, 1, { "coconut", }, IFS },
139 { 0, "100%", "${var%0%}", 0, 1, { "10" }, IFS },
141 /* Pathname expansion */
142 { 0, NULL, "???", 0, 2, { "one", "two", }, IFS },
143 { 0, NULL, "[ot]??", 0, 2, { "one", "two", }, IFS },
144 { 0, NULL, "t*", 0, 2, { "three", "two", }, IFS },
145 { 0, NULL, "\"t\"*", 0, 2, { "three", "two", }, IFS },
147 /* Nested constructs */
148 { 0, "one two", "$var", 0, 2, { "one", "two", }, IFS },
149 { 0, "one two three", "$var", 0, 3, { "one", "two", "three", }, IFS },
150 { 0, " \tfoo\t\tbar ", "$var", 0, 2, { "foo", "bar", }, IFS },
151 { 0, " red , white blue", "$var", 0, 3, { "red", "white", "blue", }, ", \n\t" },
152 { 0, " red , white blue", "\"$var\"", 0, 1, { " red , white blue", }, ", \n\t" },
153 { 0, NULL, "\"$(echo hello there)\"", 0, 1, { "hello there", }, IFS },
154 { 0, NULL, "\"$(echo \"hello there\")\"", 0, 1, { "hello there", }, IFS },
155 { 0, NULL, "${var=one two} \"$var\"", 0, 3, { "one", "two", "one two", }, IFS },
156 { 0, "1", "$(( $(echo 3)+$var ))", 0, 1, { "4", }, IFS },
157 { 0, NULL, "\"$(echo \"*\")\"", 0, 1, { "*", }, IFS },
158 { 0, "foo", "*$var*", 0, 1, { "*foo*", }, IFS },
159 { 0, "o thr", "*$var*", 0, 2, { "two", "three" }, IFS },
161 /* Different IFS values */
162 { 0, "a b\tc\nd ", "$var", 0, 4, { "a", "b", "c", "d" }, NULL /* unset */ },
163 { 0, "a b\tc d ", "$var", 0, 1, { "a b\tc d " }, "" /* `null' */ },
164 { 0, "a,b c\n, d", "$var", 0, 3, { "a", "b c", " d" }, "\t\n," },
166 /* Other things that should succeed */
167 { 0, NULL, "\\*\"|&;<>\"\\(\\)\\{\\}", 0, 1, { "*|&;<>(){}", }, IFS },
168 { 0, "???", "$var", 0, 1, { "???", }, IFS },
169 { 0, NULL, "$var", 0, 0, { NULL, }, IFS },
170 { 0, NULL, "\"\\n\"", 0, 1, { "\\n", }, IFS },
171 { 0, NULL, "", 0, 0, { NULL, }, IFS },
173 /* Things that should fail */
174 { WRDE_BADCHAR, NULL, "new\nline", 0, 0, { NULL, }, "" /* \n not IFS */ },
175 { WRDE_BADCHAR, NULL, "pipe|symbol", 0, 0, { NULL, }, IFS },
176 { WRDE_BADCHAR, NULL, "&ampersand", 0, 0, { NULL, }, IFS },
177 { WRDE_BADCHAR, NULL, "semi;colon", 0, 0, { NULL, }, IFS },
178 { WRDE_BADCHAR, NULL, "<greater", 0, 0, { NULL, }, IFS },
179 { WRDE_BADCHAR, NULL, "less>", 0, 0, { NULL, }, IFS },
180 { WRDE_BADCHAR, NULL, "(open-paren", 0, 0, { NULL, }, IFS },
181 { WRDE_BADCHAR, NULL, "close-paren)", 0, 0, { NULL, }, IFS },
182 { WRDE_BADCHAR, NULL, "{open-brace", 0, 0, { NULL, }, IFS },
183 { WRDE_BADCHAR, NULL, "close-brace}", 0, 0, { NULL, }, IFS },
184 { WRDE_CMDSUB, NULL, "$(ls)", WRDE_NOCMD, 0, { NULL, }, IFS },
185 { WRDE_BADVAL, NULL, "$var", WRDE_UNDEF, 0, { NULL, }, IFS },
186 { WRDE_BADVAL, NULL, "$9", WRDE_UNDEF, 0, { NULL, }, IFS },
187 { WRDE_SYNTAX, NULL, "$[50+20))", 0, 0, { NULL, }, IFS },
188 { WRDE_SYNTAX, NULL, "${%%noparam}", 0, 0, { NULL, }, IFS },
189 { WRDE_SYNTAX, NULL, "${missing-brace", 0, 0, { NULL, }, IFS },
190 { WRDE_SYNTAX, NULL, "$((2+))", 0, 0, { NULL, }, IFS },
191 { WRDE_SYNTAX, NULL, "`", 0, 0, { NULL, }, IFS },
193 { -1, NULL, NULL, 0, 0, { NULL, }, IFS },
196 static int testit (struct test_case_struct *tc);
197 static int tests;
199 void
200 command_line_test (const char *words)
202 wordexp_t we;
203 int i;
204 int retval = wordexp (words, &we, 0);
205 printf ("wordexp returned %d\n", retval);
206 for (i = 0; i < we.we_wordc; i++)
207 printf ("we_wordv[%d] = \"%s\"\n", i, we.we_wordv[i]);
211 main (int argc, char *argv[])
213 const char *globfile[] = { "one", "two", "three", NULL };
214 char tmpdir[32];
215 struct passwd *pw;
216 const char *cwd;
217 int test;
218 int fail = 0;
219 int i;
221 if (argc > 1)
223 command_line_test (argv[1]);
224 return 0;
227 cwd = getcwd (NULL, 0);
229 /* Set up arena for pathname expansion */
230 tmpnam (tmpdir);
231 if (mkdir (tmpdir, S_IRWXU) || chdir (tmpdir))
232 return -1;
233 else
235 int fd;
237 for (i = 0; globfile[i]; ++i)
238 if ((fd = creat (globfile[i], S_IRUSR | S_IWUSR)) == -1
239 || close (fd))
240 return -1;
243 for (test = 0; test_case[test].retval != -1; test++)
244 if (testit (&test_case[test]))
245 ++fail;
247 pw = getpwnam ("root");
248 if (pw != NULL)
250 struct test_case_struct ts;
252 ts.retval = 0;
253 ts.env = NULL;
254 ts.words = "~root";
255 ts.flags = 0;
256 ts.wordc = 1;
257 ts.wordv[0] = pw->pw_dir;
258 ts.ifs = IFS;
260 if (testit (&ts))
261 ++fail;
264 puts ("tests completed, now cleaning up");
266 /* Clean up */
267 for (i = 0; globfile[i]; ++i)
268 remove (globfile[i]);
270 if (cwd == NULL)
271 cwd = "..";
273 chdir (cwd);
274 rmdir (tmpdir);
276 printf ("tests failed: %d\n", fail);
278 return fail != 0;
282 static int
283 testit (struct test_case_struct *tc)
285 int retval;
286 wordexp_t we;
287 int bzzzt = 0;
288 int i;
290 if (tc->env)
291 setenv ("var", tc->env, 1);
292 else
293 unsetenv ("var");
295 if (tc->ifs)
296 setenv ("IFS", tc->ifs, 1);
297 else
298 unsetenv ("IFS");
300 printf ("Test %d (%s): ", ++tests, tc->words);
301 retval = wordexp (tc->words, &we, tc->flags);
303 if (retval != tc->retval || (retval == 0 && we.we_wordc != tc->wordc))
304 bzzzt = 1;
305 else
306 for (i = 0; i < we.we_wordc; ++i)
307 if (strcmp (tc->wordv[i], we.we_wordv[i]) != 0)
309 bzzzt = 1;
310 break;
313 if (bzzzt)
315 printf ("FAILED\n");
316 printf ("Test words: <%s>, need retval %d, wordc %d\n",
317 tc->words, tc->retval, tc->wordc);
318 printf ("Got retval %d, wordc %d: ", retval, we.we_wordc);
319 for (i = 0; i < we.we_wordc; ++i)
320 printf ("<%s> ", we.we_wordv[i]);
321 printf ("\n");
323 else
324 printf ("OK\n");
326 if (retval == 0 || retval == WRDE_NOSPACE)
327 wordfree (&we);
329 return bzzzt;