]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-pretty-print.c
Merge pull request #21529 from keszybz/test-journal-flush-no-crash
[thirdparty/systemd.git] / src / test / test-pretty-print.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <stdio.h>
4 #include <sys/stat.h>
5 #include <sys/types.h>
6 #include <unistd.h>
7
8 #include "alloc-util.h"
9 #include "macro.h"
10 #include "pretty-print.h"
11 #include "strv.h"
12 #include "tests.h"
13
14 TEST(terminal_urlify) {
15 _cleanup_free_ char *formatted = NULL;
16
17 assert_se(terminal_urlify("https://www.freedesktop.org/wiki/Software/systemd/", "systemd homepage", &formatted) >= 0);
18 printf("Hey, consider visiting the %s right now! It is very good!\n", formatted);
19
20 formatted = mfree(formatted);
21
22 assert_se(terminal_urlify_path("/etc/fstab", "this link to your /etc/fstab", &formatted) >= 0);
23 printf("Or click on %s to have a look at it!\n", formatted);
24 }
25
26 TEST(cat_files) {
27 assert_se(cat_files("/no/such/file", NULL, 0) == -ENOENT);
28 assert_se(cat_files("/no/such/file", NULL, CAT_FLAGS_MAIN_FILE_OPTIONAL) == 0);
29
30 if (access("/etc/fstab", R_OK) >= 0)
31 assert_se(cat_files("/etc/fstab", STRV_MAKE("/etc/fstab", "/etc/fstab"), 0) == 0);
32 }
33
34 TEST(red_green_cross_check_mark) {
35 bool b = false;
36
37 printf("yea: <%s>\n", GREEN_CHECK_MARK());
38 printf("nay: <%s>\n", RED_CROSS_MARK());
39
40 printf("%s → %s → %s → %s\n",
41 COLOR_MARK_BOOL(b),
42 COLOR_MARK_BOOL(!b),
43 COLOR_MARK_BOOL(!!b),
44 COLOR_MARK_BOOL(!!!b));
45 }
46
47 TEST(print_separator) {
48 print_separator();
49 }
50
51 DEFINE_TEST_MAIN(LOG_INFO);