123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 |
- /*
- libmc - check mcconfig submodule. read and write config files
- Copyright (C) 2011-2024
- Free Software Foundation, Inc.
- Written by:
- Slava Zanko <slavazanko@gmail.com>, 2011, 2013
- This file is part of the Midnight Commander.
- 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,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #define TEST_SUITE_NAME "lib/mcconfig"
- #include "tests/mctest.h"
- #include "lib/mcconfig.h"
- #include "lib/strutil.h"
- #include "lib/vfs/vfs.h"
- #include "src/vfs/local/local.c"
- static mc_config_t *mc_config;
- static char *ini_filename;
- /* --------------------------------------------------------------------------------------------- */
- static void
- config_object__init (void)
- {
- ini_filename = g_build_filename (WORKDIR, "config_string.ini", (char *) NULL);
- 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))
- {
- ck_abort_msg ("Unable to save config file: %s", error->message);
- g_error_free (error);
- }
- 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);
- }
- /* --------------------------------------------------------------------------------------------- */
- /* @Before */
- static void
- setup (void)
- {
- str_init_strings ("KOI8-R");
- vfs_init ();
- vfs_init_localfs ();
- config_object__init ();
- }
- /* --------------------------------------------------------------------------------------------- */
- /* @After */
- static void
- teardown (void)
- {
- config_object__deinit ();
- vfs_shut ();
- str_uninit_strings ();
- }
- /* --------------------------------------------------------------------------------------------- */
- /* @DataSource("test_create_ini_file_ds") */
- /* *INDENT-OFF* */
- static const struct test_create_ini_file_ds
- {
- 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,
- NULL
- },
- { /* 1. */
- "test-group1",
- "test-param1",
- "not-exists",
- " some value ",
- " some value "
- },
- { /* 2. */
- "test-group1",
- "test-param2",
- "not-exists",
- " \tkoi8-r: ôÅÓÔÏ×ÏÅ ÚÎÁÞÅÎÉÅ ",
- " \tkoi8-r: \320\242\320\265\321\201\321\202\320\276\320\262\320\276\320\265 \320\267\320\275\320\260\321\207\320\265\320\275\320\270\320\265 "
- },
- { /* 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* */
- /* @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;
- mc_config_set_string (mc_config, "test-group1", "test-param1", " some value ");
- mc_config_set_string (mc_config, "test-group1", "test-param2", " \tkoi8-r: ôÅÓÔÏ×ÏÅ ÚÎÁÞÅÎÉÅ ");
- 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 ");
- mc_config_set_string_raw (mc_config, "test-group2", "test-param2",
- " koi8-r: ôÅÓÔÏ×ÏÅ ÚÎÁÞÅÎÉÅ");
- mc_config_set_string_raw (mc_config, "test-group2", "test-param3",
- " \tsome value2\n\nf\b\005fff ");
- config_object__reopen ();
- /* 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);
- /* then */
- mctest_assert_str_eq (actual_value, data->expected_value);
- mctest_assert_str_eq (actual_raw_value, data->expected_raw_value);
- g_free (actual_value);
- g_free (actual_raw_value);
- }
- /* *INDENT-OFF* */
- END_PARAMETRIZED_TEST
- /* *INDENT-ON* */
- /* --------------------------------------------------------------------------------------------- */
- /* @Test(group='Integration') */
- /* *INDENT-OFF* */
- START_TEST (emulate__learn_save)
- /* *INDENT-ON* */
- {
- /* given */
- char *actual_value;
- {
- char *esc_str;
- esc_str = str_escape ("T;E\\X;T-FOR-\\T;E;S\\TI;N'G", -1, ";", TRUE);
- mc_config_set_string_raw (mc_config, "test-group1", "test-param1", esc_str);
- g_free (esc_str);
- }
- config_object__reopen ();
- /* when */
- actual_value = mc_config_get_string_raw (mc_config, "test-group1", "test-param1", "not-exists");
- /* then */
- mctest_assert_str_eq (actual_value, "T\\;E\\X\\;T-FOR-\\T\\;E\\;S\\TI\\;N'G");
- g_free (actual_value);
- }
- /* *INDENT-OFF* */
- END_TEST
- /* *INDENT-ON* */
- /* --------------------------------------------------------------------------------------------- */
- int
- main (void)
- {
- TCase *tc_core;
- tc_core = tcase_create ("Core");
- tcase_add_checked_fixture (tc_core, setup, teardown);
- /* Add new tests here: *************** */
- mctest_add_parameterized_test (tc_core, test_create_ini_file_paths, test_create_ini_file_ds);
- tcase_add_test (tc_core, emulate__learn_save);
- /* *********************************** */
- return mctest_run_all (tc_core);
- }
- /* --------------------------------------------------------------------------------------------- */
|