2011-10-15 14:56:47 +04:00
|
|
|
/*
|
|
|
|
libmc - check mcconfig submodule. read and write config files
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2024-01-01 09:46:17 +03:00
|
|
|
Copyright (C) 2011-2024
|
2014-02-12 10:33:10 +04:00
|
|
|
Free Software Foundation, Inc.
|
2011-05-31 15:11:01 +04:00
|
|
|
|
|
|
|
Written by:
|
2013-01-19 17:42:26 +04:00
|
|
|
Slava Zanko <slavazanko@gmail.com>, 2011, 2013
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2011-10-15 14:56:47 +04:00
|
|
|
This file is part of the Midnight Commander.
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2011-10-15 14:56:47 +04:00
|
|
|
The Midnight Commander is free software: you can redistribute it
|
|
|
|
and/or modify it under the terms of the GNU General Public License as
|
|
|
|
published by the Free Software Foundation, either version 3 of the License,
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
|
|
The Midnight Commander is distributed in the hope that it will be useful,
|
2011-05-31 15:11:01 +04:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2011-10-15 14:56:47 +04:00
|
|
|
GNU General Public License for more details.
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2011-10-15 14:56:47 +04:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2013-01-19 16:05:19 +04:00
|
|
|
*/
|
2011-05-31 15:11:01 +04:00
|
|
|
|
|
|
|
#define TEST_SUITE_NAME "lib/mcconfig"
|
|
|
|
|
2013-01-19 17:42:26 +04:00
|
|
|
#include "tests/mctest.h"
|
2011-10-17 16:15:15 +04:00
|
|
|
|
2011-05-31 15:11:01 +04:00
|
|
|
#include "lib/mcconfig.h"
|
|
|
|
#include "lib/strutil.h"
|
|
|
|
#include "lib/vfs/vfs.h"
|
|
|
|
#include "src/vfs/local/local.c"
|
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
static mc_config_t *mc_config;
|
|
|
|
static char *ini_filename;
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static void
|
|
|
|
config_object__init (void)
|
|
|
|
{
|
2016-03-25 21:33:44 +03:00
|
|
|
ini_filename = g_build_filename (WORKDIR, "config_string.ini", (char *) NULL);
|
2013-01-28 19:18:15 +04:00
|
|
|
unlink (ini_filename);
|
|
|
|
|
|
|
|
mc_config = mc_config_init (ini_filename, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static void
|
|
|
|
config_object__reopen (void)
|
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
if (!mc_config_save_file (mc_config, &error))
|
|
|
|
{
|
2020-12-28 20:58:59 +03:00
|
|
|
ck_abort_msg ("Unable to save config file: %s", error->message);
|
2013-01-28 19:18:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
mc_config_deinit (mc_config);
|
|
|
|
mc_config = mc_config_init (ini_filename, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static void
|
|
|
|
config_object__deinit (void)
|
|
|
|
{
|
|
|
|
mc_config_deinit (mc_config);
|
|
|
|
g_free (ini_filename);
|
|
|
|
}
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* @Before */
|
2011-05-31 15:11:01 +04:00
|
|
|
static void
|
|
|
|
setup (void)
|
|
|
|
{
|
2013-01-19 16:05:19 +04:00
|
|
|
str_init_strings ("KOI8-R");
|
2011-05-31 15:11:01 +04:00
|
|
|
vfs_init ();
|
2019-05-12 19:35:20 +03:00
|
|
|
vfs_init_localfs ();
|
2013-01-28 19:18:15 +04:00
|
|
|
|
|
|
|
config_object__init ();
|
2011-05-31 15:11:01 +04:00
|
|
|
}
|
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* @After */
|
2011-05-31 15:11:01 +04:00
|
|
|
static void
|
|
|
|
teardown (void)
|
|
|
|
{
|
2013-01-28 19:18:15 +04:00
|
|
|
config_object__deinit ();
|
|
|
|
|
2011-05-31 15:11:01 +04:00
|
|
|
vfs_shut ();
|
2013-01-19 16:05:19 +04:00
|
|
|
str_uninit_strings ();
|
2011-05-31 15:11:01 +04:00
|
|
|
}
|
2013-01-19 16:05:19 +04:00
|
|
|
|
2011-05-31 15:11:01 +04:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* @DataSource("test_create_ini_file_ds") */
|
2013-01-19 16:05:19 +04:00
|
|
|
/* *INDENT-OFF* */
|
2013-01-28 19:18:15 +04:00
|
|
|
static const struct test_create_ini_file_ds
|
2011-05-31 15:11:01 +04:00
|
|
|
{
|
2013-01-28 19:18:15 +04:00
|
|
|
const char *input_group;
|
|
|
|
const char *input_param;
|
|
|
|
const char *input_default_value;
|
|
|
|
const char *expected_value;
|
|
|
|
const char *expected_raw_value;
|
|
|
|
} test_create_ini_file_ds[] =
|
|
|
|
{
|
|
|
|
{ /* 0. */
|
|
|
|
"group-not-exists",
|
|
|
|
"param-not_exists",
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2013-02-14 15:44:35 +04:00
|
|
|
NULL
|
2013-01-28 19:18:15 +04:00
|
|
|
},
|
|
|
|
{ /* 1. */
|
|
|
|
"test-group1",
|
|
|
|
"test-param1",
|
|
|
|
"not-exists",
|
|
|
|
" some value ",
|
|
|
|
" some value "
|
|
|
|
},
|
|
|
|
{ /* 2. */
|
|
|
|
"test-group1",
|
|
|
|
"test-param2",
|
|
|
|
"not-exists",
|
2024-09-30 10:34:26 +03:00
|
|
|
/* Should be represented as KOI8-R */
|
|
|
|
" \t \xF4\xC5\xD3\xD4\xCF\xD7\xCF\xC5 \xDA\xCE\xC1\xDE\xC5\xCE\xC9\xC5 ",
|
|
|
|
/* Should be stored as UTF-8 */
|
|
|
|
" \t Тестовое значение "
|
2013-01-28 19:18:15 +04:00
|
|
|
},
|
|
|
|
{ /* 3. */
|
|
|
|
"test-group1",
|
|
|
|
"test-param3",
|
|
|
|
"not-exists",
|
|
|
|
" \tsome value2\n\nf\b\005fff ",
|
|
|
|
" \tsome value2\n\nf\b\005fff "
|
|
|
|
},
|
|
|
|
{ /* 4. */
|
|
|
|
"test-group2",
|
|
|
|
"test-param1",
|
|
|
|
"not-exists",
|
|
|
|
" some value ",
|
|
|
|
" some value "
|
|
|
|
},
|
|
|
|
{ /* 5. */
|
|
|
|
"test-group2",
|
|
|
|
"test-param2",
|
|
|
|
"not-exists",
|
|
|
|
"not-exists",
|
|
|
|
"not-exists"
|
|
|
|
},
|
|
|
|
{ /* 6. */
|
|
|
|
"test-group2",
|
|
|
|
"test-param3",
|
|
|
|
"not-exists",
|
|
|
|
" \tsome value2\n\nf\b\005fff ",
|
|
|
|
" \tsome value2\n\nf\b\005fff "
|
|
|
|
},
|
|
|
|
|
|
|
|
};
|
|
|
|
/* *INDENT-ON* */
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* @Test(dataSource = "test_create_ini_file_ds") */
|
|
|
|
/* *INDENT-OFF* */
|
|
|
|
START_PARAMETRIZED_TEST (test_create_ini_file_paths, test_create_ini_file_ds)
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
{
|
|
|
|
/* given */
|
|
|
|
char *actual_value, *actual_raw_value;
|
2011-05-31 15:11:01 +04:00
|
|
|
|
|
|
|
mc_config_set_string (mc_config, "test-group1", "test-param1", " some value ");
|
2024-09-30 10:34:26 +03:00
|
|
|
mc_config_set_string (mc_config, "test-group1", "test-param2",
|
|
|
|
" \t \xF4\xC5\xD3\xD4\xCF\xD7\xCF\xC5 \xDA\xCE\xC1\xDE\xC5\xCE\xC9\xC5 ");
|
2011-05-31 15:11:01 +04:00
|
|
|
mc_config_set_string (mc_config, "test-group1", "test-param3", " \tsome value2\n\nf\b\005fff ");
|
|
|
|
mc_config_set_string_raw (mc_config, "test-group2", "test-param1", " some value ");
|
2013-01-19 16:05:19 +04:00
|
|
|
mc_config_set_string_raw (mc_config, "test-group2", "test-param2",
|
2024-09-30 10:34:26 +03:00
|
|
|
" \xF4\xC5\xD3\xD4\xCF\xD7\xCF\xC5 \xDA\xCE\xC1\xDE\xC5\xCE\xC9\xC5");
|
2013-01-19 16:05:19 +04:00
|
|
|
mc_config_set_string_raw (mc_config, "test-group2", "test-param3",
|
|
|
|
" \tsome value2\n\nf\b\005fff ");
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
config_object__reopen ();
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* when */
|
|
|
|
actual_value =
|
|
|
|
mc_config_get_string (mc_config, data->input_group, data->input_param,
|
|
|
|
data->input_default_value);
|
|
|
|
actual_raw_value =
|
|
|
|
mc_config_get_string_raw (mc_config, data->input_group, data->input_param,
|
|
|
|
data->input_default_value);
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* then */
|
|
|
|
mctest_assert_str_eq (actual_value, data->expected_value);
|
|
|
|
mctest_assert_str_eq (actual_raw_value, data->expected_raw_value);
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2013-01-19 16:05:19 +04:00
|
|
|
g_free (actual_value);
|
2013-01-28 19:18:15 +04:00
|
|
|
g_free (actual_raw_value);
|
2011-05-31 15:11:01 +04:00
|
|
|
}
|
2013-01-19 16:05:19 +04:00
|
|
|
/* *INDENT-OFF* */
|
2013-01-28 19:18:15 +04:00
|
|
|
END_PARAMETRIZED_TEST
|
2013-01-19 16:05:19 +04:00
|
|
|
/* *INDENT-ON* */
|
2011-05-31 15:11:01 +04:00
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* @Test(group='Integration') */
|
2013-01-19 16:05:19 +04:00
|
|
|
/* *INDENT-OFF* */
|
2011-05-31 15:11:01 +04:00
|
|
|
START_TEST (emulate__learn_save)
|
2013-01-19 16:05:19 +04:00
|
|
|
/* *INDENT-ON* */
|
2011-05-31 15:11:01 +04:00
|
|
|
{
|
2013-01-28 19:18:15 +04:00
|
|
|
/* given */
|
|
|
|
char *actual_value;
|
2011-05-31 15:11:01 +04:00
|
|
|
|
|
|
|
{
|
2013-01-28 19:18:15 +04:00
|
|
|
char *esc_str;
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2024-03-09 14:41:08 +03:00
|
|
|
esc_str = str_escape ("T;E\\X;T-FOR-\\T;E;S\\TI;N'G", -1, ";", TRUE);
|
2013-01-28 19:18:15 +04:00
|
|
|
mc_config_set_string_raw (mc_config, "test-group1", "test-param1", esc_str);
|
|
|
|
g_free (esc_str);
|
2011-05-31 15:11:01 +04:00
|
|
|
}
|
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
config_object__reopen ();
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* when */
|
2013-01-19 16:05:19 +04:00
|
|
|
actual_value = mc_config_get_string_raw (mc_config, "test-group1", "test-param1", "not-exists");
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* then */
|
|
|
|
mctest_assert_str_eq (actual_value, "T\\;E\\X\\;T-FOR-\\T\\;E\\;S\\TI\\;N'G");
|
|
|
|
g_free (actual_value);
|
2011-05-31 15:11:01 +04:00
|
|
|
}
|
2013-01-19 16:05:19 +04:00
|
|
|
/* *INDENT-OFF* */
|
2011-05-31 15:11:01 +04:00
|
|
|
END_TEST
|
2013-01-19 16:05:19 +04:00
|
|
|
/* *INDENT-ON* */
|
2011-05-31 15:11:01 +04:00
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
int
|
|
|
|
main (void)
|
|
|
|
{
|
2020-12-30 18:23:26 +03:00
|
|
|
TCase *tc_core;
|
2011-05-31 15:11:01 +04:00
|
|
|
|
2020-12-30 18:23:26 +03:00
|
|
|
tc_core = tcase_create ("Core");
|
2011-05-31 15:11:01 +04:00
|
|
|
|
|
|
|
tcase_add_checked_fixture (tc_core, setup, teardown);
|
|
|
|
|
|
|
|
/* Add new tests here: *************** */
|
2013-01-28 19:18:15 +04:00
|
|
|
mctest_add_parameterized_test (tc_core, test_create_ini_file_paths, test_create_ini_file_ds);
|
2011-05-31 15:11:01 +04:00
|
|
|
tcase_add_test (tc_core, emulate__learn_save);
|
|
|
|
/* *********************************** */
|
|
|
|
|
2020-12-30 18:23:26 +03:00
|
|
|
return mctest_run_all (tc_core);
|
2011-05-31 15:11:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|