]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/test/test-io-util.c
tree-wide: use -EBADF for fd initialization
[thirdparty/systemd.git] / src / test / test-io-util.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
ac933e8e
RC
2
3#include <fcntl.h>
4#include <stdlib.h>
5#include <unistd.h>
6
7#include "alloc-util.h"
8#include "fd-util.h"
9#include "io-util.h"
10#include "macro.h"
4f7452a8 11#include "tests.h"
ac933e8e
RC
12
13static void test_sparse_write_one(int fd, const char *buffer, size_t n) {
14 char check[n];
15
16 assert_se(lseek(fd, 0, SEEK_SET) == 0);
17 assert_se(ftruncate(fd, 0) >= 0);
18 assert_se(sparse_write(fd, buffer, n, 4) == (ssize_t) n);
19
20 assert_se(lseek(fd, 0, SEEK_CUR) == (off_t) n);
21 assert_se(ftruncate(fd, n) >= 0);
22
23 assert_se(lseek(fd, 0, SEEK_SET) == 0);
24 assert_se(read(fd, check, n) == (ssize_t) n);
25
26 assert_se(memcmp(buffer, check, n) == 0);
27}
28
4f7452a8 29TEST(sparse_write) {
ac933e8e
RC
30 const char test_a[] = "test";
31 const char test_b[] = "\0\0\0\0test\0\0\0\0";
32 const char test_c[] = "\0\0test\0\0\0\0";
33 const char test_d[] = "\0\0test\0\0\0test\0\0\0\0test\0\0\0\0\0test\0\0\0test\0\0\0\0test\0\0\0\0\0\0\0\0";
34 const char test_e[] = "test\0\0\0\0test";
254d1313 35 _cleanup_close_ int fd = -EBADF;
ac933e8e
RC
36 char fn[] = "/tmp/sparseXXXXXX";
37
38 fd = mkostemp(fn, O_CLOEXEC);
39 assert_se(fd >= 0);
40 unlink(fn);
41
42 test_sparse_write_one(fd, test_a, sizeof(test_a));
43 test_sparse_write_one(fd, test_b, sizeof(test_b));
44 test_sparse_write_one(fd, test_c, sizeof(test_c));
45 test_sparse_write_one(fd, test_d, sizeof(test_d));
46 test_sparse_write_one(fd, test_e, sizeof(test_e));
47}
48
4f7452a8 49DEFINE_TEST_MAIN(LOG_INFO);