2 src - tests for execute_external_editor_or_viewer() function
5 The Free Software Foundation, Inc.
8 Slava Zanko <slavazanko@gmail.com>, 2013
10 This file is part of the Midnight Commander.
12 The Midnight Commander is free software: you can redistribute it
13 and/or modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation, either version 3 of the License,
15 or (at your option) any later version.
17 The Midnight Commander is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #define TEST_SUITE_NAME "/src"
28 #include "tests/mctest.h"
30 #include "execute__common.c"
32 /* --------------------------------------------------------------------------------------------- */
34 char *execute_get_external_cmd_opts_from_config (const char *command
,
35 const vfs_path_t
* filename_vpath
, int start_line
);
38 static char *execute_external_cmd_opts__command__captured
;
40 static vfs_path_t
*execute_external_cmd_opts__filename_vpath__captured
;
42 static int execute_external_cmd_opts__start_line__captured
;
44 /* @ThenReturnValue */
45 static char *execute_external_cmd_opts__return_value
;
49 execute_get_external_cmd_opts_from_config (const char *command
, const vfs_path_t
* filename_vpath
,
52 execute_external_cmd_opts__command__captured
= g_strdup (command
);
53 execute_external_cmd_opts__filename_vpath__captured
= vfs_path_clone (filename_vpath
);
54 execute_external_cmd_opts__start_line__captured
= start_line
;
56 return execute_external_cmd_opts__return_value
;
60 execute_get_external_cmd_opts_from_config__init (void)
62 execute_external_cmd_opts__command__captured
= NULL
;
63 execute_external_cmd_opts__filename_vpath__captured
= NULL
;
64 execute_external_cmd_opts__start_line__captured
= 0;
68 execute_get_external_cmd_opts_from_config__deinit (void)
70 g_free (execute_external_cmd_opts__command__captured
);
71 vfs_path_free (execute_external_cmd_opts__filename_vpath__captured
);
74 /* --------------------------------------------------------------------------------------------- */
75 void do_executev (const char *lc_shell
, int flags
, char *const argv
[]);
78 static char *do_executev__lc_shell__captured
;
80 static int do_executev__flags__captured
;
82 static GPtrArray
*do_executev__argv__captured
;
86 do_executev (const char *lc_shell
, int flags
, char *const argv
[])
88 do_executev__lc_shell__captured
= g_strdup (lc_shell
);
89 do_executev__flags__captured
= flags
;
91 for (; argv
!= NULL
&& *argv
!= NULL
; argv
++)
92 g_ptr_array_add (do_executev__argv__captured
, g_strdup (*argv
));
96 do_executev__init (void)
98 do_executev__lc_shell__captured
= NULL
;
99 do_executev__argv__captured
= g_ptr_array_new ();
100 do_executev__flags__captured
= 0;
104 do_executev__deinit (void)
106 g_free (do_executev__lc_shell__captured
);
107 g_ptr_array_foreach (do_executev__argv__captured
, (GFunc
) g_free
, NULL
);
108 g_ptr_array_free (do_executev__argv__captured
, TRUE
);
111 /* --------------------------------------------------------------------------------------------- */
119 execute_get_external_cmd_opts_from_config__init ();
120 do_executev__init ();
123 /* --------------------------------------------------------------------------------------------- */
129 do_executev__deinit ();
130 execute_get_external_cmd_opts_from_config__deinit ();
135 /* --------------------------------------------------------------------------------------------- */
139 START_TEST (do_open_external_editor_or_viewer
)
143 vfs_path_t
*filename_vpath
;
144 filename_vpath
= vfs_path_from_str ("/path/to/file.txt");
146 vfs_file_is_local__return_value
= TRUE
;
147 execute_external_cmd_opts__return_value
=
149 (" 'param 1 with spaces' \"param 2\" -a -b -cdef /path/to/file.txt +123");
152 execute_external_editor_or_viewer ("editor_or_viewer", filename_vpath
, 123);
156 /* check call to execute_get_external_cmd_opts_from_config() */
157 mctest_assert_str_eq (execute_external_cmd_opts__command__captured
, "editor_or_viewer");
158 mctest_assert_int_eq (vfs_path_equal
159 (execute_external_cmd_opts__filename_vpath__captured
, filename_vpath
),
161 mctest_assert_int_eq (execute_external_cmd_opts__start_line__captured
, 123);
163 /* check call to do_executev() */
164 mctest_assert_str_eq (do_executev__lc_shell__captured
, "editor_or_viewer");
165 mctest_assert_int_eq (do_executev__flags__captured
, EXECUTE_INTERNAL
);
166 mctest_assert_int_eq (do_executev__argv__captured
->len
, 7);
168 mctest_assert_str_eq (g_ptr_array_index (do_executev__argv__captured
, 0),
169 "param 1 with spaces");
170 mctest_assert_str_eq (g_ptr_array_index (do_executev__argv__captured
, 1), "param 2");
171 mctest_assert_str_eq (g_ptr_array_index (do_executev__argv__captured
, 2), "-a");
172 mctest_assert_str_eq (g_ptr_array_index (do_executev__argv__captured
, 3), "-b");
173 mctest_assert_str_eq (g_ptr_array_index (do_executev__argv__captured
, 4), "-cdef");
174 mctest_assert_str_eq (g_ptr_array_index (do_executev__argv__captured
, 5), "/path/to/file.txt");
175 mctest_assert_str_eq (g_ptr_array_index (do_executev__argv__captured
, 6), "+123");
177 vfs_path_free (filename_vpath
);
183 /* --------------------------------------------------------------------------------------------- */
190 Suite
*s
= suite_create (TEST_SUITE_NAME
);
191 TCase
*tc_core
= tcase_create ("Core");
194 tcase_add_checked_fixture (tc_core
, my_setup
, my_teardown
);
196 /* Add new tests here: *************** */
197 tcase_add_test (tc_core
, do_open_external_editor_or_viewer
);
198 /* *********************************** */
200 suite_add_tcase (s
, tc_core
);
201 sr
= srunner_create (s
);
202 srunner_set_log (sr
, "execute__execute_external_editor_or_viewer.log");
203 srunner_run_all (sr
, CK_NORMAL
);
204 number_failed
= srunner_ntests_failed (sr
);
206 return (number_failed
== 0) ? 0 : 1;
209 /* --------------------------------------------------------------------------------------------- */