forked from CTU-OSP/mc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ticket #3235: copy files dosn't work as expected, when copying to a d…
…irectory with the special symbol in its name Add new test which covers current functionality of 'is_wildcarded' function. Signed-off-by: Slava Zanko <[email protected]>
- Loading branch information
Showing
3 changed files
with
165 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
/* | ||
src/filemanager - tests for is_wildcarded() function | ||
Copyright (C) 2011-2014 | ||
Free Software Foundation, Inc. | ||
Written by: | ||
Slava Zanko <[email protected]>, 2015 | ||
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 "/src/filemanager" | ||
|
||
#include "tests/mctest.h" | ||
|
||
#include "src/vfs/local/local.c" | ||
|
||
#include "src/filemanager/filegui.c" | ||
|
||
|
||
/* --------------------------------------------------------------------------------------------- */ | ||
|
||
/* @Before */ | ||
static void | ||
setup (void) | ||
{ | ||
str_init_strings (NULL); | ||
|
||
vfs_init (); | ||
init_localfs (); | ||
vfs_setup_work_dir (); | ||
} | ||
|
||
/* --------------------------------------------------------------------------------------------- */ | ||
|
||
/* @After */ | ||
static void | ||
teardown (void) | ||
{ | ||
vfs_shut (); | ||
str_uninit_strings (); | ||
} | ||
|
||
/* --------------------------------------------------------------------------------------------- */ | ||
|
||
/* @DataSource("test_is_wildcarded_ds") */ | ||
/* *INDENT-OFF* */ | ||
static const struct test_is_wildcarded_ds | ||
{ | ||
const char *input_value; | ||
gboolean expected_result; | ||
} test_is_wildcarded_ds[] = | ||
{ | ||
{ | ||
"blabla", | ||
FALSE | ||
}, | ||
{ | ||
"bla?bla", | ||
FALSE | ||
}, | ||
{ | ||
"bla*bla", | ||
TRUE | ||
}, | ||
{ | ||
"bla\\*bla", | ||
TRUE | ||
}, | ||
|
||
{ | ||
"bla\\\\*bla", | ||
TRUE | ||
}, | ||
{ | ||
"bla\\1bla", | ||
TRUE | ||
}, | ||
{ | ||
"bla\\\\1bla", | ||
TRUE | ||
}, | ||
{ | ||
"bla\\\t\\\\1bla", | ||
TRUE | ||
}, | ||
{ | ||
"bla\\\t\\\\\\1bla", | ||
TRUE | ||
}, | ||
{ | ||
"bla\\9bla", | ||
TRUE | ||
}, | ||
{ | ||
"blabla\\", | ||
FALSE | ||
}, | ||
}; | ||
/* *INDENT-ON* */ | ||
|
||
/* @Test(dataSource = "test_is_wildcarded_ds") */ | ||
/* *INDENT-OFF* */ | ||
START_PARAMETRIZED_TEST (test_is_wildcarded, test_is_wildcarded_ds) | ||
/* *INDENT-ON* */ | ||
{ | ||
/* given */ | ||
gboolean actual_result; | ||
|
||
/* when */ | ||
actual_result = is_wildcarded (data->input_value); | ||
/* then */ | ||
mctest_assert_int_eq (actual_result, data->expected_result); | ||
} | ||
/* *INDENT-OFF* */ | ||
END_PARAMETRIZED_TEST | ||
/* *INDENT-ON* */ | ||
|
||
/* --------------------------------------------------------------------------------------------- */ | ||
|
||
int | ||
main (void) | ||
{ | ||
int number_failed; | ||
|
||
Suite *s = suite_create (TEST_SUITE_NAME); | ||
TCase *tc_core = tcase_create ("Core"); | ||
SRunner *sr; | ||
|
||
tcase_add_checked_fixture (tc_core, setup, teardown); | ||
|
||
/* Add new tests here: *************** */ | ||
mctest_add_parameterized_test (tc_core, test_is_wildcarded, test_is_wildcarded_ds); | ||
/* *********************************** */ | ||
|
||
suite_add_tcase (s, tc_core); | ||
sr = srunner_create (s); | ||
srunner_set_log (sr, "filegui_is_wildcarded.log"); | ||
srunner_run_all (sr, CK_NORMAL); | ||
number_failed = srunner_ntests_failed (sr); | ||
srunner_free (sr); | ||
return (number_failed == 0) ? 0 : 1; | ||
} | ||
|
||
/* --------------------------------------------------------------------------------------------- */ |