]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-copy.c
fileio: consolidate write_string_file*()
[thirdparty/systemd.git] / src / test / test-copy.c
1 /***
2 This file is part of systemd
3
4 Copyright 2014 Ronny Chevalier
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <unistd.h>
21
22 #include "copy.h"
23 #include "path-util.h"
24 #include "fileio.h"
25 #include "mkdir.h"
26 #include "strv.h"
27 #include "macro.h"
28 #include "util.h"
29 #include "rm-rf.h"
30
31 static void test_copy_file(void) {
32 _cleanup_free_ char *buf = NULL;
33 char fn[] = "/tmp/test-copy_file.XXXXXX";
34 char fn_copy[] = "/tmp/test-copy_file.XXXXXX";
35 size_t sz = 0;
36 int fd;
37
38 fd = mkostemp_safe(fn, O_RDWR|O_CLOEXEC);
39 assert_se(fd >= 0);
40 close(fd);
41
42 fd = mkostemp_safe(fn_copy, O_RDWR|O_CLOEXEC);
43 assert_se(fd >= 0);
44 close(fd);
45
46 assert_se(write_string_file(fn, "foo bar bar bar foo", WRITE_STRING_FILE_CREATE) == 0);
47
48 assert_se(copy_file(fn, fn_copy, 0, 0644, 0) == 0);
49
50 assert_se(read_full_file(fn_copy, &buf, &sz) == 0);
51 assert_se(streq(buf, "foo bar bar bar foo\n"));
52 assert_se(sz == 20);
53
54 unlink(fn);
55 unlink(fn_copy);
56 }
57
58 static void test_copy_file_fd(void) {
59 char in_fn[] = "/tmp/test-copy-file-fd-XXXXXX";
60 char out_fn[] = "/tmp/test-copy-file-fd-XXXXXX";
61 _cleanup_close_ int in_fd = -1, out_fd = -1;
62 char text[] = "boohoo\nfoo\n\tbar\n";
63 char buf[64] = {0};
64
65 in_fd = mkostemp_safe(in_fn, O_RDWR);
66 assert_se(in_fd >= 0);
67 out_fd = mkostemp_safe(out_fn, O_RDWR);
68 assert_se(out_fd >= 0);
69
70 assert_se(write_string_file(in_fn, text, WRITE_STRING_FILE_CREATE) == 0);
71 assert_se(copy_file_fd("/a/file/which/does/not/exist/i/guess", out_fd, true) < 0);
72 assert_se(copy_file_fd(in_fn, out_fd, true) >= 0);
73 assert_se(lseek(out_fd, SEEK_SET, 0) == 0);
74
75 assert_se(read(out_fd, buf, sizeof(buf)) == sizeof(text) - 1);
76 assert_se(streq(buf, text));
77
78 unlink(in_fn);
79 unlink(out_fn);
80 }
81
82 static void test_copy_tree(void) {
83 char original_dir[] = "/tmp/test-copy_tree/";
84 char copy_dir[] = "/tmp/test-copy_tree-copy/";
85 char **files = STRV_MAKE("file", "dir1/file", "dir1/dir2/file", "dir1/dir2/dir3/dir4/dir5/file");
86 char **links = STRV_MAKE("link", "file",
87 "link2", "dir1/file");
88 char **p, **link;
89
90 (void) rm_rf(copy_dir, REMOVE_ROOT|REMOVE_PHYSICAL);
91 (void) rm_rf(original_dir, REMOVE_ROOT|REMOVE_PHYSICAL);
92
93 STRV_FOREACH(p, files) {
94 char *f = strjoina(original_dir, *p);
95
96 assert_se(mkdir_parents(f, 0755) >= 0);
97 assert_se(write_string_file(f, "file", WRITE_STRING_FILE_CREATE) == 0);
98 }
99
100 STRV_FOREACH_PAIR(link, p, links) {
101 char *f = strjoina(original_dir, *p);
102 char *l = strjoina(original_dir, *link);
103
104 assert_se(mkdir_parents(l, 0755) >= 0);
105 assert_se(symlink(f, l) == 0);
106 }
107
108 assert_se(copy_tree(original_dir, copy_dir, true) == 0);
109
110 STRV_FOREACH(p, files) {
111 _cleanup_free_ char *buf = NULL;
112 size_t sz = 0;
113 char *f = strjoina(copy_dir, *p);
114
115 assert_se(access(f, F_OK) == 0);
116 assert_se(read_full_file(f, &buf, &sz) == 0);
117 assert_se(streq(buf, "file\n"));
118 }
119
120 STRV_FOREACH_PAIR(link, p, links) {
121 _cleanup_free_ char *target = NULL;
122 char *f = strjoina(original_dir, *p);
123 char *l = strjoina(copy_dir, *link);
124
125 assert_se(readlink_and_canonicalize(l, &target) == 0);
126 assert_se(path_equal(f, target));
127 }
128
129 assert_se(copy_tree(original_dir, copy_dir, false) < 0);
130 assert_se(copy_tree("/tmp/inexistent/foo/bar/fsdoi", copy_dir, false) < 0);
131
132 (void) rm_rf(copy_dir, REMOVE_ROOT|REMOVE_PHYSICAL);
133 (void) rm_rf(original_dir, REMOVE_ROOT|REMOVE_PHYSICAL);
134 }
135
136 static void test_copy_bytes(void) {
137 _cleanup_close_pair_ int pipefd[2] = {-1, -1};
138 _cleanup_close_ int infd = -1;
139 int r, r2;
140 char buf[1024], buf2[1024];
141
142 infd = open("/usr/lib/os-release", O_RDONLY|O_CLOEXEC);
143 if (infd < 0)
144 infd = open("/etc/os-release", O_RDONLY|O_CLOEXEC);
145 assert_se(infd >= 0);
146
147 assert_se(pipe2(pipefd, O_CLOEXEC) == 0);
148
149 r = copy_bytes(infd, pipefd[1], (off_t) -1, false);
150 assert_se(r == 0);
151
152 r = read(pipefd[0], buf, sizeof(buf));
153 assert_se(r >= 0);
154
155 assert_se(lseek(infd, 0, SEEK_SET) == 0);
156 r2 = read(infd, buf2, sizeof(buf2));
157 assert_se(r == r2);
158
159 assert_se(strneq(buf, buf2, r));
160
161 /* test copy_bytes with invalid descriptors */
162 r = copy_bytes(pipefd[0], pipefd[0], 1, false);
163 assert_se(r == -EBADF);
164
165 r = copy_bytes(pipefd[1], pipefd[1], 1, false);
166 assert_se(r == -EBADF);
167
168 r = copy_bytes(pipefd[1], infd, 1, false);
169 assert_se(r == -EBADF);
170 }
171
172 int main(int argc, char *argv[]) {
173 test_copy_file();
174 test_copy_file_fd();
175 test_copy_tree();
176 test_copy_bytes();
177
178 return 0;
179 }