Code refactoring in tests.
[midnight-commander.git] / tests / lib / mc_build_filename.c
blobc701634c81caa3be0ae4229833c3d26b6b53b315
1 /*
2 lib/vfs - mc_build_filename() function testing
4 Copyright (C) 2011, 2013
5 The Free Software Foundation, Inc.
7 Written by:
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"
30 #include <stdio.h>
32 #include "lib/strutil.h"
33 #include "lib/util.h"
35 /* --------------------------------------------------------------------------------------------- */
37 /* @Before */
38 static void
39 setup (void)
43 /* --------------------------------------------------------------------------------------------- */
45 /* @After */
46 static void
47 teardown (void)
51 /* --------------------------------------------------------------------------------------------- */
53 static char *
54 run_mc_build_filename (int iteration)
56 switch (iteration)
58 case 0:
59 return mc_build_filename ("test", "path", NULL);
60 case 1:
61 return mc_build_filename ("/test", "path/", NULL);
62 case 2:
63 return mc_build_filename ("/test", "pa/th", NULL);
64 case 3:
65 return mc_build_filename ("/test", "#vfsprefix:", "path ", NULL);
66 case 4:
67 return mc_build_filename ("/test", "vfsprefix://", "path ", NULL);
68 case 5:
69 return mc_build_filename ("/test", "vfs/../prefix:///", "p\\///ath", NULL);
70 case 6:
71 return mc_build_filename ("/test", "path", "..", "/test", "path/", NULL);
72 case 7:
73 return mc_build_filename ("", "path", NULL);
74 case 8:
75 return mc_build_filename ("", "/path", NULL);
76 case 9:
77 return mc_build_filename ("path", "", NULL);
78 case 10:
79 return mc_build_filename ("/path", "", NULL);
80 case 11:
81 return mc_build_filename ("pa", "", "th", NULL);
82 case 12:
83 return mc_build_filename ("/pa", "", "/th", NULL);
85 return NULL;
88 /* @DataSource("test_mc_build_filename_ds") */
89 /* *INDENT-OFF* */
90 static const struct test_mc_build_filename_ds
92 const char *expected_result;
93 } test_mc_build_filename_ds[] =
95 {"test/path"},
96 {"/test/path"},
97 {"/test/pa/th"},
98 {"/test/#vfsprefix:/path "},
99 {"/test/vfsprefix://path "},
100 {"/test/prefix://p\\/ath"},
101 {"/test/test/path"},
102 {"path"},
103 {"path"},
104 {"path"},
105 {"/path"},
106 {"pa/th"},
107 {"/pa/th"},
109 /* *INDENT-ON* */
111 /* @Test(dataSource = "test_mc_build_filename_ds") */
112 /* *INDENT-OFF* */
113 START_PARAMETRIZED_TEST (test_mc_build_filename, test_mc_build_filename_ds)
114 /* *INDENT-ON* */
116 /* given */
117 char *actual_result;
119 /* when */
120 actual_result = run_mc_build_filename (_i);
122 /* then */
123 mctest_assert_str_eq (actual_result, data->expected_result);
125 g_free (actual_result);
127 /* *INDENT-OFF* */
128 END_PARAMETRIZED_TEST
129 /* *INDENT-ON* */
131 /* --------------------------------------------------------------------------------------------- */
134 main (void)
136 int number_failed;
138 Suite *s = suite_create (TEST_SUITE_NAME);
139 TCase *tc_core = tcase_create ("Core");
140 SRunner *sr;
142 tcase_add_checked_fixture (tc_core, setup, teardown);
144 /* Add new tests here: *************** */
145 mctest_add_parameterized_test (tc_core, test_mc_build_filename, test_mc_build_filename_ds);
146 /* *********************************** */
148 suite_add_tcase (s, tc_core);
149 sr = srunner_create (s);
150 srunner_set_log (sr, "mc_build_filename.log");
151 srunner_run_all (sr, CK_NORMAL);
152 number_failed = srunner_ntests_failed (sr);
153 srunner_free (sr);
154 return (number_failed == 0) ? 0 : 1;
157 /* --------------------------------------------------------------------------------------------- */