2 lib/vfs - mc_build_filename() function testing
4 Copyright (C) 2011-2016
5 Free Software Foundation, Inc.
8 Slava Zanko <slavazanko@gmail.com>, 2011, 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 "/lib"
28 #include "tests/mctest.h"
32 #include "lib/strutil.h"
35 /* --------------------------------------------------------------------------------------------- */
43 /* --------------------------------------------------------------------------------------------- */
51 /* --------------------------------------------------------------------------------------------- */
54 run_mc_build_filename (int iteration
)
59 return mc_build_filename ("test", "path", (char *) NULL
);
61 return mc_build_filename ("/test", "path/", (char *) NULL
);
63 return mc_build_filename ("/test", "pa/th", (char *) NULL
);
65 return mc_build_filename ("/test", "#vfsprefix:", "path ", (char *) NULL
);
67 return mc_build_filename ("/test", "vfsprefix://", "path ", (char *) NULL
);
69 return mc_build_filename ("/test", "vfs/../prefix:///", "p\\///ath", (char *) NULL
);
71 return mc_build_filename ("/test", "path", "..", "/test", "path/", (char *) NULL
);
73 return mc_build_filename ("", "path", (char *) NULL
);
75 return mc_build_filename ("", "/path", (char *) NULL
);
77 return mc_build_filename ("path", "", (char *) NULL
);
79 return mc_build_filename ("/path", "", (char *) NULL
);
81 return mc_build_filename ("pa", "", "th", (char *) NULL
);
83 return mc_build_filename ("/pa", "", "/th", (char *) NULL
);
89 /* @DataSource("test_mc_build_filename_ds") */
91 static const struct test_mc_build_filename_ds
93 const char *expected_result
;
94 } test_mc_build_filename_ds
[] =
99 {"/test/#vfsprefix:/path "},
100 {"/test/vfsprefix://path "},
101 {"/test/prefix://p\\/ath"},
112 /* @Test(dataSource = "test_mc_build_filename_ds") */
114 START_PARAMETRIZED_TEST (test_mc_build_filename
, test_mc_build_filename_ds
)
121 actual_result
= run_mc_build_filename (_i
);
124 mctest_assert_str_eq (actual_result
, data
->expected_result
);
126 g_free (actual_result
);
129 END_PARAMETRIZED_TEST
132 /* --------------------------------------------------------------------------------------------- */
139 Suite
*s
= suite_create (TEST_SUITE_NAME
);
140 TCase
*tc_core
= tcase_create ("Core");
143 tcase_add_checked_fixture (tc_core
, setup
, teardown
);
145 /* Add new tests here: *************** */
146 mctest_add_parameterized_test (tc_core
, test_mc_build_filename
, test_mc_build_filename_ds
);
147 /* *********************************** */
149 suite_add_tcase (s
, tc_core
);
150 sr
= srunner_create (s
);
151 srunner_set_log (sr
, "mc_build_filename.log");
152 srunner_run_all (sr
, CK_ENV
);
153 number_failed
= srunner_ntests_failed (sr
);
155 return (number_failed
== 0) ? EXIT_SUCCESS
: EXIT_FAILURE
;
158 /* --------------------------------------------------------------------------------------------- */