2 libmc - check mcconfig submodule. Get full paths to user's config files.
4 Copyright (C) 2011-2024
5 Free Software Foundation, Inc.
8 Slava Zanko <slavazanko@gmail.com>, 2011, 2013
10 This file is part of the Midnight Commander.
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.
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.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #define TEST_SUITE_NAME "lib/mcconfig"
28 #include "tests/mctest.h"
30 #include "lib/strutil.h"
31 #include "lib/vfs/vfs.h"
32 #include "lib/fileloc.h"
34 #include "lib/mcconfig.h"
35 #include "src/vfs/local/local.c"
37 #define HOME_DIR "/home/testuser"
39 #define CONF_MAIN HOME_DIR PATH_SEP_STR ".config"
40 #define CONF_DATA HOME_DIR PATH_SEP_STR ".local" PATH_SEP_STR "share"
41 #define CONF_CACHE HOME_DIR PATH_SEP_STR ".cache"
43 /* --------------------------------------------------------------------------------------------- */
49 g_setenv ("HOME", HOME_DIR
, TRUE
);
50 g_setenv ("XDG_CONFIG_HOME", CONF_MAIN
, TRUE
);
51 g_setenv ("XDG_DATA_HOME", CONF_DATA
, TRUE
);
52 g_setenv ("XDG_CACHE_HOME", CONF_CACHE
, TRUE
);
53 str_init_strings ("UTF-8");
58 /* --------------------------------------------------------------------------------------------- */
65 str_uninit_strings ();
68 /* --------------------------------------------------------------------------------------------- */
70 /* @DataSource("test_user_config_paths_ds") */
72 static const struct test_user_config_paths_ds
74 const char *input_base_dir
;
75 const char *input_file_name
;
76 } test_user_config_paths_ds
[] =
177 /* @Test(dataSource = "test_user_config_paths_ds") */
179 START_PARAMETRIZED_TEST (test_user_config_paths
, test_user_config_paths_ds
)
186 actual_result
= mc_config_get_full_path (data
->input_file_name
);
190 char *expected_file_path
;
193 g_build_filename (data
->input_base_dir
, MC_USERCONF_DIR
, data
->input_file_name
,
195 mctest_assert_str_eq (actual_result
, expected_file_path
);
196 g_free (expected_file_path
);
198 g_free (actual_result
);
201 END_PARAMETRIZED_TEST
204 /* --------------------------------------------------------------------------------------------- */
211 tc_core
= tcase_create ("Core");
213 tcase_add_checked_fixture (tc_core
, setup
, teardown
);
215 /* Add new tests here: *************** */
216 mctest_add_parameterized_test (tc_core
, test_user_config_paths
, test_user_config_paths_ds
);
217 /* *********************************** */
219 return mctest_run_all (tc_core
);
222 /* --------------------------------------------------------------------------------------------- */