tests: add signature checks
[gnulib.git] / tests / test-glob.c
1 /* Test of glob/globfree functions.
2    Copyright (C) 2009 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program 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
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Simon Josefsson <simon@josefsson.org>, 2009.  */
18
19 #include <config.h>
20
21 #include <glob.h>
22
23 #include "signature.h"
24 SIGNATURE_CHECK (glob, int, (char const *, int, int (*) (char const *, int),
25                              glob_t *));
26 SIGNATURE_CHECK (globfree, void, (glob_t *));
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31
32 #define ASSERT(expr)                                                    \
33   do                                                                    \
34     {                                                                   \
35       if (!(expr))                                                      \
36         {                                                               \
37           fprintf (stderr, "%s:%d: assertion failed\n",                 \
38                    __FILE__, __LINE__);                                 \
39           fflush (stderr);                                              \
40           abort ();                                                     \
41         }                                                               \
42     }                                                                   \
43   while (0)
44
45 #define GL_NO_SUCH_FILE "/gnulib-magic-does-not-exist"
46
47 int
48 main ()
49 {
50   int res;
51   glob_t g;
52
53   /* Make sure glob_t struct members exists. */
54   ASSERT (sizeof (g.gl_pathc));
55   ASSERT (sizeof (g.gl_pathv));
56   ASSERT (sizeof (g.gl_offs));
57
58   res = glob (".", 0, NULL, &g);
59   ASSERT (res == 0 && g.gl_pathc == 1);
60   globfree (&g);
61
62   res = glob (".", GLOB_NOSORT, NULL, &g);
63   ASSERT (res == 0 && g.gl_pathc == 1);
64   globfree (&g);
65
66   res = glob (".", GLOB_MARK, NULL, &g);
67   ASSERT (res == 0 && g.gl_pathc == 1);
68
69   res = glob (".", GLOB_APPEND, NULL, &g);
70   ASSERT (res == 0 && g.gl_pathc == 2);
71   globfree (&g);
72
73   res = glob (".", GLOB_NOESCAPE, NULL, &g);
74   ASSERT (res == 0 && g.gl_pathc == 1);
75   globfree (&g);
76
77   res = glob ("./*", 0, NULL, &g);
78   ASSERT (res == 0 && g.gl_pathc >= 1);
79   globfree (&g);
80
81   res = glob (GL_NO_SUCH_FILE, 0, NULL, &g);
82   ASSERT (res == GLOB_NOMATCH);
83
84   res = glob (GL_NO_SUCH_FILE, GLOB_NOCHECK, NULL, &g);
85   ASSERT (res == 0 && g.gl_pathc == 1);
86   ASSERT (strcmp (g.gl_pathv[0], GL_NO_SUCH_FILE) == 0);
87   globfree (&g);
88
89   return 0;
90 }