Manual pages: mcmcdiffmceditmcview

root/tests/src/filemanager/exec_get_export_variables_ext.c

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

DEFINITIONS

This source file includes following definitions.
  1. setup
  2. teardown
  3. START_TEST
  4. main

   1 /*
   2    src/filemanager - filemanager functions
   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 "/src/filemanager"
  27 
  28 #include "tests/mctest.h"
  29 
  30 #include "lib/file-entry.h"
  31 
  32 #include "src/vfs/local/local.c"
  33 
  34 #include "src/filemanager/ext.c"
  35 
  36 /* --------------------------------------------------------------------------------------------- */
  37 /* mocked functions */
  38 
  39 /* --------------------------------------------------------------------------------------------- */
  40 
  41 static void
  42 setup (void)
     /* [previous][next][first][last][top][bottom][index][help]  */
  43 {
  44     str_init_strings (NULL);
  45 
  46     vfs_init ();
  47     vfs_init_localfs ();
  48     vfs_setup_work_dir ();
  49 
  50     mc_global.mc_run_mode = MC_RUN_FULL;
  51     current_panel = g_new0 (WPanel, 1);
  52     current_panel->cwd_vpath = vfs_path_from_str ("/home");
  53     current_panel->dir.size = DIR_LIST_MIN_SIZE;
  54     current_panel->dir.list = g_new0 (file_entry_t, current_panel->dir.size);
  55     current_panel->dir.len = 0;
  56 }
  57 
  58 static void
  59 teardown (void)
     /* [previous][next][first][last][top][bottom][index][help]  */
  60 {
  61     vfs_shut ();
  62     str_uninit_strings ();
  63 }
  64 
  65 /* --------------------------------------------------------------------------------------------- */
  66 
  67 START_TEST (sanitize_variables)
     /* [previous][next][first][last][top][bottom][index][help]  */
  68 {
  69     // given
  70     vfs_path_t *filename_vpath;
  71     GString *actual_string;
  72     const char *expected_string;
  73 
  74     current_panel->current = 0;
  75     current_panel->dir.len = 3;
  76     current_panel->dir.list[0].fname = g_string_new ("selected file.txt");
  77     current_panel->dir.list[1].fname = g_string_new ("tagged file1.txt");
  78     current_panel->dir.list[1].f.marked = 1;
  79     current_panel->dir.list[2].fname = g_string_new ("tagged file2.txt");
  80     current_panel->dir.list[2].f.marked = 1;
  81 
  82     // when
  83     filename_vpath = vfs_path_from_str ("/tmp/blabla.txt");
  84     actual_string = exec_get_export_variables (filename_vpath);
  85     vfs_path_free (filename_vpath, TRUE);
  86 
  87     // then
  88     expected_string = "\
  89 MC_EXT_FILENAME=/tmp/blabla.txt\n\
  90 export MC_EXT_FILENAME\n\
  91 MC_EXT_BASENAME=selected\\ file.txt\n\
  92 export MC_EXT_BASENAME\n\
  93 MC_EXT_CURRENTDIR=/home\n\
  94 export MC_EXT_CURRENTDIR\n\
  95 MC_EXT_SELECTED=\"selected\\ file.txt\"\n\
  96 export MC_EXT_SELECTED\n\
  97 MC_EXT_ONLYTAGGED=\"tagged\\ file1.txt tagged\\ file2.txt \"\n\
  98 export MC_EXT_ONLYTAGGED\n";
  99 
 100     mctest_assert_str_eq (actual_string->str, expected_string);
 101 
 102     g_string_free (actual_string, TRUE);
 103     g_string_free (current_panel->dir.list[0].fname, TRUE);
 104     g_string_free (current_panel->dir.list[1].fname, TRUE);
 105     g_string_free (current_panel->dir.list[2].fname, TRUE);
 106 }
 107 END_TEST
 108 
 109 /* --------------------------------------------------------------------------------------------- */
 110 
 111 int
 112 main (void)
     /* [previous][next][first][last][top][bottom][index][help]  */
 113 {
 114     TCase *tc_core;
 115 
 116     tc_core = tcase_create ("Core");
 117 
 118     tcase_add_checked_fixture (tc_core, setup, teardown);
 119 
 120     // Add new tests here: ***************
 121     tcase_add_test (tc_core, sanitize_variables);
 122     // ***********************************
 123 
 124     return mctest_run_all (tc_core);
 125 }
 126 
 127 /* --------------------------------------------------------------------------------------------- */

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