Bug 579050 Allow making selected critical and warning messages non-fatal
[platform/upstream/glib.git] / glib / tests / testing.c
1 /* GLib testing framework examples and tests
2  * Copyright (C) 2007 Imendio AB
3  * Authors: Tim Janik
4  *
5  * This work is provided "as is"; redistribution and modification
6  * in whole or in part, in any medium, physical or electronic is
7  * permitted without restriction.
8  *
9  * This work is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12  *
13  * In no event shall the authors or contributors be liable for any
14  * direct, indirect, incidental, special, exemplary, or consequential
15  * damages (including, but not limited to, procurement of substitute
16  * goods or services; loss of use, data, or profits; or business
17  * interruption) however caused and on any theory of liability, whether
18  * in contract, strict liability, or tort (including negligence or
19  * otherwise) arising in any way out of the use of this software, even
20  * if advised of the possibility of such damage.
21  */
22
23 #include <glib.h>
24
25 #include <stdlib.h>
26
27 /* test assertion variants */
28 static void
29 test_assertions (void)
30 {
31   gchar *fuu;
32   g_assert_cmpint (1, >, 0);
33   g_assert_cmphex (2, ==, 2);
34   g_assert_cmpfloat (3.3, !=, 7);
35   g_assert_cmpfloat (7, <=, 3 + 4);
36   g_assert (TRUE);
37   g_assert_cmpstr ("foo", !=, "faa");
38   fuu = g_strdup_printf ("f%s", "uu");
39   g_test_queue_free (fuu);
40   g_assert_cmpstr ("foo", !=, fuu);
41   g_assert_cmpstr ("fuu", ==, fuu);
42   g_assert_cmpstr (NULL, <, "");
43   g_assert_cmpstr (NULL, ==, NULL);
44   g_assert_cmpstr ("", >, NULL);
45   g_assert_cmpstr ("foo", <, "fzz");
46   g_assert_cmpstr ("fzz", >, "faa");
47   g_assert_cmpstr ("fzz", ==, "fzz");
48 }
49
50 /* test g_test_timer* API */
51 static void
52 test_timer (void)
53 {
54   double ttime;
55   g_test_timer_start();
56   g_assert_cmpfloat (g_test_timer_last(), ==, 0);
57   g_usleep (25 * 1000);
58   ttime = g_test_timer_elapsed();
59   g_assert_cmpfloat (ttime, >, 0);
60   g_assert_cmpfloat (g_test_timer_last(), ==, ttime);
61   g_test_minimized_result (ttime, "timer-test-time: %fsec", ttime);
62   g_test_maximized_result (5, "bogus-quantity: %ddummies", 5); /* simple API test */
63 }
64
65 /* fork out for a failing test */
66 static void
67 test_fork_fail (void)
68 {
69   if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDERR))
70     {
71       g_assert_not_reached();
72     }
73   g_test_trap_assert_failed();
74   g_test_trap_assert_stderr ("*ERROR*test_fork_fail*should not be reached*");
75 }
76
77 /* fork out to assert stdout and stderr patterns */
78 static void
79 test_fork_patterns (void)
80 {
81   if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
82     {
83       g_print ("some stdout text: somagic17\n");
84       g_printerr ("some stderr text: semagic43\n");
85       exit (0);
86     }
87   g_test_trap_assert_passed();
88   g_test_trap_assert_stdout ("*somagic17*");
89   g_test_trap_assert_stderr ("*semagic43*");
90 }
91
92 /* fork out for a timeout test */
93 static void
94 test_fork_timeout (void)
95 {
96   /* allow child to run for only a fraction of a second */
97   if (g_test_trap_fork (0.11 * 1000000, 0))
98     {
99       /* loop and sleep forever */
100       while (TRUE)
101         g_usleep (1000 * 1000);
102     }
103   g_test_trap_assert_failed();
104   g_assert (g_test_trap_reached_timeout());
105 }
106
107 /* run a test with fixture setup and teardown */
108 typedef struct {
109   guint  seed;
110   guint  prime;
111   gchar *msg;
112 } Fixturetest;
113 static void
114 fixturetest_setup (Fixturetest  *fix,
115                    gconstpointer test_data)
116 {
117   g_assert (test_data == (void*) 0xc0cac01a);
118   fix->seed = 18;
119   fix->prime = 19;
120   fix->msg = g_strdup_printf ("%d", fix->prime);
121 }
122 static void
123 fixturetest_test (Fixturetest  *fix,
124                   gconstpointer test_data)
125 {
126   guint prime = g_spaced_primes_closest (fix->seed);
127   g_assert_cmpint (prime, ==, fix->prime);
128   prime = g_ascii_strtoull (fix->msg, NULL, 0);
129   g_assert_cmpint (prime, ==, fix->prime);
130   g_assert (test_data == (void*) 0xc0cac01a);
131 }
132 static void
133 fixturetest_teardown (Fixturetest  *fix,
134                       gconstpointer test_data)
135 {
136   g_assert (test_data == (void*) 0xc0cac01a);
137   g_free (fix->msg);
138 }
139
140 static struct {
141   int bit, vint1, vint2, irange;
142   long double vdouble, drange;
143 } shared_rand_state;
144
145 static void
146 test_rand1 (void)
147 {
148   shared_rand_state.bit = g_test_rand_bit();
149   shared_rand_state.vint1 = g_test_rand_int();
150   shared_rand_state.vint2 = g_test_rand_int();
151   g_assert_cmpint (shared_rand_state.vint1, !=, shared_rand_state.vint2);
152   shared_rand_state.irange = g_test_rand_int_range (17, 35);
153   g_assert_cmpint (shared_rand_state.irange, >=, 17);
154   g_assert_cmpint (shared_rand_state.irange, <=, 35);
155   shared_rand_state.vdouble = g_test_rand_double();
156   shared_rand_state.drange = g_test_rand_double_range (-999, +17);
157   g_assert_cmpfloat (shared_rand_state.drange, >=, -999);
158   g_assert_cmpfloat (shared_rand_state.drange, <=, +17);
159 }
160
161 static void
162 test_rand2 (void)
163 {
164   /* this test only works if run after test1.
165    * we do this to check that random number generators
166    * are reseeded upon fixture setup.
167    */
168   g_assert_cmpint (shared_rand_state.bit, ==, g_test_rand_bit());
169   g_assert_cmpint (shared_rand_state.vint1, ==, g_test_rand_int());
170   g_assert_cmpint (shared_rand_state.vint2, ==, g_test_rand_int());
171   g_assert_cmpint (shared_rand_state.irange, ==, g_test_rand_int_range (17, 35));
172   g_assert_cmpfloat (shared_rand_state.vdouble, ==, g_test_rand_double());
173   g_assert_cmpfloat (shared_rand_state.drange, ==, g_test_rand_double_range (-999, +17));
174 }
175
176 static void
177 test_data_test (gconstpointer test_data)
178 {
179   g_assert (test_data == (void*) 0xc0c0baba);
180 }
181
182 static void
183 test_random_conversions (void)
184 {
185   /* very simple conversion test using random numbers */
186   int vint = g_test_rand_int();
187   char *err, *str = g_strdup_printf ("%d", vint);
188   gint64 vint64 = g_ascii_strtoll (str, &err, 10);
189   g_assert_cmphex (vint, ==, vint64);
190   g_assert (!err || *err == 0);
191   g_free (str);
192 }
193
194 static gboolean
195 fatal_handler (const gchar    *log_domain,
196                GLogLevelFlags  log_level,
197                const gchar    *message,
198                gpointer        user_data)
199 {
200   return FALSE;
201 }
202
203 static void
204 test_log_handler (void)
205 {
206   g_test_log_set_fatal_handler (fatal_handler, NULL);
207   g_str_has_prefix (NULL, "file://");
208   g_critical ("Test passing");
209
210   g_test_log_set_fatal_handler (NULL, NULL);
211   if (g_test_trap_fork (0, 0))
212     g_error ("Test failing");
213   g_test_trap_assert_failed ();
214
215   if (g_test_trap_fork (0, 0))
216     g_str_has_prefix (NULL, "file://");
217   g_test_trap_assert_failed ();
218 }
219
220 int
221 main (int   argc,
222       char *argv[])
223 {
224   g_test_init (&argc, &argv, NULL);
225
226   g_test_add_func ("/random-generator/rand-1", test_rand1);
227   g_test_add_func ("/random-generator/rand-2", test_rand2);
228   g_test_add_func ("/random-generator/random-conversions", test_random_conversions);
229   g_test_add_func ("/misc/assertions", test_assertions);
230   g_test_add_data_func ("/misc/test-data", (void*) 0xc0c0baba, test_data_test);
231   g_test_add ("/misc/primetoul", Fixturetest, (void*) 0xc0cac01a, fixturetest_setup, fixturetest_test, fixturetest_teardown);
232   if (g_test_perf())
233     g_test_add_func ("/misc/timer", test_timer);
234   g_test_add_func ("/forking/fail assertion", test_fork_fail);
235   g_test_add_func ("/forking/patterns", test_fork_patterns);
236   if (g_test_slow())
237     g_test_add_func ("/forking/timeout", test_fork_timeout);
238   g_test_add_func ("/misc/log-handler", test_log_handler);
239
240   return g_test_run();
241 }