Code refactoring in tests.
[midnight-commander.git] / tests / lib / serialize.c
blob9dc35c80f5e8ed84fedd9745e358128fe1624aef
1 /*
2 lib/vfs - common serialize/deserialize functions
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 "lib/strutil.h"
31 #include "lib/serialize.h"
33 static GError *error = NULL;
35 static const char *deserialize_input_value1 =
36 "g6:group1p6:param1v10:some valuep6:param2v11:some value "
37 "g6:group2p6:param1v4:truep6:param2v6:123456"
38 "g6:group3p6:param1v11:::bla-bla::p6:param2v31:bla-:p1:w:v2:12:g3:123:bla-bla\n"
39 "g6:group4p6:param1v5:falsep6:param2v6:654321";
41 /* --------------------------------------------------------------------------------------------- */
43 /* @Before */
44 static void
45 setup (void)
47 str_init_strings (NULL);
48 error = NULL;
51 /* --------------------------------------------------------------------------------------------- */
53 /* @After */
54 static void
55 teardown (void)
57 g_clear_error (&error);
58 str_uninit_strings ();
61 /* --------------------------------------------------------------------------------------------- */
63 /* @DataSource("test_serialize_ds") */
64 /* *INDENT-OFF* */
65 static const struct test_serialize_ds
67 const char input_char_prefix;
68 const char *input_string;
69 const char *expected_result;
70 } test_serialize_ds[] =
73 's',
74 "some test string",
75 "s16:some test string"
78 'a',
79 "some test test test string",
80 "a26:some test test test string"
83 /* *INDENT-ON* */
84 /* @Test(dataSource = "test_serialize_ds") */
85 /* *INDENT-OFF* */
86 START_PARAMETRIZED_TEST (test_serialize, test_serialize_ds)
87 /* *INDENT-ON* */
89 /* given */
90 char *actual_result;
92 /* when */
93 actual_result = mc_serialize_str (data->input_char_prefix, data->input_string, &error);
95 /* then */
96 mctest_assert_str_eq (actual_result, data->expected_result);
98 g_free (actual_result);
101 /* *INDENT-OFF* */
102 END_PARAMETRIZED_TEST
103 /* *INDENT-ON* */
105 /* --------------------------------------------------------------------------------------------- */
107 /* @DataSource("test_deserialize_incorrect_ds") */
108 /* *INDENT-OFF* */
109 static const struct test_deserialize_incorrect_ds
111 const char input_char_prefix;
112 const char *input_string;
113 const int expected_error_code;
114 const char *expected_error_string;
115 } test_deserialize_incorrect_ds[] =
118 's',
119 NULL,
121 "mc_serialize_str(): Input data is NULL or empty."
124 's',
125 "incorrect string",
127 "mc_serialize_str(): String prefix doesn't equal to 's'"
130 's',
131 "s12345string without delimiter",
133 "mc_serialize_str(): Length delimiter ':' doesn't exists"
136 's',
137 "s1234567890123456789012345678901234567890123456789012345678901234567890:too big number",
139 "mc_serialize_str(): Too big string length"
142 's',
143 "s500:actual string length less that specified length",
145 "mc_serialize_str(): Specified data length (500) is greater than actual data length (47)"
148 /* *INDENT-ON* */
149 /* @Test(dataSource = "test_deserialize_incorrect_ds") */
150 /* *INDENT-OFF* */
151 START_PARAMETRIZED_TEST (test_deserialize_incorrect, test_deserialize_incorrect_ds)
152 /* *INDENT-ON* */
154 /* given */
155 char *actual_result;
157 /* when */
158 actual_result = mc_deserialize_str (data->input_char_prefix, data->input_string, &error);
160 /* then */
161 mctest_assert_null (actual_result);
163 mctest_assert_int_eq (error->code, data->expected_error_code);
164 mctest_assert_str_eq (error->message, data->expected_error_string);
166 /* *INDENT-OFF* */
167 END_PARAMETRIZED_TEST
168 /* *INDENT-ON* */
170 /* --------------------------------------------------------------------------------------------- */
172 /* @DataSource("test_deserialize_ds") */
173 /* *INDENT-OFF* */
174 static const struct test_deserialize_ds
176 const char input_char_prefix;
177 const char *input_string;
178 const char *expected_result;
179 } test_deserialize_ds[] =
182 's',
183 "s10:actual string length great that specified length",
184 "actual str"
187 'r',
188 "r21:The right test string",
189 "The right test string"
192 /* *INDENT-ON* */
193 /* @Test(dataSource = "test_deserialize_ds") */
194 /* *INDENT-OFF* */
195 START_PARAMETRIZED_TEST (test_deserialize, test_deserialize_ds)
196 /* *INDENT-ON* */
198 /* given */
199 char *actual_result;
201 /* when */
202 actual_result = mc_deserialize_str (data->input_char_prefix, data->input_string, &error);
204 /* then */
205 mctest_assert_str_eq (actual_result, data->expected_result);
207 g_free (actual_result);
209 /* *INDENT-OFF* */
210 END_PARAMETRIZED_TEST
211 /* *INDENT-ON* */
213 /* --------------------------------------------------------------------------------------------- */
215 /* *INDENT-OFF* */
216 START_TEST (test_serialize_config)
217 /* *INDENT-ON* */
219 /* given */
220 mc_config_t *test_data;
221 char *actual;
222 const char *expected_result = "g6:group1p6:param1v10:some valuep6:param2v11:some value "
223 "g6:group2p6:param1v4:truep6:param2v6:123456"
224 "g6:group3p6:param1v11:::bla-bla::p6:param2v31:bla-:p1:w:v2:12:g3:123:bla-bla\n"
225 "g6:group4p6:param1v5:falsep6:param2v6:654321";
227 test_data = mc_config_init (NULL, FALSE);
229 mc_config_set_string_raw (test_data, "group1", "param1", "some value");
230 mc_config_set_string (test_data, "group1", "param2", "some value ");
232 mc_config_set_bool (test_data, "group2", "param1", TRUE);
233 mc_config_set_int (test_data, "group2", "param2", 123456);
235 mc_config_set_string_raw (test_data, "group3", "param1", "::bla-bla::");
236 mc_config_set_string (test_data, "group3", "param2", "bla-:p1:w:v2:12:g3:123:bla-bla\n");
238 mc_config_set_bool (test_data, "group4", "param1", FALSE);
239 mc_config_set_int (test_data, "group4", "param2", 654321);
241 /* when */
242 actual = mc_serialize_config (test_data, &error);
243 mc_config_deinit (test_data);
245 /* then */
246 mctest_assert_not_null (actual);
247 mctest_assert_str_eq (actual, expected_result);
249 g_free (actual);
251 /* *INDENT-OFF* */
252 END_TEST
253 /* *INDENT-ON* */
255 /* --------------------------------------------------------------------------------------------- */
256 /* @DataSource("test_deserialize_config_incorrect_ds") */
257 /* *INDENT-OFF* */
258 static const struct test_deserialize_config_incorrect_ds
260 const char *input_string;
261 const int expected_error_code;
262 const char *expected_error_string;
263 } test_deserialize_config_incorrect_ds[] =
266 "g123error in group name",
268 "mc_deserialize_config() at 1: mc_serialize_str(): Length delimiter ':' doesn't exists"
271 "p6:param1v10:some valuep6:param2v11:some value ",
273 "mc_deserialize_config() at 1: mc_serialize_str(): String prefix doesn't equal to 'g'"
276 "g6:group1v10:some valuep6:param2v11:some value ",
278 "mc_deserialize_config() at 10: mc_serialize_str(): String prefix doesn't equal to 'p'"
281 "g6:group1p6000:param2v11:some value ",
283 "mc_deserialize_config() at 10: mc_serialize_str(): Specified data length (6000) is greater than actual data length (21)"
286 /* *INDENT-ON* */
287 /* @Test(dataSource = "test_deserialize_config_incorrect_ds") */
288 /* *INDENT-OFF* */
289 START_PARAMETRIZED_TEST (test_deserialize_config_incorrect, test_deserialize_config_incorrect_ds)
290 /* *INDENT-ON* */
292 /* given */
293 mc_config_t *actual_result;
295 /* when */
296 actual_result = mc_deserialize_config (data->input_string, &error);
298 /* then */
299 mctest_assert_null (actual_result);
301 mctest_assert_int_eq (error->code, data->expected_error_code);
302 mctest_assert_str_eq (error->message, data->expected_error_string);
304 /* *INDENT-OFF* */
305 END_PARAMETRIZED_TEST
306 /* *INDENT-ON* */
308 /* --------------------------------------------------------------------------------------------- */
310 /* *INDENT-OFF* */
311 START_TEST (test_deserialize_config)
312 /* *INDENT-ON* */
314 /* given */
315 mc_config_t *actual;
316 char *actual_value;
318 /* when */
319 actual = mc_deserialize_config (deserialize_input_value1, &error);
321 /* then */
322 mctest_assert_not_null (actual);
324 actual_value = mc_config_get_string_raw (actual, "group1", "param1", "");
325 mctest_assert_str_eq (actual_value, "some value");
326 g_free (actual_value);
328 actual_value = mc_config_get_string (actual, "group1", "param2", "");
329 mctest_assert_str_eq (actual_value, "some value ");
330 g_free (actual_value);
332 mctest_assert_int_eq (mc_config_get_bool (actual, "group2", "param1", FALSE), TRUE);
334 mctest_assert_int_eq (mc_config_get_int (actual, "group2", "param2", 0), 123456);
336 actual_value = mc_config_get_string_raw (actual, "group3", "param1", "");
337 mctest_assert_str_eq (actual_value, "::bla-bla::");
338 g_free (actual_value);
340 actual_value = mc_config_get_string (actual, "group3", "param2", "");
341 mctest_assert_str_eq (actual_value, "bla-:p1:w:v2:12:g3:123:bla-bla\n");
342 g_free (actual_value);
344 mctest_assert_int_eq (mc_config_get_bool (actual, "group4", "param1", TRUE), FALSE);
346 mctest_assert_int_eq (mc_config_get_int (actual, "group4", "param2", 0), 654321);
348 mc_config_deinit (actual);
350 /* *INDENT-OFF* */
351 END_TEST
352 /* *INDENT-ON* */
354 #undef input_value
355 /* --------------------------------------------------------------------------------------------- */
358 main (void)
360 int number_failed;
362 Suite *s = suite_create (TEST_SUITE_NAME);
363 TCase *tc_core = tcase_create ("Core");
364 SRunner *sr;
366 tcase_add_checked_fixture (tc_core, setup, teardown);
368 /* Add new tests here: *************** */
369 mctest_add_parameterized_test (tc_core, test_serialize, test_serialize_ds);
371 mctest_add_parameterized_test (tc_core, test_deserialize_incorrect,
372 test_deserialize_incorrect_ds);
374 mctest_add_parameterized_test (tc_core, test_deserialize, test_deserialize_ds);
376 tcase_add_test (tc_core, test_serialize_config);
378 mctest_add_parameterized_test (tc_core, test_deserialize_config_incorrect,
379 test_deserialize_config_incorrect_ds);
381 tcase_add_test (tc_core, test_deserialize_config);
382 /* *********************************** */
384 suite_add_tcase (s, tc_core);
385 sr = srunner_create (s);
386 srunner_set_log (sr, "serialize.log");
387 srunner_run_all (sr, CK_NORMAL);
388 number_failed = srunner_ntests_failed (sr);
389 srunner_free (sr);
390 return (number_failed == 0) ? 0 : 1;
393 /* --------------------------------------------------------------------------------------------- */