Ticket #3687: store the 'hotlist' file in data dir, not config dir.
[midnight-commander.git] / tests / lib / mcconfig / user_configs_path.c
blobb0a59e542081a8bfda79632c6be00311185cc372
1 /*
2 libmc - check mcconfig submodule. Get full paths to user's config files.
4 Copyright (C) 2011-2016
5 Free Software Foundation, Inc.
7 Written by:
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/strescape.h"
32 #include "lib/vfs/vfs.h"
33 #include "lib/fileloc.h"
35 #include "lib/mcconfig.h"
36 #include "src/vfs/local/local.c"
38 #define HOME_DIR "/home/testuser"
40 #if MC_HOMEDIR_XDG
41 #define CONF_MAIN HOME_DIR PATH_SEP_STR ".config"
42 #define CONF_DATA HOME_DIR PATH_SEP_STR ".local" PATH_SEP_STR "share"
43 #define CONF_CACHE HOME_DIR PATH_SEP_STR ".cache"
44 #else
45 #define CONF_MAIN HOME_DIR
46 #define CONF_DATA CONF_MAIN
47 #define CONF_CACHE CONF_MAIN
48 #endif
50 /* --------------------------------------------------------------------------------------------- */
52 /* @Before */
53 static void
54 setup (void)
56 g_setenv ("HOME", HOME_DIR, TRUE);
57 #if MC_HOMEDIR_XDG
58 g_setenv ("XDG_CONFIG_HOME", CONF_MAIN, TRUE);
59 g_setenv ("XDG_DATA_HOME", CONF_DATA, TRUE);
60 g_setenv ("XDG_CACHE_HOME", CONF_CACHE, TRUE);
61 #endif
62 str_init_strings ("UTF-8");
63 vfs_init ();
64 init_localfs ();
67 /* --------------------------------------------------------------------------------------------- */
69 /* @After */
70 static void
71 teardown (void)
73 vfs_shut ();
74 str_uninit_strings ();
77 /* --------------------------------------------------------------------------------------------- */
79 /* @DataSource("test_user_config_paths_ds") */
80 /* *INDENT-OFF* */
81 static const struct test_user_config_paths_ds
83 const char *input_base_dir;
84 const char *input_file_name;
85 } test_user_config_paths_ds[] =
87 { /* 0. */
88 CONF_MAIN,
89 MC_CONFIG_FILE
91 { /* 1. */
92 CONF_MAIN,
93 MC_FHL_INI_FILE
95 { /* 2. */
96 CONF_DATA,
97 MC_HOTLIST_FILE
99 { /* 3. */
100 CONF_MAIN,
101 GLOBAL_KEYMAP_FILE
103 { /* 4. */
104 CONF_MAIN,
105 MC_USERMENU_FILE
107 { /* 5. */
108 CONF_MAIN,
109 EDIT_SYNTAX_FILE
111 { /* 6. */
112 CONF_MAIN,
113 EDIT_HOME_MENU
115 { /* 7. */
116 CONF_MAIN,
117 EDIT_DIR PATH_SEP_STR "edit.indent.rc"
119 { /* 8. */
120 CONF_MAIN,
121 EDIT_DIR PATH_SEP_STR "edit.spell.rc"
123 { /* 9. */
124 CONF_MAIN,
125 MC_PANELS_FILE
127 { /* 10. */
128 CONF_MAIN,
129 MC_FILEBIND_FILE
131 { /* 11. */
132 CONF_DATA,
133 MC_SKINS_SUBDIR
135 { /* 12. */
136 CONF_DATA,
137 FISH_PREFIX
139 { /* 13. */
140 CONF_DATA,
141 "ashrc"
143 { /* 14. */
144 CONF_DATA,
145 "bashrc"
147 { /* 15. */
148 CONF_DATA,
149 "inputrc"
151 { /* 16. */
152 CONF_DATA,
153 MC_EXTFS_DIR
155 { /* 17. */
156 CONF_DATA,
157 MC_HISTORY_FILE
159 { /* 18. */
160 CONF_DATA,
161 MC_FILEPOS_FILE
163 { /* 19. */
164 CONF_DATA,
165 EDIT_CLIP_FILE
167 { /* 20. */
168 CONF_DATA,
169 MC_MACRO_FILE
171 { /* 21. */
172 CONF_CACHE,
173 "mc.log"
175 { /* 22. */
176 CONF_CACHE,
177 MC_TREESTORE_FILE
179 { /* 23. */
180 CONF_CACHE,
181 EDIT_TEMP_FILE
183 { /* 24. */
184 CONF_CACHE,
185 EDIT_BLOCK_FILE
188 /* *INDENT-ON* */
190 /* @Test(dataSource = "test_user_config_paths_ds") */
191 /* *INDENT-OFF* */
192 START_PARAMETRIZED_TEST (test_user_config_paths, test_user_config_paths_ds)
193 /* *INDENT-ON* */
195 /* given */
196 char *actual_result;
198 /* when */
199 actual_result = mc_config_get_full_path (data->input_file_name);
201 /* then */
203 char *expected_file_path;
205 expected_file_path =
206 g_build_filename (data->input_base_dir, MC_USERCONF_DIR, data->input_file_name,
207 (char *) NULL);
208 mctest_assert_str_eq (actual_result, expected_file_path);
209 g_free (expected_file_path);
211 g_free (actual_result);
213 /* *INDENT-OFF* */
214 END_PARAMETRIZED_TEST
215 /* *INDENT-ON* */
217 /* --------------------------------------------------------------------------------------------- */
220 main (void)
222 int number_failed;
224 Suite *s = suite_create (TEST_SUITE_NAME);
225 TCase *tc_core = tcase_create ("Core");
226 SRunner *sr;
228 tcase_add_checked_fixture (tc_core, setup, teardown);
230 /* Add new tests here: *************** */
231 mctest_add_parameterized_test (tc_core, test_user_config_paths, test_user_config_paths_ds);
232 /* *********************************** */
234 suite_add_tcase (s, tc_core);
235 sr = srunner_create (s);
236 srunner_set_log (sr, "user_configs_path.log");
237 srunner_run_all (sr, CK_ENV);
238 number_failed = srunner_ntests_failed (sr);
239 srunner_free (sr);
240 return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
243 /* --------------------------------------------------------------------------------------------- */