]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-pretty-print.c
Merge pull request #11827 from keszybz/pkgconfig-variables
[thirdparty/systemd.git] / src / test / test-pretty-print.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <stdio.h>
4
5 #include "alloc-util.h"
6 #include "macro.h"
7 #include "pretty-print.h"
8 #include "strv.h"
9 #include "tests.h"
10
11 static void test_terminal_urlify(void) {
12 _cleanup_free_ char *formatted = NULL;
13
14 assert_se(terminal_urlify("https://www.freedesktop.org/wiki/Software/systemd/", "systemd homepage", &formatted) >= 0);
15 printf("Hey, considere visiting the %s right now! It is very good!\n", formatted);
16
17 formatted = mfree(formatted);
18
19 assert_se(terminal_urlify_path("/etc/fstab", "this link to your /etc/fstab", &formatted) >= 0);
20 printf("Or click on %s to have a look at it!\n", formatted);
21 }
22
23 static void test_cat_files(void) {
24 assert_se(cat_files("/no/such/file", NULL, 0) == -ENOENT);
25 assert_se(cat_files("/no/such/file", NULL, CAT_FLAGS_MAIN_FILE_OPTIONAL) == 0);
26
27 if (access("/etc/fstab", R_OK) >= 0)
28 assert_se(cat_files("/etc/fstab", STRV_MAKE("/etc/fstab", "/etc/fstab"), 0) == 0);
29 }
30
31 int main(int argc, char *argv[]) {
32 test_setup_logging(LOG_INFO);
33
34 test_terminal_urlify();
35 test_cat_files();
36
37 print_separator();
38
39 return 0;
40 }