If widget wants cursor, define that explicitly.
[midnight-commander.git] / tests / lib / strutil / replace__str_replace_all.c
blob2d2a5da3602e86964abc2783d448d525def3d6cd
1 /*
2 lib/strutil - tests for lib/strutil/replace:str_replace_all() function.
4 Copyright (C) 2013-2016
5 Free Software Foundation, Inc.
7 Written by:
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 "/lib/strutil"
28 #include "tests/mctest.h"
30 #include "lib/strutil.h"
32 /* --------------------------------------------------------------------------------------------- */
34 /* @Before */
35 static void
36 setup (void)
38 str_init_strings (NULL);
41 /* --------------------------------------------------------------------------------------------- */
43 /* @After */
44 static void
45 teardown (void)
47 str_uninit_strings ();
50 /* --------------------------------------------------------------------------------------------- */
52 /* @DataSource("str_replace_all_test_ds") */
53 /* *INDENT-OFF* */
54 static const struct str_replace_all_test_ds
56 const char *haystack;
57 const char *needle;
58 const char *replacement;
59 const char *expected_result;
60 } str_replace_all_test_ds[] =
63 /* 0. needle not found*/
64 "needle not found",
65 "blablablabla",
66 "1234567890",
67 "needle not found",
70 /* 1. replacement is less rather that needle */
71 "some string blablablabla string",
72 "blablablabla",
73 "1234",
74 "some string 1234 string",
77 /* 2. replacement is great rather that needle */
78 "some string bla string",
79 "bla",
80 "1234567890",
81 "some string 1234567890 string",
84 /* 3. replace few substrings in a start of string */
85 "blabla blabla string",
86 "blabla",
87 "111111111",
88 "111111111 111111111 string",
91 /* 4. replace few substrings in a middle of string */
92 "some string blabla str blabla string",
93 "blabla",
94 "111111111",
95 "some string 111111111 str 111111111 string",
98 /* 5. replace few substrings in an end of string */
99 "some string blabla str blabla",
100 "blabla",
101 "111111111",
102 "some string 111111111 str 111111111",
105 /* 6. escaped substring */
106 "\\blabla blabla",
107 "blabla",
108 "111111111",
109 "blabla 111111111",
112 /* 7. escaped substring */
113 "str \\blabla blabla",
114 "blabla",
115 "111111111",
116 "str blabla 111111111",
119 /* 8. escaped substring */
120 "str \\\\\\blabla blabla",
121 "blabla",
122 "111111111",
123 "str \\\\blabla 111111111",
126 /* 9. double-escaped substring (actually non-escaped) */
127 "\\\\blabla blabla",
128 "blabla",
129 "111111111",
130 "\\\\111111111 111111111",
133 /* 10. partial substring */
134 "blablabla",
135 "blabla",
136 "111111111",
137 "111111111bla",
140 /* 11. special symbols */
141 "bla bla",
142 "bla",
143 "111\t1 1\n1111",
144 "111\t1 1\n1111 111\t1 1\n1111",
147 /* *INDENT-ON* */
149 /* @Test(dataSource = "str_replace_all_test_ds") */
150 /* *INDENT-OFF* */
151 START_PARAMETRIZED_TEST (str_replace_all_test, str_replace_all_test_ds)
152 /* *INDENT-ON* */
154 /* given */
155 char *actual_result;
157 /* when */
158 actual_result = str_replace_all (data->haystack, data->needle, data->replacement);
160 /* then */
161 g_assert_cmpstr (actual_result, ==, data->expected_result);
162 g_free (actual_result);
164 /* *INDENT-OFF* */
165 END_PARAMETRIZED_TEST
166 /* *INDENT-ON* */
168 /* --------------------------------------------------------------------------------------------- */
171 main (void)
173 int number_failed;
175 Suite *s = suite_create (TEST_SUITE_NAME);
176 TCase *tc_core = tcase_create ("Core");
177 SRunner *sr;
179 tcase_add_checked_fixture (tc_core, setup, teardown);
181 /* Add new tests here: *************** */
182 mctest_add_parameterized_test (tc_core, str_replace_all_test, str_replace_all_test_ds);
183 /* *********************************** */
185 suite_add_tcase (s, tc_core);
186 sr = srunner_create (s);
187 srunner_set_log (sr, "replace__str_replace_all.log");
188 srunner_run_all (sr, CK_ENV);
189 number_failed = srunner_ntests_failed (sr);
190 srunner_free (sr);
191 return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
194 /* --------------------------------------------------------------------------------------------- */