2011-10-15 14:56:47 +04:00
|
|
|
/*
|
|
|
|
lib/vfs - vfs_path_t charset recode functions
|
2011-08-15 15:37:59 +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-08-15 15:37:59 +04:00
|
|
|
|
|
|
|
Written by:
|
2013-01-19 17:42:26 +04:00
|
|
|
Slava Zanko <slavazanko@gmail.com>, 2011, 2013
|
2011-08-15 15:37:59 +04:00
|
|
|
|
2011-10-15 14:56:47 +04:00
|
|
|
This file is part of the Midnight Commander.
|
2011-08-15 15:37:59 +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-08-15 15:37:59 +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-08-15 15:37:59 +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-08-15 15:37:59 +04:00
|
|
|
|
|
|
|
#define TEST_SUITE_NAME "/lib/vfs"
|
|
|
|
|
2013-01-19 17:42:26 +04:00
|
|
|
#include "tests/mctest.h"
|
2011-08-15 15:37:59 +04:00
|
|
|
|
|
|
|
#include "lib/charsets.h"
|
|
|
|
|
|
|
|
#include "lib/strutil.h"
|
|
|
|
#include "lib/vfs/xdirentry.h"
|
|
|
|
#include "lib/vfs/path.h"
|
|
|
|
|
|
|
|
#include "src/vfs/local/local.c"
|
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* @Mock */
|
2011-11-27 00:12:52 +04:00
|
|
|
const char *
|
|
|
|
mc_config_get_home_dir (void)
|
|
|
|
{
|
|
|
|
return "/mock/home";
|
|
|
|
}
|
2011-08-15 15:37:59 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
2011-08-15 15:37:59 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* @Before */
|
2011-08-15 15:37:59 +04:00
|
|
|
static void
|
|
|
|
setup (void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* @After */
|
2011-08-15 15:37:59 +04:00
|
|
|
static void
|
|
|
|
teardown (void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
2011-11-27 00:12:52 +04:00
|
|
|
|
2013-01-19 16:05:19 +04:00
|
|
|
static void
|
|
|
|
test_init_vfs (const char *encoding)
|
2012-08-28 14:20:30 +04:00
|
|
|
{
|
|
|
|
str_init_strings (encoding);
|
|
|
|
|
|
|
|
vfs_init ();
|
2019-05-12 19:35:20 +03:00
|
|
|
vfs_init_localfs ();
|
2012-08-28 14:20:30 +04:00
|
|
|
vfs_setup_work_dir ();
|
|
|
|
|
|
|
|
mc_global.sysconfig_dir = (char *) TEST_SHARE_DIR;
|
|
|
|
load_codepages_list ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2013-01-19 16:05:19 +04:00
|
|
|
static void
|
2015-04-07 11:52:58 +03:00
|
|
|
test_deinit_vfs (void)
|
2012-08-28 14:20:30 +04:00
|
|
|
{
|
|
|
|
free_codepages_list ();
|
|
|
|
str_uninit_strings ();
|
|
|
|
vfs_shut ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* @DataSource("test_path_recode_ds") */
|
|
|
|
/* *INDENT-OFF* */
|
|
|
|
static const struct test_path_recode_ds
|
|
|
|
{
|
|
|
|
const char *input_codepage;
|
|
|
|
const char *input_path;
|
|
|
|
const char *expected_element_path;
|
|
|
|
const char *expected_recoded_path;
|
|
|
|
} test_path_recode_ds[] =
|
|
|
|
{
|
|
|
|
{ /* 0. */
|
|
|
|
"UTF-8",
|
2024-09-30 10:41:19 +03:00
|
|
|
"/\xD4\xC5\xD3\xD4\xCF\xD7\xD9\xCA/\xD0\xD5\xD4\xD8",
|
|
|
|
"/\xD4\xC5\xD3\xD4\xCF\xD7\xD9\xCA/\xD0\xD5\xD4\xD8",
|
|
|
|
"/\xD4\xC5\xD3\xD4\xCF\xD7\xD9\xCA/\xD0\xD5\xD4\xD8"
|
2013-01-28 19:18:15 +04:00
|
|
|
},
|
|
|
|
{ /* 1. */
|
|
|
|
"UTF-8",
|
|
|
|
"/#enc:KOI8-R/тестовый/путь",
|
2024-09-30 10:41:19 +03:00
|
|
|
"/\xD4\xC5\xD3\xD4\xCF\xD7\xD9\xCA/\xD0\xD5\xD4\xD8",
|
2013-01-28 19:18:15 +04:00
|
|
|
"/#enc:KOI8-R/тестовый/путь"
|
|
|
|
},
|
|
|
|
{ /* 2. */
|
|
|
|
"KOI8-R",
|
|
|
|
"/тестовый/путь",
|
|
|
|
"/тестовый/путь",
|
|
|
|
"/тестовый/путь"
|
|
|
|
},
|
|
|
|
{ /* 3. */
|
|
|
|
"KOI8-R",
|
2024-09-30 10:41:19 +03:00
|
|
|
"/#enc:UTF-8/\xD4\xC5\xD3\xD4\xCF\xD7\xD9\xCA/\xD0\xD5\xD4\xD8",
|
2013-01-28 19:18:15 +04:00
|
|
|
"/тестовый/путь",
|
2024-09-30 10:41:19 +03:00
|
|
|
"/#enc:UTF-8/\xD4\xC5\xD3\xD4\xCF\xD7\xD9\xCA/\xD0\xD5\xD4\xD8"
|
2013-01-28 19:18:15 +04:00
|
|
|
},
|
|
|
|
{ /* 4. Test encode info at start */
|
|
|
|
"UTF-8",
|
|
|
|
"#enc:KOI8-R/bla-bla/some/path",
|
|
|
|
"/bla-bla/some/path",
|
|
|
|
"/#enc:KOI8-R/bla-bla/some/path"
|
|
|
|
},
|
|
|
|
};
|
|
|
|
/* *INDENT-ON* */
|
2011-08-15 15:37:59 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* @Test(dataSource = "test_path_recode_ds") */
|
2013-01-19 16:05:19 +04:00
|
|
|
/* *INDENT-OFF* */
|
2013-01-28 19:18:15 +04:00
|
|
|
START_PARAMETRIZED_TEST (test_path_recode, test_path_recode_ds)
|
2013-01-19 16:05:19 +04:00
|
|
|
/* *INDENT-ON* */
|
2011-08-15 15:37:59 +04:00
|
|
|
{
|
2013-01-28 19:18:15 +04:00
|
|
|
/* given */
|
2011-08-15 15:37:59 +04:00
|
|
|
vfs_path_t *vpath;
|
2023-07-16 11:12:15 +03:00
|
|
|
const char *element_path;
|
2013-04-14 17:38:37 +04:00
|
|
|
const char *vpath_str;
|
2011-08-15 15:37:59 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
test_init_vfs (data->input_codepage);
|
2011-08-15 15:37:59 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* when */
|
|
|
|
vpath = vfs_path_from_str (data->input_path);
|
2023-07-16 11:12:15 +03:00
|
|
|
element_path = vfs_path_get_last_path_str (vpath);
|
2011-08-15 15:37:59 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* then */
|
2013-04-14 17:38:37 +04:00
|
|
|
vpath_str = vfs_path_as_str (vpath);
|
|
|
|
mctest_assert_ptr_ne (vpath, NULL);
|
2023-07-16 11:12:15 +03:00
|
|
|
mctest_assert_str_eq (element_path, data->expected_element_path);
|
2013-04-14 17:38:37 +04:00
|
|
|
mctest_assert_str_eq (vpath_str, data->expected_recoded_path);
|
2011-08-15 15:37:59 +04:00
|
|
|
|
2021-02-21 19:30:18 +03:00
|
|
|
vfs_path_free (vpath, TRUE);
|
2013-01-19 16:05:19 +04:00
|
|
|
test_deinit_vfs ();
|
2011-08-15 15:37:59 +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-08-15 15:37:59 +04:00
|
|
|
|
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
2011-08-15 15:37:59 +04:00
|
|
|
|
2018-09-14 13:24:17 +03:00
|
|
|
static struct vfs_class vfs_test_ops1;
|
2011-08-15 15:37:59 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* @DataSource("test_path_to_str_flags_ds") */
|
2013-01-19 16:05:19 +04:00
|
|
|
/* *INDENT-OFF* */
|
2013-01-28 19:18:15 +04:00
|
|
|
static const struct test_path_to_str_flags_ds
|
|
|
|
{
|
|
|
|
const char *input_path;
|
|
|
|
const vfs_path_flag_t input_from_str_flags;
|
|
|
|
const vfs_path_flag_t input_to_str_flags;
|
|
|
|
const char *expected_path;
|
|
|
|
} test_path_to_str_flags_ds[] =
|
|
|
|
{
|
|
|
|
{ /* 0. */
|
|
|
|
"test1://user:passwd@127.0.0.1",
|
|
|
|
VPF_NO_CANON,
|
|
|
|
VPF_STRIP_PASSWORD,
|
|
|
|
"test1://user@127.0.0.1/"
|
|
|
|
},
|
|
|
|
{ /* 1. */
|
|
|
|
"/test1://user:passwd@host.name/#enc:KOI8-R/тестовый/путь",
|
|
|
|
VPF_NONE,
|
|
|
|
VPF_STRIP_PASSWORD,
|
|
|
|
"/test1://user@host.name/#enc:KOI8-R/тестовый/путь"
|
|
|
|
},
|
|
|
|
{ /* 2. */
|
|
|
|
"/test1://user:passwd@host.name/#enc:KOI8-R/тестовый/путь",
|
|
|
|
VPF_NONE,
|
|
|
|
VPF_RECODE,
|
2024-09-30 10:41:19 +03:00
|
|
|
"/test1://user:passwd@host.name/\xD4\xC5\xD3\xD4\xCF\xD7\xD9\xCA/\xD0\xD5\xD4\xD8"
|
2013-01-28 19:18:15 +04:00
|
|
|
},
|
|
|
|
{ /* 3. */
|
|
|
|
"/test1://user:passwd@host.name/#enc:KOI8-R/тестовый/путь",
|
|
|
|
VPF_NONE,
|
|
|
|
VPF_RECODE | VPF_STRIP_PASSWORD,
|
2024-09-30 10:41:19 +03:00
|
|
|
"/test1://user@host.name/\xD4\xC5\xD3\xD4\xCF\xD7\xD9\xCA/\xD0\xD5\xD4\xD8"
|
2013-01-28 19:18:15 +04:00
|
|
|
},
|
|
|
|
{ /* 4. */
|
|
|
|
"/mock/home/test/dir",
|
|
|
|
VPF_NONE,
|
|
|
|
VPF_STRIP_HOME,
|
|
|
|
"~/test/dir"
|
|
|
|
},
|
|
|
|
{ /* 5. */
|
|
|
|
"/mock/home/test1://user:passwd@host.name/#enc:KOI8-R/тестовый/путь",
|
|
|
|
VPF_NONE,
|
|
|
|
VPF_STRIP_HOME | VPF_STRIP_PASSWORD,
|
|
|
|
"~/test1://user@host.name/#enc:KOI8-R/тестовый/путь"
|
|
|
|
},
|
|
|
|
{ /* 6. */
|
|
|
|
"/mock/home/test1://user:passwd@host.name/#enc:KOI8-R/тестовый/путь",
|
|
|
|
VPF_NONE,
|
|
|
|
VPF_STRIP_HOME | VPF_STRIP_PASSWORD | VPF_HIDE_CHARSET,
|
|
|
|
"~/test1://user@host.name/тестовый/путь"
|
|
|
|
},
|
|
|
|
{ /* 7. */
|
|
|
|
"/mock/home/test1://user:passwd@host.name/#enc:KOI8-R/тестовый/путь",
|
|
|
|
VPF_NONE,
|
|
|
|
VPF_STRIP_HOME | VPF_RECODE,
|
2024-09-30 10:41:19 +03:00
|
|
|
"~/test1://user:passwd@host.name/\xD4\xC5\xD3\xD4\xCF\xD7\xD9\xCA/\xD0\xD5\xD4\xD8"
|
2013-01-28 19:18:15 +04:00
|
|
|
},
|
|
|
|
{ /* 8. */
|
|
|
|
"/mock/home/test1://user:passwd@host.name/#enc:KOI8-R/тестовый/путь",
|
|
|
|
VPF_NONE,
|
|
|
|
VPF_STRIP_HOME | VPF_RECODE | VPF_STRIP_PASSWORD,
|
2024-09-30 10:41:19 +03:00
|
|
|
"~/test1://user@host.name/\xD4\xC5\xD3\xD4\xCF\xD7\xD9\xCA/\xD0\xD5\xD4\xD8"
|
2013-01-28 19:18:15 +04:00
|
|
|
},
|
|
|
|
};
|
2013-01-19 16:05:19 +04:00
|
|
|
/* *INDENT-ON* */
|
2011-08-15 15:37:59 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* @Test(dataSource = "test_path_to_str_flags_ds") */
|
2013-01-19 16:05:19 +04:00
|
|
|
/* *INDENT-OFF* */
|
2013-01-28 19:18:15 +04:00
|
|
|
START_PARAMETRIZED_TEST (test_path_to_str_flags, test_path_to_str_flags_ds)
|
2013-01-19 16:05:19 +04:00
|
|
|
/* *INDENT-ON* */
|
2011-11-27 00:12:52 +04:00
|
|
|
{
|
2013-01-28 19:18:15 +04:00
|
|
|
/* given */
|
2011-11-27 00:12:52 +04:00
|
|
|
vfs_path_t *vpath;
|
|
|
|
char *str_path;
|
|
|
|
|
2013-01-19 16:05:19 +04:00
|
|
|
test_init_vfs ("UTF-8");
|
2011-11-27 00:12:52 +04:00
|
|
|
|
2019-11-18 21:24:13 +03:00
|
|
|
vfs_init_class (&vfs_test_ops1, "testfs1", VFSF_NOLINKS | VFSF_REMOTE, "test1");
|
2018-09-14 13:24:17 +03:00
|
|
|
vfs_register_class (&vfs_test_ops1);
|
2011-11-27 00:12:52 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* when */
|
2011-11-27 00:12:52 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
vpath = vfs_path_from_str_flags (data->input_path, data->input_from_str_flags);
|
|
|
|
str_path = vfs_path_to_str_flags (vpath, 0, data->input_to_str_flags);
|
2011-11-27 00:12:52 +04:00
|
|
|
|
2013-01-28 19:18:15 +04:00
|
|
|
/* then */
|
|
|
|
mctest_assert_str_eq (str_path, data->expected_path);
|
2011-11-27 00:12:52 +04:00
|
|
|
|
2011-11-27 04:09:41 +04:00
|
|
|
g_free (str_path);
|
2021-02-21 19:30:18 +03:00
|
|
|
vfs_path_free (vpath, TRUE);
|
2013-01-19 16:05:19 +04:00
|
|
|
test_deinit_vfs ();
|
2011-11-27 00:12:52 +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-11-27 00:12:52 +04:00
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2011-08-15 15:37:59 +04:00
|
|
|
int
|
|
|
|
main (void)
|
|
|
|
{
|
2020-12-30 18:23:26 +03:00
|
|
|
TCase *tc_core;
|
2011-08-15 15:37:59 +04:00
|
|
|
|
2020-12-30 18:23:26 +03:00
|
|
|
tc_core = tcase_create ("Core");
|
2011-08-15 15:37:59 +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_path_recode, test_path_recode_ds);
|
|
|
|
mctest_add_parameterized_test (tc_core, test_path_to_str_flags, test_path_to_str_flags_ds);
|
2011-08-15 15:37:59 +04:00
|
|
|
/* *********************************** */
|
|
|
|
|
2020-12-30 18:23:26 +03:00
|
|
|
return mctest_run_all (tc_core);
|
2011-08-15 15:37:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|