root/tests/lib/mc_build_filename.c

/* [previous][next][first][last][top][bottom][index][help]  */

DEFINITIONS

This source file includes following definitions.
  1. setup
  2. teardown
  3. run_mc_build_filename
  4. START_PARAMETRIZED_TEST
  5. main

   1 /*
   2    lib - mc_build_filename() function testing
   3 
   4    Copyright (C) 2011-2025
   5    Free Software Foundation, Inc.
   6 
   7    Written by:
   8    Slava Zanko <slavazanko@gmail.com>, 2011, 2013
   9 
  10    This file is part of the Midnight Commander.
  11 
  12    The Midnight Commander is free software: you can redistribute it
  13    and/or modify it under the terms of the GNU General Public License as
  14    published by the Free Software Foundation, either version 3 of the License,
  15    or (at your option) any later version.
  16 
  17    The Midnight Commander is distributed in the hope that it will be useful,
  18    but WITHOUT ANY WARRANTY; without even the implied warranty of
  19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20    GNU General Public License for more details.
  21 
  22    You should have received a copy of the GNU General Public License
  23    along with this program.  If not, see <https://www.gnu.org/licenses/>.
  24  */
  25 
  26 #define TEST_SUITE_NAME "/lib/util"
  27 
  28 #include "tests/mctest.h"
  29 
  30 #include <stdio.h>
  31 
  32 #include "lib/strutil.h"
  33 #include "lib/util.h"
  34 
  35 /* --------------------------------------------------------------------------------------------- */
  36 
  37 /* @Before */
  38 static void
  39 setup (void)
     /* [previous][next][first][last][top][bottom][index][help]  */
  40 {
  41 }
  42 
  43 /* --------------------------------------------------------------------------------------------- */
  44 
  45 /* @After */
  46 static void
  47 teardown (void)
     /* [previous][next][first][last][top][bottom][index][help]  */
  48 {
  49 }
  50 
  51 /* --------------------------------------------------------------------------------------------- */
  52 
  53 static char *
  54 run_mc_build_filename (int iteration)
     /* [previous][next][first][last][top][bottom][index][help]  */
  55 {
  56     switch (iteration)
  57     {
  58     case 0:
  59         return mc_build_filename ("test", "path", (char *) NULL);
  60     case 1:
  61         return mc_build_filename ("/test", "path/", (char *) NULL);
  62     case 2:
  63         return mc_build_filename ("/test", "pa/th", (char *) NULL);
  64     case 3:
  65         return mc_build_filename ("/test", "#vfsprefix:", "path  ", (char *) NULL);
  66     case 4:
  67         return mc_build_filename ("/test", "vfsprefix://", "path  ", (char *) NULL);
  68     case 5:
  69         return mc_build_filename ("/test", "vfs/../prefix:///", "p\\///ath", (char *) NULL);
  70     case 6:
  71         return mc_build_filename ("/test", "path", "..", "/test", "path/", (char *) NULL);
  72     case 7:
  73         return mc_build_filename ("", "path", (char *) NULL);
  74     case 8:
  75         return mc_build_filename ("", "/path", (char *) NULL);
  76     case 9:
  77         return mc_build_filename ("path", "", (char *) NULL);
  78     case 10:
  79         return mc_build_filename ("/path", "", (char *) NULL);
  80     case 11:
  81         return mc_build_filename ("pa", "", "th", (char *) NULL);
  82     case 12:
  83         return mc_build_filename ("/pa", "", "/th", (char *) NULL);
  84     default:
  85         return NULL;
  86     }
  87 }
  88 
  89 /* @DataSource("test_mc_build_filename_ds") */
  90 static const struct test_mc_build_filename_ds
  91 {
  92     const char *expected_result;
  93 } test_mc_build_filename_ds[] = {
  94     { "test/path" },
  95     { "/test/path" },
  96     { "/test/pa/th" },
  97     { "/test/#vfsprefix:/path  " },
  98     { "/test/vfsprefix://path  " },
  99     { "/test/prefix://p\\/ath" },
 100     { "/test/test/path" },
 101     { "path" },
 102     { "path" },
 103     { "path" },
 104     { "/path" },
 105     { "pa/th" },
 106     { "/pa/th" },
 107 };
 108 
 109 /* @Test(dataSource = "test_mc_build_filename_ds") */
 110 START_PARAMETRIZED_TEST (test_mc_build_filename, test_mc_build_filename_ds)
     /* [previous][next][first][last][top][bottom][index][help]  */
 111 {
 112     // given
 113     char *actual_result;
 114 
 115     // when
 116     actual_result = run_mc_build_filename (_i);
 117 
 118     // then
 119     mctest_assert_str_eq (actual_result, data->expected_result);
 120 
 121     g_free (actual_result);
 122 }
 123 END_PARAMETRIZED_TEST
 124 
 125 /* --------------------------------------------------------------------------------------------- */
 126 
 127 int
 128 main (void)
     /* [previous][next][first][last][top][bottom][index][help]  */
 129 {
 130     TCase *tc_core;
 131 
 132     tc_core = tcase_create ("Core");
 133 
 134     tcase_add_checked_fixture (tc_core, setup, teardown);
 135 
 136     // Add new tests here: ***************
 137     mctest_add_parameterized_test (tc_core, test_mc_build_filename, test_mc_build_filename_ds);
 138     // ***********************************
 139 
 140     return mctest_run_all (tc_core);
 141 }
 142 
 143 /* --------------------------------------------------------------------------------------------- */

/* [previous][next][first][last][top][bottom][index][help]  */