chiark / gitweb /
Prep v239: Mask unneeded test in test-strip-ansi
[elogind.git] / src / test / test-strip-tab-ansi.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <stdio.h>
4
5 #include "alloc-util.h"
6 #include "string-util.h"
7 #include "terminal-util.h"
8 #include "util.h"
9
10 int main(int argc, char *argv[]) {
11 #if 0 /// urlified and z are UNNEEDED by elogind
12         _cleanup_free_ char *urlified = NULL, *q = NULL, *qq = NULL;
13         char *p, *z;
14 #else
15         _cleanup_free_ char *q = NULL, *qq = NULL;
16         char *p;
17 #endif // 0
18
19         assert_se(p = strdup("\tFoobar\tbar\twaldo\t"));
20         assert_se(strip_tab_ansi(&p, NULL, NULL));
21         fprintf(stdout, "<%s>\n", p);
22         assert_se(streq(p, "        Foobar        bar        waldo        "));
23         free(p);
24
25         assert_se(p = strdup(ANSI_HIGHLIGHT "Hello" ANSI_NORMAL ANSI_HIGHLIGHT_RED " world!" ANSI_NORMAL));
26         assert_se(strip_tab_ansi(&p, NULL, NULL));
27         fprintf(stdout, "<%s>\n", p);
28         assert_se(streq(p, "Hello world!"));
29         free(p);
30
31         assert_se(p = strdup("\x1B[\x1B[\t\x1B[" ANSI_HIGHLIGHT "\x1B[" "Hello" ANSI_NORMAL ANSI_HIGHLIGHT_RED " world!" ANSI_NORMAL));
32         assert_se(strip_tab_ansi(&p, NULL, NULL));
33         assert_se(streq(p, "\x1B[\x1B[        \x1B[\x1B[Hello world!"));
34         free(p);
35
36         assert_se(p = strdup("\x1B[waldo"));
37         assert_se(strip_tab_ansi(&p, NULL, NULL));
38         assert_se(streq(p, "\x1B[waldo"));
39         free(p);
40
41 #if 0 /// UNNEEDED by elogind
42         assert_se(terminal_urlify_path("/etc/fstab", "i am a fabulous link", &urlified) >= 0);
43         assert_se(p = strjoin("something ", urlified, " something-else"));
44         assert_se(q = strdup(p));
45         printf("<%s>\n", p);
46         assert_se(strip_tab_ansi(&p, NULL, NULL));
47         printf("<%s>\n", p);
48         assert_se(streq(p, "something i am a fabulous link something-else"));
49         p = mfree(p);
50
51         /* Truncate the formatted string in the middle of an ANSI sequence (in which case we shouldn't touch the
52          * incomplete sequence) */
53         z = strstr(q, "fstab");
54         if (z) {
55                 *z = 0;
56                 assert_se(qq = strdup(q));
57                 assert_se(strip_tab_ansi(&q, NULL, NULL));
58                 assert_se(streq(q, qq));
59         }
60 #endif // 0
61
62         return 0;
63 }