supersede: Add tests.
[gnulib.git] / tests / test-lchmod.c
blob783e608b370a144e7fd2b03c0e317f2074e6d13c
1 /* Test changing the protections of a file.
2 Copyright (C) 2020 Free Software Foundation, Inc.
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.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 #include <config.h>
19 #include <sys/stat.h>
21 #include "signature.h"
22 SIGNATURE_CHECK (lchmod, int, (const char *, mode_t));
24 #include <errno.h>
25 #include <fcntl.h>
26 #include <sys/stat.h>
27 #include <unistd.h>
29 #include "macros.h"
31 #define BASE "test-lchmod."
33 int
34 main (void)
36 /* Test that lchmod works on non-symlinks. */
38 struct stat statbuf;
39 unlink (BASE "file");
40 ASSERT (close (creat (BASE "file", 0600)) == 0);
41 ASSERT (lchmod (BASE "file", 0400) == 0);
42 ASSERT (stat (BASE "file", &statbuf) >= 0);
43 ASSERT ((statbuf.st_mode & 0700) == 0400);
44 /* Clean up. */
45 ASSERT (chmod (BASE "file", 0600) == 0);
46 ASSERT (unlink (BASE "file") == 0);
49 /* Test that lchmod on symlinks does not modify the symlink target. */
51 unlink (BASE "file");
52 unlink (BASE "link");
53 if (symlink (BASE "file", BASE "link") == 0)
55 struct stat statbuf;
56 ASSERT (close (creat (BASE "file", 0600)) == 0);
57 lchmod (BASE "link", 0400);
58 ASSERT (stat (BASE "file", &statbuf) >= 0);
59 ASSERT ((statbuf.st_mode & 0700) == 0600);
61 /* Clean up. */
62 unlink (BASE "file");
63 unlink (BASE "link");
66 return 0;