LCOV - code coverage report
Current view: top level - test - test-pretty-print.c (source / functions) Hit Total Coverage
Test: main_coverage.info Lines: 20 20 100.0 %
Date: 2019-08-22 15:41:25 Functions: 3 3 100.0 %

          Line data    Source code
       1             : /* SPDX-License-Identifier: LGPL-2.1+ */
       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           1 : static void test_terminal_urlify(void) {
      15           1 :         _cleanup_free_ char *formatted = NULL;
      16             : 
      17           1 :         assert_se(terminal_urlify("https://www.freedesktop.org/wiki/Software/systemd/", "systemd homepage", &formatted) >= 0);
      18           1 :         printf("Hey, consider visiting the %s right now! It is very good!\n", formatted);
      19             : 
      20           1 :         formatted = mfree(formatted);
      21             : 
      22           1 :         assert_se(terminal_urlify_path("/etc/fstab", "this link to your /etc/fstab", &formatted) >= 0);
      23           1 :         printf("Or click on %s to have a look at it!\n", formatted);
      24           1 : }
      25             : 
      26           1 : static void test_cat_files(void) {
      27           1 :         assert_se(cat_files("/no/such/file", NULL, 0) == -ENOENT);
      28           1 :         assert_se(cat_files("/no/such/file", NULL, CAT_FLAGS_MAIN_FILE_OPTIONAL) == 0);
      29             : 
      30           1 :         if (access("/etc/fstab", R_OK) >= 0)
      31           1 :                 assert_se(cat_files("/etc/fstab", STRV_MAKE("/etc/fstab", "/etc/fstab"), 0) == 0);
      32           1 : }
      33             : 
      34           1 : int main(int argc, char *argv[]) {
      35           1 :         test_setup_logging(LOG_INFO);
      36             : 
      37           1 :         test_terminal_urlify();
      38           1 :         test_cat_files();
      39             : 
      40           1 :         print_separator();
      41             : 
      42           1 :         return 0;
      43             : }

Generated by: LCOV version 1.14