1 /* Test program for returning the canonical absolute name of a given file.
2 Copyright (C) 1996,1997,2000,2002,2004,2005,2006
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Contributed by David Mosberger <davidm@azstarnet.com>.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 /* This file must be run from within a directory called "stdlib". */
30 #include <sys/param.h>
32 /* Prototype for our test function. */
33 extern int do_test (int argc
, char *argv
[]);
34 #include <test-skeleton.c>
37 # define PATH_MAX 4096
39 static char cwd
[PATH_MAX
];
40 static size_t cwd_len
;
46 {"SYMLINK_LOOP", "SYMLINK_LOOP"},
48 {"SYMLINK_2", "//////./../../etc"},
49 {"SYMLINK_3", "SYMLINK_1"},
50 {"SYMLINK_4", "SYMLINK_2"},
51 {"SYMLINK_5", "doesNotExist"},
55 const char * in
, * out
, * resolved
;
60 {"/////////////////////////////////", "/"},
61 {"/.././.././.././..///", "/"},
63 {"/etc/../etc", "/etc"},
65 {"/doesNotExist/../etc", 0, "/doesNotExist", ENOENT
},
66 {"./././././././././.", "."},
67 {"/etc/.//doesNotExist", 0, "/etc/doesNotExist", ENOENT
},
68 {"./doesExist", "./doesExist"},
69 {"./doesExist/", "./doesExist"},
71 {"./doesExist/../doesExist", "./doesExist"},
72 {"foobar", 0, "./foobar", ENOENT
},
74 {"./foobar", 0, "./foobar", ENOENT
},
75 {"SYMLINK_LOOP", 0, "./SYMLINK_LOOP", ELOOP
},
77 {"./SYMLINK_LOOP", 0, "./SYMLINK_LOOP", ELOOP
},
79 {"SYMLINK_1/foobar", 0, "./foobar", ENOENT
},
80 {"SYMLINK_2", "/etc"},
83 {"SYMLINK_4", "/etc"},
84 {"../stdlib/SYMLINK_1", "."},
85 {"../stdlib/SYMLINK_2", "/etc"},
86 {"../stdlib/SYMLINK_3", "."},
87 {"../stdlib/SYMLINK_4", "/etc"},
89 {"./SYMLINK_5", 0, "./doesNotExist", ENOENT
},
90 {"SYMLINK_5", 0, "./doesNotExist", ENOENT
},
91 {"SYMLINK_5/foobar", 0, "./doesNotExist", ENOENT
},
92 {"doesExist/../../stdlib/doesExist", "./doesExist"},
93 {"doesExist/.././../stdlib/.", "."},
95 {"./doesExist/someFile/", 0, "./doesExist/someFile", ENOTDIR
},
96 {"./doesExist/someFile/..", 0, "./doesExist/someFile", ENOTDIR
},
101 check_path (const char * result
, const char * expected
)
106 return (expected
== NULL
);
111 if (expected
[0] == '.' && (expected
[1] == '/' || expected
[1] == '\0'))
112 good
= (strncmp (result
, cwd
, cwd_len
) == 0
113 && strcmp (result
+ cwd_len
, expected
+ 1) == 0);
115 good
= (strcmp (expected
, result
) == 0);
122 do_test (int argc
, char ** argv
)
128 getcwd (cwd
, sizeof(buf
));
129 cwd_len
= strlen (cwd
);
132 if (realpath (NULL
, buf
) != NULL
|| errno
!= EINVAL
)
134 printf ("%s: expected return value NULL and errno set to EINVAL"
135 " for realpath(NULL,...)\n", argv
[0]);
140 /* This is now allowed. The test is invalid. */
142 if (realpath ("/", NULL
) != NULL
|| errno
!= EINVAL
)
144 printf ("%s: expected return value NULL and errno set to EINVAL"
145 " for realpath(...,NULL)\n", argv
[0]);
151 if (realpath ("", buf
) != NULL
|| errno
!= ENOENT
)
153 printf ("%s: expected return value NULL and set errno to ENOENT"
154 " for realpath(\"\",...)\n", argv
[0]);
158 for (i
= 0; i
< (int) (sizeof (symlinks
) / sizeof (symlinks
[0])); ++i
)
159 symlink (symlinks
[i
].value
, symlinks
[i
].name
);
161 int has_dir
= mkdir ("doesExist", 0777) == 0;
163 int fd
= has_dir
? creat ("doesExist/someFile", 0777) : -1;
165 for (i
= 0; i
< (int) (sizeof (tests
) / sizeof (tests
[0])); ++i
)
168 result
= realpath (tests
[i
].in
, buf
);
170 if (!check_path (result
, tests
[i
].out
))
172 printf ("%s: flunked test %d (expected `%s', got `%s')\n",
173 argv
[0], i
, tests
[i
].out
? tests
[i
].out
: "NULL",
174 result
? result
: "NULL");
179 if (!check_path (buf
, tests
[i
].out
? tests
[i
].out
: tests
[i
].resolved
))
181 printf ("%s: flunked test %d (expected resolved `%s', got `%s')\n",
182 argv
[0], i
, tests
[i
].out
? tests
[i
].out
: tests
[i
].resolved
,
188 if (!tests
[i
].out
&& errno
!= tests
[i
].error
)
190 printf ("%s: flunked test %d (expected errno %d, got %d)\n",
191 argv
[0], i
, tests
[i
].error
, errno
);
196 char *result2
= realpath (tests
[i
].in
, NULL
);
197 if ((result2
== NULL
&& result
!= NULL
)
198 || (result2
!= NULL
&& strcmp (result
, result2
) != 0))
201 %s: realpath(..., NULL) produced different result than realpath(..., buf): '%s' vs '%s'\n",
202 argv
[0], result2
, result
);
208 getcwd (buf
, sizeof(buf
));
209 if (strcmp (buf
, cwd
))
211 printf ("%s: current working directory changed from %s to %s\n",
219 unlink ("doesExist/someFile");
225 for (i
= 0; i
< (int) (sizeof (symlinks
) / sizeof (symlinks
[0])); ++i
)
226 unlink (symlinks
[i
].name
);
230 printf ("%d errors.\n", errors
);