1 /* $NetBSD: t_glob.c,v 1.3 2013/01/02 11:28:48 martin Exp $ */
3 * Copyright (c) 2010 The NetBSD Foundation, Inc.
6 * This code is derived from software contributed to The NetBSD Foundation
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
26 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
30 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include <sys/cdefs.h>
35 __RCSID("$NetBSD: t_glob.c,v 1.3 2013/01/02 11:28:48 martin Exp $");
39 #include <sys/param.h>
49 #include "../../../h_macros.h"
53 #define DPRINTF(a) printf a
63 static struct gl_file a
[] = {
70 static struct gl_file b
[] = {
78 const char *name
; /* directory name */
79 const struct gl_file
*dir
;
83 static struct gl_dir d
[] = {
84 { "a", a
, __arraycount(a
), 0 },
85 { "a/b", b
, __arraycount(b
), 0 },
88 static const char *glob_star
[] = {
89 "a/1", "a/3", "a/4", "a/b", "a/b/w", "a/b/x", "a/b/y", "a/b/z",
92 static const char *glob_star_not
[] = {
93 "a/1", "a/3", "a/4", "a/b",
97 trim(char *buf
, size_t len
, const char *name
)
99 char *path
= buf
, *epath
= buf
+ len
;
100 while (path
< epath
&& (*path
++ = *name
++) != '\0')
103 while (path
> buf
&& *--path
== '/')
108 gl_opendir(const char *dir
)
111 char buf
[MAXPATHLEN
];
112 trim(buf
, sizeof(buf
), dir
);
114 for (i
= 0; i
< __arraycount(d
); i
++)
115 if (strcmp(buf
, d
[i
].name
) == 0) {
116 DPRINTF(("opendir %s %zu\n", buf
, i
));
123 static struct dirent
*
126 static struct dirent dir
;
127 struct gl_dir
*dd
= v
;
128 if (dd
->pos
< dd
->len
) {
129 const struct gl_file
*f
= &dd
->dir
[dd
->pos
++];
130 strcpy(dir
.d_name
, f
->name
);
131 dir
.d_namlen
= strlen(f
->name
);
133 dir
.d_type
= f
->dir
? DT_DIR
: DT_REG
;
134 DPRINTF(("readdir %s %d\n", dir
.d_name
, dir
.d_type
));
135 dir
.d_reclen
= _DIRENT_RECLEN(&dir
, dir
.d_namlen
);
142 gl_stat(const char *name
, __gl_stat_t
*st
)
144 char buf
[MAXPATHLEN
];
145 trim(buf
, sizeof(buf
), name
);
146 memset(st
, 0, sizeof(*st
));
148 if (strcmp(buf
, "a") == 0 || strcmp(buf
, "a/b") == 0) {
149 st
->st_mode
|= _S_IFDIR
;
153 if (buf
[0] == 'a' && buf
[1] == '/') {
157 if (buf
[2] == 'b' && buf
[3] == '/') {
159 count
= __arraycount(b
);
163 count
= __arraycount(a
);
167 for (size_t i
= 0; i
< count
; i
++)
168 if (strcmp(f
[i
].name
, buf
+ offs
) == 0)
171 DPRINTF(("stat %s %d\n", buf
, st
->st_mode
));
177 gl_lstat(const char *name
, __gl_stat_t
*st
)
179 return gl_stat(name
, st
);
185 struct gl_dir
*dd
= v
;
187 DPRINTF(("closedir %p\n", dd
));
191 run(const char *p
, int flags
, const char **res
, size_t len
)
196 memset(&gl
, 0, sizeof(gl
));
197 gl
.gl_opendir
= gl_opendir
;
198 gl
.gl_readdir
= gl_readdir
;
199 gl
.gl_closedir
= gl_closedir
;
200 gl
.gl_stat
= gl_stat
;
201 gl
.gl_lstat
= gl_lstat
;
203 RZ(glob(p
, GLOB_ALTDIRFUNC
| flags
, NULL
, &gl
));
205 for (i
= 0; i
< gl
.gl_pathc
; i
++)
206 DPRINTF(("%s\n", gl
.gl_pathv
[i
]));
208 ATF_CHECK(len
== gl
.gl_pathc
);
209 for (i
= 0; i
< gl
.gl_pathc
; i
++)
210 ATF_CHECK_STREQ(gl
.gl_pathv
[i
], res
[i
]);
217 ATF_TC_HEAD(glob_star
, tc
)
219 atf_tc_set_md_var(tc
, "descr",
220 "Test glob(3) ** with GLOB_STAR");
223 ATF_TC_BODY(glob_star
, tc
)
225 run("a/**", GLOB_STAR
, glob_star
, __arraycount(glob_star
));
228 ATF_TC(glob_star_not
);
229 ATF_TC_HEAD(glob_star_not
, tc
)
231 atf_tc_set_md_var(tc
, "descr",
232 "Test glob(3) ** without GLOB_STAR");
236 ATF_TC_BODY(glob_star_not
, tc
)
238 run("a/**", 0, glob_star_not
, __arraycount(glob_star_not
));
242 ATF_TC(glob_nocheck
);
243 ATF_TC_HEAD(glob_nocheck
, tc
)
245 atf_tc_set_md_var(tc
, "descr",
246 "Test glob(3) pattern with backslash and GLOB_NOCHECK");
250 ATF_TC_BODY(glob_nocheck
, tc
)
252 static const char pattern
[] = { 'f', 'o', 'o', '\\', ';', 'b', 'a',
254 static const char *glob_nocheck
[] = {
257 run(pattern
, GLOB_NOCHECK
, glob_nocheck
, __arraycount(glob_nocheck
));
263 ATF_TP_ADD_TC(tp
, glob_star
);
264 ATF_TP_ADD_TC(tp
, glob_star_not
);
266 * Remove this test for now - the GLOB_NOCHECK return value has been
267 * re-defined to return a modified pattern in revision 1.33 of glob.c
269 * ATF_TP_ADD_TC(tp, glob_nocheck);
272 return atf_no_error();