123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- /*
- lib/widget - tests for autocomplete feature
- Copyright (C) 2013
- The Free Software Foundation, Inc.
- Written by:
- Slava Zanko <slavazanko@gmail.com>, 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/widget"
- #include "tests/mctest.h"
- #include "lib/strutil.h"
- #include "lib/widget.h"
- /* --------------------------------------------------------------------------------------------- */
- void complete_engine_fill_completions (WInput * in);
- char **try_complete (char *text, int *lc_start, int *lc_end, input_complete_t flags);
- /* --------------------------------------------------------------------------------------------- */
- /* @CapturedValue */
- static char *try_complete__text__captured;
- /* @CapturedValue */
- static int try_complete__lc_start__captured;
- /* @CapturedValue */
- static int try_complete__lc_end__captured;
- /* @CapturedValue */
- static input_complete_t try_complete__flags__captured;
- /* @ThenReturnValue */
- static char **try_complete__return_value;
- /* @Mock */
- char **
- try_complete (char *text, int *lc_start, int *lc_end, input_complete_t flags)
- {
- try_complete__text__captured = g_strdup (text);
- try_complete__lc_start__captured = *lc_start;
- try_complete__lc_end__captured = *lc_end;
- try_complete__flags__captured = flags;
- return try_complete__return_value;
- }
- static void
- try_complete__init (void)
- {
- try_complete__text__captured = NULL;
- try_complete__lc_start__captured = 0;
- try_complete__lc_end__captured = 0;
- try_complete__flags__captured = 0;
- }
- static void
- try_complete__deinit (void)
- {
- g_free (try_complete__text__captured);
- }
- /* --------------------------------------------------------------------------------------------- */
- /* @Before */
- static void
- setup (void)
- {
- str_init_strings (NULL);
- try_complete__init ();
- }
- /* --------------------------------------------------------------------------------------------- */
- /* @After */
- static void
- teardown (void)
- {
- try_complete__deinit ();
- str_uninit_strings ();
- }
- /* --------------------------------------------------------------------------------------------- */
- /* @DataSource("test_complete_engine_fill_completions_ds") */
- /* *INDENT-OFF* */
- static const struct test_complete_engine_fill_completions_ds
- {
- const char *input_buffer;
- const int input_point;
- const input_complete_t input_completion_flags;
- int expected_start;
- int expected_end;
- } test_complete_engine_fill_completions_ds[] =
- {
- {
- "string",
- 3,
- INPUT_COMPLETE_NONE,
- 0,
- 3
- },
- {
- "some string",
- 7,
- INPUT_COMPLETE_NONE,
- 0,
- 7
- },
- {
- "some string",
- 7,
- INPUT_COMPLETE_SHELL_ESC,
- 5,
- 7
- },
- {
- "some\\ string111",
- 9,
- INPUT_COMPLETE_SHELL_ESC,
- 0,
- 9
- },
- {
- "some\\\tstring111",
- 9,
- INPUT_COMPLETE_SHELL_ESC,
- 0,
- 9
- },
- {
- "some\tstring",
- 7,
- INPUT_COMPLETE_NONE,
- 5,
- 7
- },
- {
- "some;string",
- 7,
- INPUT_COMPLETE_NONE,
- 5,
- 7
- },
- {
- "some|string",
- 7,
- INPUT_COMPLETE_NONE,
- 5,
- 7
- },
- {
- "some<string",
- 7,
- INPUT_COMPLETE_NONE,
- 5,
- 7
- },
- {
- "some>string",
- 7,
- INPUT_COMPLETE_NONE,
- 5,
- 7
- },
- {
- "some!@#$%^&*()_\\+~`\"',./?:string",
- 30,
- INPUT_COMPLETE_NONE,
- 0,
- 30
- },
- };
- /* *INDENT-ON* */
- /* @Test(dataSource = "test_complete_engine_fill_completions_ds") */
- /* *INDENT-OFF* */
- START_PARAMETRIZED_TEST (test_complete_engine_fill_completions,
- test_complete_engine_fill_completions_ds)
- /* *INDENT-ON* */
- {
- /* given */
- WInput *w_input;
- w_input = g_new (WInput, 1);
- w_input->buffer = g_strdup (data->input_buffer);
- w_input->point = data->input_point;
- w_input->completion_flags = data->input_completion_flags;
- /* when */
- complete_engine_fill_completions (w_input);
- /* then */
- mctest_assert_str_eq (try_complete__text__captured, data->input_buffer);
- mctest_assert_int_eq (try_complete__lc_start__captured, data->expected_start);
- mctest_assert_int_eq (try_complete__lc_end__captured, data->expected_end);
- mctest_assert_int_eq (try_complete__flags__captured, data->input_completion_flags);
- }
- /* *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_complete_engine_fill_completions,
- test_complete_engine_fill_completions_ds);
- /* *********************************** */
- suite_add_tcase (s, tc_core);
- sr = srunner_create (s);
- srunner_set_log (sr, "complete_engine.log");
- srunner_run_all (sr, CK_NORMAL);
- number_failed = srunner_ntests_failed (sr);
- srunner_free (sr);
- return (number_failed == 0) ? 0 : 1;
- }
- /* --------------------------------------------------------------------------------------------- */
|