]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/test/test-pretty-print.c
codespell: fix spelling errors
[thirdparty/systemd.git] / src / test / test-pretty-print.c
CommitLineData
294bf0c3
ZJS
1/* SPDX-License-Identifier: LGPL-2.1+ */
2
3#include <stdio.h>
ca78ad1d
ZJS
4#include <sys/stat.h>
5#include <sys/types.h>
6#include <unistd.h>
294bf0c3
ZJS
7
8#include "alloc-util.h"
9#include "macro.h"
10#include "pretty-print.h"
11#include "strv.h"
12#include "tests.h"
13
14static void test_terminal_urlify(void) {
15 _cleanup_free_ char *formatted = NULL;
16
17 assert_se(terminal_urlify("https://www.freedesktop.org/wiki/Software/systemd/", "systemd homepage", &formatted) >= 0);
5238e957 18 printf("Hey, consider visiting the %s right now! It is very good!\n", formatted);
294bf0c3
ZJS
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
26static void test_cat_files(void) {
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
34int main(int argc, char *argv[]) {
35 test_setup_logging(LOG_INFO);
36
37 test_terminal_urlify();
38 test_cat_files();
39
40 print_separator();
41
42 return 0;
43}