Tizen 2.1 base
[platform/upstream/glib2.0.git] / glib / tests / utils.c
1 /* Unit tests for utilities
2  * Copyright (C) 2010 Red Hat, Inc.
3  *
4  * This work is provided "as is"; redistribution and modification
5  * in whole or in part, in any medium, physical or electronic is
6  * permitted without restriction.
7  *
8  * This work is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11  *
12  * In no event shall the authors or contributors be liable for any
13  * direct, indirect, incidental, special, exemplary, or consequential
14  * damages (including, but not limited to, procurement of substitute
15  * goods or services; loss of use, data, or profits; or business
16  * interruption) however caused and on any theory of liability, whether
17  * in contract, strict liability, or tort (including negligence or
18  * otherwise) arising in any way out of the use of this software, even
19  * if advised of the possibility of such damage.
20  *
21  * Author: Matthias Clasen
22  */
23
24 #define GLIB_DISABLE_DEPRECATION_WARNINGS
25
26 #include "glib.h"
27
28 #include <stdlib.h>
29 #include <string.h>
30 #include <stdarg.h>
31
32 static gboolean
33 strv_check (const gchar * const *strv, ...)
34 {
35   va_list args;
36   gchar *s;
37   gint i;
38
39   va_start (args, strv);
40   for (i = 0; strv[i]; i++)
41     {
42       s = va_arg (args, gchar*);
43       if (g_strcmp0 (strv[i], s) != 0)
44         {
45           va_end (args);
46           return FALSE;
47         }
48     }
49
50   va_end (args);
51
52   return TRUE;
53 }
54
55 static void
56 test_language_names (void)
57 {
58   const gchar * const *names;
59
60   g_setenv ("LANGUAGE", "de:en_US", TRUE);
61   names = g_get_language_names ();
62   g_assert (strv_check (names, "de", "en_US", "en", "C", NULL));
63
64   g_setenv ("LANGUAGE", "tt_RU.UTF-8@iqtelif", TRUE);
65   names = g_get_language_names ();
66   g_assert (strv_check (names,
67                         "tt_RU.UTF-8@iqtelif",
68                         "tt_RU@iqtelif",
69                         "tt.UTF-8@iqtelif",
70                         "tt@iqtelif",
71                         "tt_RU.UTF-8",
72                         "tt_RU",
73                         "tt.UTF-8",
74                         "tt",
75                         "C",
76                         NULL));
77 }
78
79 static void
80 test_locale_variants (void)
81 {
82   char **v;
83
84   v = g_get_locale_variants ("fr_BE");
85   g_assert (strv_check ((const gchar * const *) v, "fr_BE", "fr", NULL));
86   g_strfreev (v);
87
88   v = g_get_locale_variants ("sr_SR@latin");
89   g_assert (strv_check ((const gchar * const *) v, "sr_SR@latin", "sr@latin", "sr_SR", "sr", NULL));
90   g_strfreev (v);
91 }
92
93 static void
94 test_version (void)
95 {
96   if (g_test_verbose ())
97     g_print ("(header %d.%d.%d library %d.%d.%d) ",
98               GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION,
99               glib_major_version, glib_minor_version, glib_micro_version);
100
101   g_assert (glib_check_version (GLIB_MAJOR_VERSION,
102                                 GLIB_MINOR_VERSION,
103                                 GLIB_MICRO_VERSION) == NULL);
104   g_assert (glib_check_version (GLIB_MAJOR_VERSION,
105                                 GLIB_MINOR_VERSION,
106                                 0) == NULL);
107   g_assert (glib_check_version (GLIB_MAJOR_VERSION - 1,
108                                 0,
109                                 0) != NULL);
110   g_assert (glib_check_version (GLIB_MAJOR_VERSION + 1,
111                                 0,
112                                 0) != NULL);
113   g_assert (glib_check_version (GLIB_MAJOR_VERSION,
114                                 GLIB_MINOR_VERSION + 1,
115                                 0) != NULL);
116   /* don't use + 1 here, since a +/-1 difference can
117    * happen due to post-release version bumps in git
118    */
119   g_assert (glib_check_version (GLIB_MAJOR_VERSION,
120                                 GLIB_MINOR_VERSION,
121                                 GLIB_MICRO_VERSION + 3) != NULL);
122 }
123
124 static const gchar *argv0;
125
126 static void
127 test_appname (void)
128 {
129   const gchar *prgname;
130   const gchar *appname;
131
132   prgname = g_get_prgname ();
133   appname = g_get_application_name ();
134   g_assert_cmpstr (prgname, ==, argv0);
135   g_assert_cmpstr (appname, ==, prgname);
136
137   g_set_prgname ("prgname");
138
139   prgname = g_get_prgname ();
140   appname = g_get_application_name ();
141   g_assert_cmpstr (prgname, ==, "prgname");
142   g_assert_cmpstr (appname, ==, "prgname");
143
144   g_set_application_name ("appname");
145
146   prgname = g_get_prgname ();
147   appname = g_get_application_name ();
148   g_assert_cmpstr (prgname, ==, "prgname");
149   g_assert_cmpstr (appname, ==, "appname");
150 }
151
152 static void
153 test_tmpdir (void)
154 {
155   g_test_bug ("627969");
156   g_assert_cmpstr (g_get_tmp_dir (), !=, "");
157 }
158
159 static void
160 test_bits (void)
161 {
162   gulong mask;
163   gint max_bit;
164   gint i, pos;
165
166   pos = g_bit_nth_lsf (0, -1);
167   g_assert_cmpint (pos, ==, -1);
168
169   max_bit = sizeof (gulong) * 8;
170   for (i = 0; i < max_bit; i++)
171     {
172       mask = 1UL << i;
173
174       pos = g_bit_nth_lsf (mask, -1);
175       g_assert_cmpint (pos, ==, i);
176
177       pos = g_bit_nth_lsf (mask, i - 3);
178       g_assert_cmpint (pos , ==, i);
179
180       pos = g_bit_nth_lsf (mask, i);
181       g_assert_cmpint (pos , ==, -1);
182
183       pos = g_bit_nth_lsf (mask, i + 1);
184       g_assert_cmpint (pos , ==, -1);
185     }
186
187   pos = g_bit_nth_msf (0, -1);
188   g_assert_cmpint (pos, ==, -1);
189
190   for (i = 0; i < max_bit; i++)
191     {
192       mask = 1UL << i;
193
194       pos = g_bit_nth_msf (mask, -1);
195       g_assert_cmpint (pos, ==, i);
196
197       pos = g_bit_nth_msf (mask, i + 3);
198       g_assert_cmpint (pos , ==, i);
199
200       pos = g_bit_nth_msf (mask, i);
201       g_assert_cmpint (pos , ==, -1);
202
203       if (i > 0)
204         {
205           pos = g_bit_nth_msf (mask, i - 1);
206           g_assert_cmpint (pos , ==, -1);
207         }
208     }
209 }
210
211 static void
212 test_swap (void)
213 {
214   guint16 a16, b16;
215   guint32 a32, b32;
216   guint64 a64, b64;
217
218   a16 = 0xaabb;
219   b16 = 0xbbaa;
220
221   g_assert_cmpint (GUINT16_SWAP_LE_BE (a16), ==, b16);
222
223   a32 = 0xaaaabbbb;
224   b32 = 0xbbbbaaaa;
225
226   g_assert_cmpint (GUINT32_SWAP_LE_BE (a32), ==, b32);
227
228   a64 = 0xaaaaaaaabbbbbbbb;
229   b64 = 0xbbbbbbbbaaaaaaaa;
230
231   g_assert_cmpint (GUINT64_SWAP_LE_BE (a64), ==, b64);
232 }
233
234 static void
235 test_find_program (void)
236 {
237   gchar *res;
238
239   res = g_find_program_in_path ("sh");
240   g_assert (res != NULL);
241   g_free (res);
242
243   res = g_find_program_in_path ("/bin/sh");
244   g_assert (res != NULL);
245   g_free (res);
246
247   res = g_find_program_in_path ("this_program_does_not_exit");
248   g_assert (res == NULL);
249
250   res = g_find_program_in_path ("/bin");
251   g_assert (res == NULL);
252
253   res = g_find_program_in_path ("/etc/passwd");
254   g_assert (res == NULL);
255 }
256
257 static void
258 test_debug (void)
259 {
260   GDebugKey keys[] = {
261     { "key1", 1 },
262     { "key2", 2 },
263     { "key3", 4 },
264   };
265   guint res;
266
267   res = g_parse_debug_string (NULL, keys, G_N_ELEMENTS (keys));
268   g_assert_cmpint (res, ==, 0);
269
270   res = g_parse_debug_string ("foobabla;#!%!$%112 223", keys, G_N_ELEMENTS (keys));
271   g_assert_cmpint (res, ==, 0);
272
273   res = g_parse_debug_string ("key1:key2", keys, G_N_ELEMENTS (keys));
274   g_assert_cmpint (res, ==, 3);
275
276   res = g_parse_debug_string ("key1;key2", keys, G_N_ELEMENTS (keys));
277   g_assert_cmpint (res, ==, 3);
278
279   res = g_parse_debug_string ("key1,key2", keys, G_N_ELEMENTS (keys));
280   g_assert_cmpint (res, ==, 3);
281
282   res = g_parse_debug_string ("key1   key2", keys, G_N_ELEMENTS (keys));
283   g_assert_cmpint (res, ==, 3);
284
285   res = g_parse_debug_string ("key1\tkey2", keys, G_N_ELEMENTS (keys));
286   g_assert_cmpint (res, ==, 3);
287
288   res = g_parse_debug_string ("all", keys, G_N_ELEMENTS (keys));
289   g_assert_cmpint (res, ==, 7);
290
291   if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDERR))
292     {
293       res = g_parse_debug_string ("help", keys, G_N_ELEMENTS (keys));
294       g_assert_cmpint (res, ==, 0);
295       exit (0);
296     }
297   g_test_trap_assert_passed ();
298   g_test_trap_assert_stderr ("*Supported debug values: key1 key2 key3 all help*");
299 }
300
301 static void
302 test_codeset (void)
303 {
304   gchar *c;
305   const gchar *c2;
306
307   c = g_get_codeset ();
308   g_get_charset (&c2);
309
310   g_assert_cmpstr (c, ==, c2);
311
312   g_free (c);
313 }
314
315 static void
316 test_basename (void)
317 {
318   const gchar *path = "/path/to/a/file/deep/down.sh";
319   const gchar *b;
320
321   b = g_basename (path);
322
323   g_assert_cmpstr (b, ==, "down.sh");
324 }
325
326 extern const gchar *glib_pgettext (const gchar *msgidctxt, gsize msgidoffset);
327
328 static void
329 test_gettext (void)
330 {
331   const gchar *am0, *am1, *am2, *am3;
332
333   am0 = glib_pgettext ("GDateTime\004AM", strlen ("GDateTime") + 1);
334   am1 = g_dpgettext ("glib20", "GDateTime\004AM", strlen ("GDateTime") + 1);
335   am2 = g_dpgettext ("glib20", "GDateTime|AM", 0);
336   am3 = g_dpgettext2 ("glib20", "GDateTime", "AM");
337
338   g_assert_cmpstr (am0, ==, am1);
339   g_assert_cmpstr (am1, ==, am2);
340   g_assert_cmpstr (am2, ==, am3);
341 }
342
343 int
344 main (int   argc,
345       char *argv[])
346 {
347   argv0 = argv[0];
348
349   /* for tmpdir test, need to do this early before g_get_any_init */
350   g_setenv ("TMPDIR", "", TRUE);
351   g_unsetenv ("TMP");
352   g_unsetenv ("TEMP");
353
354   g_test_init (&argc, &argv, NULL);
355   g_test_bug_base ("http://bugzilla.gnome.org/");
356
357   g_test_add_func ("/utils/language-names", test_language_names);
358   g_test_add_func ("/utils/locale-variants", test_locale_variants);
359   g_test_add_func ("/utils/version", test_version);
360   g_test_add_func ("/utils/appname", test_appname);
361   g_test_add_func ("/utils/tmpdir", test_tmpdir);
362   g_test_add_func ("/utils/bits", test_bits);
363   g_test_add_func ("/utils/swap", test_swap);
364   g_test_add_func ("/utils/find-program", test_find_program);
365   g_test_add_func ("/utils/debug", test_debug);
366   g_test_add_func ("/utils/codeset", test_codeset);
367   g_test_add_func ("/utils/basename", test_basename);
368   g_test_add_func ("/utils/gettext", test_gettext);
369
370   return g_test_run();
371 }