Fix g_test_add_vtable
[platform/upstream/glib.git] / glib / gtestutils.c
1 /* GLib testing utilities
2  * Copyright (C) 2007 Imendio AB
3  * Authors: Tim Janik, Sven Herzberg
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #include "config.h"
22
23 #include "gtestutils.h"
24 #include "gfileutils.h"
25
26 #include <sys/types.h>
27 #ifdef G_OS_UNIX
28 #include <sys/wait.h>
29 #include <sys/time.h>
30 #include <fcntl.h>
31 #include <glib/gstdio.h>
32 #endif
33 #include <string.h>
34 #include <stdlib.h>
35 #include <stdio.h>
36 #ifdef HAVE_UNISTD_H
37 #include <unistd.h>
38 #endif
39 #ifdef G_OS_WIN32
40 #include <io.h>
41 #endif
42 #include <errno.h>
43 #include <signal.h>
44 #ifdef HAVE_SYS_SELECT_H
45 #include <sys/select.h>
46 #endif /* HAVE_SYS_SELECT_H */
47
48 #include "gmain.h"
49 #include "gpattern.h"
50 #include "grand.h"
51 #include "gstrfuncs.h"
52 #include "gtimer.h"
53 #include "gslice.h"
54
55
56 /**
57  * SECTION:testing
58  * @title: Testing
59  * @short_description: a test framework
60  * @see_also: <link linkend="gtester">gtester</link>,
61  *            <link linkend="gtester-report">gtester-report</link>
62  *
63  * GLib provides a framework for writing and maintaining unit tests
64  * in parallel to the code they are testing. The API is designed according
65  * to established concepts found in the other test frameworks (JUnit, NUnit,
66  * RUnit), which in turn is based on smalltalk unit testing concepts.
67  *
68  * <variablelist>
69  *   <varlistentry>
70  *     <term>Test case</term>
71  *     <listitem>Tests (test methods) are grouped together with their
72  *       fixture into test cases.</listitem>
73  *   </varlistentry>
74  *   <varlistentry>
75  *     <term>Fixture</term>
76  *     <listitem>A test fixture consists of fixture data and setup and
77  *       teardown methods to establish the environment for the test
78  *       functions. We use fresh fixtures, i.e. fixtures are newly set
79  *       up and torn down around each test invocation to avoid dependencies
80  *       between tests.</listitem>
81  *   </varlistentry>
82  *   <varlistentry>
83  *     <term>Test suite</term>
84  *     <listitem>Test cases can be grouped into test suites, to allow
85  *       subsets of the available tests to be run. Test suites can be
86  *       grouped into other test suites as well.</listitem>
87  *   </varlistentry>
88  * </variablelist>
89  * The API is designed to handle creation and registration of test suites
90  * and test cases implicitly. A simple call like
91  * |[
92  *   g_test_add_func ("/misc/assertions", test_assertions);
93  * ]|
94  * creates a test suite called "misc" with a single test case named
95  * "assertions", which consists of running the test_assertions function.
96  *
97  * In addition to the traditional g_assert(), the test framework provides
98  * an extended set of assertions for string and numerical comparisons:
99  * g_assert_cmpfloat(), g_assert_cmpint(), g_assert_cmpuint(),
100  * g_assert_cmphex(), g_assert_cmpstr(). The advantage of these variants
101  * over plain g_assert() is that the assertion messages can be more
102  * elaborate, and include the values of the compared entities.
103  *
104  * GLib ships with two utilities called gtester and gtester-report to
105  * facilitate running tests and producing nicely formatted test reports.
106  */
107
108 /**
109  * g_test_initialized:
110  *
111  * Returns %TRUE if g_test_init() has been called.
112  *
113  * Returns: %TRUE if g_test_init() has been called.
114  *
115  * Since: 2.36
116  */
117
118 /**
119  * g_test_quick:
120  *
121  * Returns %TRUE if tests are run in quick mode.
122  * Exactly one of g_test_quick() and g_test_slow() is active in any run;
123  * there is no "medium speed".
124  *
125  * Returns: %TRUE if in quick mode
126  */
127
128 /**
129  * g_test_slow:
130  *
131  * Returns %TRUE if tests are run in slow mode.
132  * Exactly one of g_test_quick() and g_test_slow() is active in any run;
133  * there is no "medium speed".
134  *
135  * Returns: the opposite of g_test_quick()
136  */
137
138 /**
139  * g_test_thorough:
140  *
141  * Returns %TRUE if tests are run in thorough mode, equivalent to
142  * g_test_slow().
143  *
144  * Returns: the same thing as g_test_slow()
145  */
146
147 /**
148  * g_test_perf:
149  *
150  * Returns %TRUE if tests are run in performance mode.
151  *
152  * Returns: %TRUE if in performance mode
153  */
154
155 /**
156  * g_test_undefined:
157  *
158  * Returns %TRUE if tests may provoke assertions and other formally-undefined
159  * behaviour under g_test_trap_fork(), to verify that appropriate warnings
160  * are given. It can be useful to turn this off if running tests under
161  * valgrind.
162  *
163  * Returns: %TRUE if tests may provoke programming errors
164  */
165
166 /**
167  * g_test_verbose:
168  *
169  * Returns %TRUE if tests are run in verbose mode.
170  * The default is neither g_test_verbose() nor g_test_quiet().
171  *
172  * Returns: %TRUE if in verbose mode
173  */
174
175 /**
176  * g_test_quiet:
177  *
178  * Returns %TRUE if tests are run in quiet mode.
179  * The default is neither g_test_verbose() nor g_test_quiet().
180  *
181  * Returns: %TRUE if in quiet mode
182  */
183
184 /**
185  * g_test_queue_unref:
186  * @gobject: the object to unref
187  *
188  * Enqueue an object to be released with g_object_unref() during
189  * the next teardown phase. This is equivalent to calling
190  * g_test_queue_destroy() with a destroy callback of g_object_unref().
191  *
192  * Since: 2.16
193  */
194
195 /**
196  * GTestTrapFlags:
197  * @G_TEST_TRAP_SILENCE_STDOUT: Redirect stdout of the test child to
198  *     <filename>/dev/null</filename> so it cannot be observed on the
199  *     console during test runs. The actual output is still captured
200  *     though to allow later tests with g_test_trap_assert_stdout().
201  * @G_TEST_TRAP_SILENCE_STDERR: Redirect stderr of the test child to
202  *     <filename>/dev/null</filename> so it cannot be observed on the
203  *     console during test runs. The actual output is still captured
204  *     though to allow later tests with g_test_trap_assert_stderr().
205  * @G_TEST_TRAP_INHERIT_STDIN: If this flag is given, stdin of the
206  *     forked child process is shared with stdin of its parent process.
207  *     It is redirected to <filename>/dev/null</filename> otherwise.
208  *
209  * Test traps are guards around forked tests.
210  * These flags determine what traps to set.
211  */
212
213 /**
214  * g_test_trap_assert_passed:
215  *
216  * Assert that the last forked test passed.
217  * See g_test_trap_fork().
218  *
219  * Since: 2.16
220  */
221
222 /**
223  * g_test_trap_assert_failed:
224  *
225  * Assert that the last forked test failed.
226  * See g_test_trap_fork().
227  *
228  * This is sometimes used to test situations that are formally considered to
229  * be undefined behaviour, like inputs that fail a g_return_if_fail()
230  * check. In these situations you should skip the entire test, including the
231  * call to g_test_trap_fork(), unless g_test_undefined() returns %TRUE
232  * to indicate that undefined behaviour may be tested.
233  *
234  * Since: 2.16
235  */
236
237 /**
238  * g_test_trap_assert_stdout:
239  * @soutpattern: a glob-style
240  *     <link linkend="glib-Glob-style-pattern-matching">pattern</link>
241  *
242  * Assert that the stdout output of the last forked test matches
243  * @soutpattern. See g_test_trap_fork().
244  *
245  * Since: 2.16
246  */
247
248 /**
249  * g_test_trap_assert_stdout_unmatched:
250  * @soutpattern: a glob-style
251  *     <link linkend="glib-Glob-style-pattern-matching">pattern</link>
252  *
253  * Assert that the stdout output of the last forked test
254  * does not match @soutpattern. See g_test_trap_fork().
255  *
256  * Since: 2.16
257  */
258
259 /**
260  * g_test_trap_assert_stderr:
261  * @serrpattern: a glob-style
262  *     <link linkend="glib-Glob-style-pattern-matching">pattern</link>
263  *
264  * Assert that the stderr output of the last forked test
265  * matches @serrpattern. See  g_test_trap_fork().
266  *
267  * This is sometimes used to test situations that are formally considered to
268  * be undefined behaviour, like inputs that fail a g_return_if_fail()
269  * check. In these situations you should skip the entire test, including the
270  * call to g_test_trap_fork(), unless g_test_undefined() returns %TRUE
271  * to indicate that undefined behaviour may be tested.
272  *
273  * Since: 2.16
274  */
275
276 /**
277  * g_test_trap_assert_stderr_unmatched:
278  * @serrpattern: a glob-style
279  *     <link linkend="glib-Glob-style-pattern-matching">pattern</link>
280  *
281  * Assert that the stderr output of the last forked test
282  * does not match @serrpattern. See g_test_trap_fork().
283  *
284  * Since: 2.16
285  */
286
287 /**
288  * g_test_rand_bit:
289  *
290  * Get a reproducible random bit (0 or 1), see g_test_rand_int()
291  * for details on test case random numbers.
292  *
293  * Since: 2.16
294  */
295
296 /**
297  * g_assert:
298  * @expr: the expression to check
299  *
300  * Debugging macro to terminate the application if the assertion
301  * fails. If the assertion fails (i.e. the expression is not true),
302  * an error message is logged and the application is terminated.
303  *
304  * The macro can be turned off in final releases of code by defining
305  * <envar>G_DISABLE_ASSERT</envar> when compiling the application.
306  */
307
308 /**
309  * g_assert_not_reached:
310  *
311  * Debugging macro to terminate the application if it is ever
312  * reached. If it is reached, an error message is logged and the
313  * application is terminated.
314  *
315  * The macro can be turned off in final releases of code by defining
316  * <envar>G_DISABLE_ASSERT</envar> when compiling the application.
317  */
318
319 /**
320  * g_assert_cmpstr:
321  * @s1: a string (may be %NULL)
322  * @cmp: The comparison operator to use.
323  *     One of ==, !=, &lt;, &gt;, &lt;=, &gt;=.
324  * @s2: another string (may be %NULL)
325  *
326  * Debugging macro to terminate the application with a warning
327  * message if a string comparison fails. The strings are compared
328  * using g_strcmp0().
329  *
330  * The effect of <literal>g_assert_cmpstr (s1, op, s2)</literal> is
331  * the same as <literal>g_assert (g_strcmp0 (s1, s2) op 0)</literal>.
332  * The advantage of this macro is that it can produce a message that
333  * includes the actual values of @s1 and @s2.
334  *
335  * |[
336  *   g_assert_cmpstr (mystring, ==, "fubar");
337  * ]|
338  *
339  * Since: 2.16
340  */
341
342 /**
343  * g_assert_cmpint:
344  * @n1: an integer
345  * @cmp: The comparison operator to use.
346  *     One of ==, !=, &lt;, &gt;, &lt;=, &gt;=.
347  * @n2: another integer
348  *
349  * Debugging macro to terminate the application with a warning
350  * message if an integer comparison fails.
351  *
352  * The effect of <literal>g_assert_cmpint (n1, op, n2)</literal> is
353  * the same as <literal>g_assert (n1 op n2)</literal>. The advantage
354  * of this macro is that it can produce a message that includes the
355  * actual values of @n1 and @n2.
356  *
357  * Since: 2.16
358  */
359
360 /**
361  * g_assert_cmpuint:
362  * @n1: an unsigned integer
363  * @cmp: The comparison operator to use.
364  *     One of ==, !=, &lt;, &gt;, &lt;=, &gt;=.
365  * @n2: another unsigned integer
366  *
367  * Debugging macro to terminate the application with a warning
368  * message if an unsigned integer comparison fails.
369  *
370  * The effect of <literal>g_assert_cmpuint (n1, op, n2)</literal> is
371  * the same as <literal>g_assert (n1 op n2)</literal>. The advantage
372  * of this macro is that it can produce a message that includes the
373  * actual values of @n1 and @n2.
374  *
375  * Since: 2.16
376  */
377
378 /**
379  * g_assert_cmphex:
380  * @n1: an unsigned integer
381  * @cmp: The comparison operator to use.
382  *     One of ==, !=, &lt;, &gt;, &lt;=, &gt;=.
383  * @n2: another unsigned integer
384  *
385  * Debugging macro to terminate the application with a warning
386  * message if an unsigned integer comparison fails.
387  *
388  * This is a variant of g_assert_cmpuint() that displays the numbers
389  * in hexadecimal notation in the message.
390  *
391  * Since: 2.16
392  */
393
394 /**
395  * g_assert_cmpfloat:
396  * @n1: an floating point number
397  * @cmp: The comparison operator to use.
398  *     One of ==, !=, &lt;, &gt;, &lt;=, &gt;=.
399  * @n2: another floating point number
400  *
401  * Debugging macro to terminate the application with a warning
402  * message if a floating point number comparison fails.
403  *
404  * The effect of <literal>g_assert_cmpfloat (n1, op, n2)</literal> is
405  * the same as <literal>g_assert (n1 op n2)</literal>. The advantage
406  * of this macro is that it can produce a message that includes the
407  * actual values of @n1 and @n2.
408  *
409  * Since: 2.16
410  */
411
412 /**
413  * g_assert_no_error:
414  * @err: a #GError, possibly %NULL
415  *
416  * Debugging macro to terminate the application with a warning
417  * message if a method has returned a #GError.
418  *
419  * The effect of <literal>g_assert_no_error (err)</literal> is
420  * the same as <literal>g_assert (err == NULL)</literal>. The advantage
421  * of this macro is that it can produce a message that includes
422  * the error message and code.
423  *
424  * Since: 2.20
425  */
426
427 /**
428  * g_assert_error:
429  * @err: a #GError, possibly %NULL
430  * @dom: the expected error domain (a #GQuark)
431  * @c: the expected error code
432  *
433  * Debugging macro to terminate the application with a warning
434  * message if a method has not returned the correct #GError.
435  *
436  * The effect of <literal>g_assert_error (err, dom, c)</literal> is
437  * the same as <literal>g_assert (err != NULL &amp;&amp; err->domain
438  * == dom &amp;&amp; err->code == c)</literal>. The advantage of this
439  * macro is that it can produce a message that includes the incorrect
440  * error message and code.
441  *
442  * This can only be used to test for a specific error. If you want to
443  * test that @err is set, but don't care what it's set to, just use
444  * <literal>g_assert (err != NULL)</literal>
445  *
446  * Since: 2.20
447  */
448
449 /**
450  * GTestCase:
451  *
452  * An opaque structure representing a test case.
453  */
454
455 /**
456  * GTestSuite:
457  *
458  * An opaque structure representing a test suite.
459  */
460
461
462 /* Global variable for storing assertion messages; this is the counterpart to
463  * glibc's (private) __abort_msg variable, and allows developers and crash
464  * analysis systems like Apport and ABRT to fish out assertion messages from
465  * core dumps, instead of having to catch them on screen output.
466  */
467 char *__glib_assert_msg = NULL;
468
469 /* --- structures --- */
470 struct GTestCase
471 {
472   gchar  *name;
473   guint   fixture_size;
474   void   (*fixture_setup)    (void*, gconstpointer);
475   void   (*fixture_test)     (void*, gconstpointer);
476   void   (*fixture_teardown) (void*, gconstpointer);
477   gpointer test_data;
478 };
479 struct GTestSuite
480 {
481   gchar  *name;
482   GSList *suites;
483   GSList *cases;
484 };
485 typedef struct DestroyEntry DestroyEntry;
486 struct DestroyEntry
487 {
488   DestroyEntry *next;
489   GDestroyNotify destroy_func;
490   gpointer       destroy_data;
491 };
492
493 /* --- prototypes --- */
494 static void     test_run_seed                   (const gchar *rseed);
495 static void     test_trap_clear                 (void);
496 static guint8*  g_test_log_dump                 (GTestLogMsg *msg,
497                                                  guint       *len);
498 static void     gtest_default_log_handler       (const gchar    *log_domain,
499                                                  GLogLevelFlags  log_level,
500                                                  const gchar    *message,
501                                                  gpointer        unused_data);
502
503
504 /* --- variables --- */
505 static int         test_log_fd = -1;
506 static gboolean    test_mode_fatal = TRUE;
507 static gboolean    g_test_run_once = TRUE;
508 static gboolean    test_run_list = FALSE;
509 static gchar      *test_run_seedstr = NULL;
510 static GRand      *test_run_rand = NULL;
511 static gchar      *test_run_name = "";
512 static guint       test_run_forks = 0;
513 static guint       test_run_count = 0;
514 static guint       test_run_success = FALSE;
515 static guint       test_skip_count = 0;
516 static GTimer     *test_user_timer = NULL;
517 static double      test_user_stamp = 0;
518 static GSList     *test_paths = NULL;
519 static GSList     *test_paths_skipped = NULL;
520 static GTestSuite *test_suite_root = NULL;
521 static int         test_trap_last_status = 0;
522 static int         test_trap_last_pid = 0;
523 static char       *test_trap_last_stdout = NULL;
524 static char       *test_trap_last_stderr = NULL;
525 static char       *test_uri_base = NULL;
526 static gboolean    test_debug_log = FALSE;
527 static DestroyEntry *test_destroy_queue = NULL;
528 static GTestConfig mutable_test_config_vars = {
529   FALSE,        /* test_initialized */
530   TRUE,         /* test_quick */
531   FALSE,        /* test_perf */
532   FALSE,        /* test_verbose */
533   FALSE,        /* test_quiet */
534   TRUE,         /* test_undefined */
535 };
536 const GTestConfig * const g_test_config_vars = &mutable_test_config_vars;
537
538 /* --- functions --- */
539 const char*
540 g_test_log_type_name (GTestLogType log_type)
541 {
542   switch (log_type)
543     {
544     case G_TEST_LOG_NONE:               return "none";
545     case G_TEST_LOG_ERROR:              return "error";
546     case G_TEST_LOG_START_BINARY:       return "binary";
547     case G_TEST_LOG_LIST_CASE:          return "list";
548     case G_TEST_LOG_SKIP_CASE:          return "skip";
549     case G_TEST_LOG_START_CASE:         return "start";
550     case G_TEST_LOG_STOP_CASE:          return "stop";
551     case G_TEST_LOG_MIN_RESULT:         return "minperf";
552     case G_TEST_LOG_MAX_RESULT:         return "maxperf";
553     case G_TEST_LOG_MESSAGE:            return "message";
554     }
555   return "???";
556 }
557
558 static void
559 g_test_log_send (guint         n_bytes,
560                  const guint8 *buffer)
561 {
562   if (test_log_fd >= 0)
563     {
564       int r;
565       do
566         r = write (test_log_fd, buffer, n_bytes);
567       while (r < 0 && errno == EINTR);
568     }
569   if (test_debug_log)
570     {
571       GTestLogBuffer *lbuffer = g_test_log_buffer_new ();
572       GTestLogMsg *msg;
573       guint ui;
574       g_test_log_buffer_push (lbuffer, n_bytes, buffer);
575       msg = g_test_log_buffer_pop (lbuffer);
576       g_warn_if_fail (msg != NULL);
577       g_warn_if_fail (lbuffer->data->len == 0);
578       g_test_log_buffer_free (lbuffer);
579       /* print message */
580       g_printerr ("{*LOG(%s)", g_test_log_type_name (msg->log_type));
581       for (ui = 0; ui < msg->n_strings; ui++)
582         g_printerr (":{%s}", msg->strings[ui]);
583       if (msg->n_nums)
584         {
585           g_printerr (":(");
586           for (ui = 0; ui < msg->n_nums; ui++)
587             {
588               if ((long double) (long) msg->nums[ui] == msg->nums[ui])
589                 g_printerr ("%s%ld", ui ? ";" : "", (long) msg->nums[ui]);
590               else
591                 g_printerr ("%s%.16g", ui ? ";" : "", (double) msg->nums[ui]);
592             }
593           g_printerr (")");
594         }
595       g_printerr (":LOG*}\n");
596       g_test_log_msg_free (msg);
597     }
598 }
599
600 static void
601 g_test_log (GTestLogType lbit,
602             const gchar *string1,
603             const gchar *string2,
604             guint        n_args,
605             long double *largs)
606 {
607   gboolean fail = lbit == G_TEST_LOG_STOP_CASE && largs[0] != 0;
608   GTestLogMsg msg;
609   gchar *astrings[3] = { NULL, NULL, NULL };
610   guint8 *dbuffer;
611   guint32 dbufferlen;
612
613   switch (lbit)
614     {
615     case G_TEST_LOG_START_BINARY:
616       if (g_test_verbose())
617         g_print ("GTest: random seed: %s\n", string2);
618       break;
619     case G_TEST_LOG_STOP_CASE:
620       if (g_test_verbose())
621         g_print ("GTest: result: %s\n", fail ? "FAIL" : "OK");
622       else if (!g_test_quiet())
623         g_print ("%s\n", fail ? "FAIL" : "OK");
624       if (fail && test_mode_fatal)
625         abort();
626       break;
627     case G_TEST_LOG_MIN_RESULT:
628       if (g_test_verbose())
629         g_print ("(MINPERF:%s)\n", string1);
630       break;
631     case G_TEST_LOG_MAX_RESULT:
632       if (g_test_verbose())
633         g_print ("(MAXPERF:%s)\n", string1);
634       break;
635     case G_TEST_LOG_MESSAGE:
636       if (g_test_verbose())
637         g_print ("(MSG: %s)\n", string1);
638       break;
639     default: ;
640     }
641
642   msg.log_type = lbit;
643   msg.n_strings = (string1 != NULL) + (string1 && string2);
644   msg.strings = astrings;
645   astrings[0] = (gchar*) string1;
646   astrings[1] = astrings[0] ? (gchar*) string2 : NULL;
647   msg.n_nums = n_args;
648   msg.nums = largs;
649   dbuffer = g_test_log_dump (&msg, &dbufferlen);
650   g_test_log_send (dbufferlen, dbuffer);
651   g_free (dbuffer);
652
653   switch (lbit)
654     {
655     case G_TEST_LOG_START_CASE:
656       if (g_test_verbose())
657         g_print ("GTest: run: %s\n", string1);
658       else if (!g_test_quiet())
659         g_print ("%s: ", string1);
660       break;
661     default: ;
662     }
663 }
664
665 /* We intentionally parse the command line without GOptionContext
666  * because otherwise you would never be able to test it.
667  */
668 static void
669 parse_args (gint    *argc_p,
670             gchar ***argv_p)
671 {
672   guint argc = *argc_p;
673   gchar **argv = *argv_p;
674   guint i, e;
675   /* parse known args */
676   for (i = 1; i < argc; i++)
677     {
678       if (strcmp (argv[i], "--g-fatal-warnings") == 0)
679         {
680           GLogLevelFlags fatal_mask = (GLogLevelFlags) g_log_set_always_fatal ((GLogLevelFlags) G_LOG_FATAL_MASK);
681           fatal_mask = (GLogLevelFlags) (fatal_mask | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL);
682           g_log_set_always_fatal (fatal_mask);
683           argv[i] = NULL;
684         }
685       else if (strcmp (argv[i], "--keep-going") == 0 ||
686                strcmp (argv[i], "-k") == 0)
687         {
688           test_mode_fatal = FALSE;
689           argv[i] = NULL;
690         }
691       else if (strcmp (argv[i], "--debug-log") == 0)
692         {
693           test_debug_log = TRUE;
694           argv[i] = NULL;
695         }
696       else if (strcmp ("--GTestLogFD", argv[i]) == 0 || strncmp ("--GTestLogFD=", argv[i], 13) == 0)
697         {
698           gchar *equal = argv[i] + 12;
699           if (*equal == '=')
700             test_log_fd = g_ascii_strtoull (equal + 1, NULL, 0);
701           else if (i + 1 < argc)
702             {
703               argv[i++] = NULL;
704               test_log_fd = g_ascii_strtoull (argv[i], NULL, 0);
705             }
706           argv[i] = NULL;
707         }
708       else if (strcmp ("--GTestSkipCount", argv[i]) == 0 || strncmp ("--GTestSkipCount=", argv[i], 17) == 0)
709         {
710           gchar *equal = argv[i] + 16;
711           if (*equal == '=')
712             test_skip_count = g_ascii_strtoull (equal + 1, NULL, 0);
713           else if (i + 1 < argc)
714             {
715               argv[i++] = NULL;
716               test_skip_count = g_ascii_strtoull (argv[i], NULL, 0);
717             }
718           argv[i] = NULL;
719         }
720       else if (strcmp ("-p", argv[i]) == 0 || strncmp ("-p=", argv[i], 3) == 0)
721         {
722           gchar *equal = argv[i] + 2;
723           if (*equal == '=')
724             test_paths = g_slist_prepend (test_paths, equal + 1);
725           else if (i + 1 < argc)
726             {
727               argv[i++] = NULL;
728               test_paths = g_slist_prepend (test_paths, argv[i]);
729             }
730           argv[i] = NULL;
731         }
732       else if (strcmp ("-s", argv[i]) == 0 || strncmp ("-s=", argv[i], 3) == 0)
733         {
734           gchar *equal = argv[i] + 2;
735           if (*equal == '=')
736             test_paths_skipped = g_slist_prepend (test_paths_skipped, equal + 1);
737           else if (i + 1 < argc)
738             {
739               argv[i++] = NULL;
740               test_paths_skipped = g_slist_prepend (test_paths_skipped, argv[i]);
741             }
742           argv[i] = NULL;
743         }
744       else if (strcmp ("-m", argv[i]) == 0 || strncmp ("-m=", argv[i], 3) == 0)
745         {
746           gchar *equal = argv[i] + 2;
747           const gchar *mode = "";
748           if (*equal == '=')
749             mode = equal + 1;
750           else if (i + 1 < argc)
751             {
752               argv[i++] = NULL;
753               mode = argv[i];
754             }
755           if (strcmp (mode, "perf") == 0)
756             mutable_test_config_vars.test_perf = TRUE;
757           else if (strcmp (mode, "slow") == 0)
758             mutable_test_config_vars.test_quick = FALSE;
759           else if (strcmp (mode, "thorough") == 0)
760             mutable_test_config_vars.test_quick = FALSE;
761           else if (strcmp (mode, "quick") == 0)
762             {
763               mutable_test_config_vars.test_quick = TRUE;
764               mutable_test_config_vars.test_perf = FALSE;
765             }
766           else if (strcmp (mode, "undefined") == 0)
767             mutable_test_config_vars.test_undefined = TRUE;
768           else if (strcmp (mode, "no-undefined") == 0)
769             mutable_test_config_vars.test_undefined = FALSE;
770           else
771             g_error ("unknown test mode: -m %s", mode);
772           argv[i] = NULL;
773         }
774       else if (strcmp ("-q", argv[i]) == 0 || strcmp ("--quiet", argv[i]) == 0)
775         {
776           mutable_test_config_vars.test_quiet = TRUE;
777           mutable_test_config_vars.test_verbose = FALSE;
778           argv[i] = NULL;
779         }
780       else if (strcmp ("--verbose", argv[i]) == 0)
781         {
782           mutable_test_config_vars.test_quiet = FALSE;
783           mutable_test_config_vars.test_verbose = TRUE;
784           argv[i] = NULL;
785         }
786       else if (strcmp ("-l", argv[i]) == 0)
787         {
788           test_run_list = TRUE;
789           argv[i] = NULL;
790         }
791       else if (strcmp ("--seed", argv[i]) == 0 || strncmp ("--seed=", argv[i], 7) == 0)
792         {
793           gchar *equal = argv[i] + 6;
794           if (*equal == '=')
795             test_run_seedstr = equal + 1;
796           else if (i + 1 < argc)
797             {
798               argv[i++] = NULL;
799               test_run_seedstr = argv[i];
800             }
801           argv[i] = NULL;
802         }
803       else if (strcmp ("-?", argv[i]) == 0 ||
804                strcmp ("-h", argv[i]) == 0 ||
805                strcmp ("--help", argv[i]) == 0)
806         {
807           printf ("Usage:\n"
808                   "  %s [OPTION...]\n\n"
809                   "Help Options:\n"
810                   "  -h, --help                     Show help options\n\n"
811                   "Test Options:\n"
812                   "  --g-fatal-warnings             Make all warnings fatal\n"
813                   "  -l                             List test cases available in a test executable\n"
814                   "  -m {perf|slow|thorough|quick}  Execute tests according to mode\n"
815                   "  -m {undefined|no-undefined}    Execute tests according to mode\n"
816                   "  -p TESTPATH                    Only start test cases matching TESTPATH\n"
817                   "  -s TESTPATH                    Skip all tests matching TESTPATH\n"
818                   "  -seed=SEEDSTRING               Start tests with random seed SEEDSTRING\n"
819                   "  --debug-log                    debug test logging output\n"
820                   "  -q, --quiet                    Run tests quietly\n"
821                   "  --verbose                      Run tests verbosely\n",
822                   argv[0]);
823           exit (0);
824         }
825     }
826   /* collapse argv */
827   e = 1;
828   for (i = 1; i < argc; i++)
829     if (argv[i])
830       {
831         argv[e++] = argv[i];
832         if (i >= e)
833           argv[i] = NULL;
834       }
835   *argc_p = e;
836 }
837
838 /**
839  * g_test_init:
840  * @argc: Address of the @argc parameter of the main() function.
841  *        Changed if any arguments were handled.
842  * @argv: Address of the @argv parameter of main().
843  *        Any parameters understood by g_test_init() stripped before return.
844  * @...: Reserved for future extension. Currently, you must pass %NULL.
845  *
846  * Initialize the GLib testing framework, e.g. by seeding the
847  * test random number generator, the name for g_get_prgname()
848  * and parsing test related command line args.
849  * So far, the following arguments are understood:
850  * <variablelist>
851  *   <varlistentry>
852  *     <term><option>-l</option></term>
853  *     <listitem><para>
854  *       List test cases available in a test executable.
855  *     </para></listitem>
856  *   </varlistentry>
857  *   <varlistentry>
858  *     <term><option>--seed=<replaceable>RANDOMSEED</replaceable></option></term>
859  *     <listitem><para>
860  *       Provide a random seed to reproduce test runs using random numbers.
861  *     </para></listitem>
862  *     </varlistentry>
863  *     <varlistentry>
864  *       <term><option>--verbose</option></term>
865  *       <listitem><para>Run tests verbosely.</para></listitem>
866  *     </varlistentry>
867  *     <varlistentry>
868  *       <term><option>-q</option>, <option>--quiet</option></term>
869  *       <listitem><para>Run tests quietly.</para></listitem>
870  *     </varlistentry>
871  *     <varlistentry>
872  *       <term><option>-p <replaceable>TESTPATH</replaceable></option></term>
873  *       <listitem><para>
874  *         Execute all tests matching <replaceable>TESTPATH</replaceable>.
875  *       </para></listitem>
876  *     </varlistentry>
877  *     <varlistentry>
878  *       <term><option>-m {perf|slow|thorough|quick|undefined|no-undefined}</option></term>
879  *       <listitem><para>
880  *         Execute tests according to these test modes:
881  *         <variablelist>
882  *           <varlistentry>
883  *             <term>perf</term>
884  *             <listitem><para>
885  *               Performance tests, may take long and report results.
886  *             </para></listitem>
887  *           </varlistentry>
888  *           <varlistentry>
889  *             <term>slow, thorough</term>
890  *             <listitem><para>
891  *               Slow and thorough tests, may take quite long and
892  *               maximize coverage.
893  *             </para></listitem>
894  *           </varlistentry>
895  *           <varlistentry>
896  *             <term>quick</term>
897  *             <listitem><para>
898  *               Quick tests, should run really quickly and give good coverage.
899  *             </para></listitem>
900  *           </varlistentry>
901  *           <varlistentry>
902  *             <term>undefined</term>
903  *             <listitem><para>
904  *               Tests for undefined behaviour, may provoke programming errors
905  *               under g_test_trap_fork() to check that appropriate assertions
906  *               or warnings are given
907  *             </para></listitem>
908  *           </varlistentry>
909  *           <varlistentry>
910  *             <term>no-undefined</term>
911  *             <listitem><para>
912  *               Avoid tests for undefined behaviour
913  *             </para></listitem>
914  *           </varlistentry>
915  *         </variablelist>
916  *       </para></listitem>
917  *     </varlistentry>
918  *     <varlistentry>
919  *       <term><option>--debug-log</option></term>
920  *       <listitem><para>Debug test logging output.</para></listitem>
921  *     </varlistentry>
922  *  </variablelist>
923  *
924  * Since: 2.16
925  */
926 void
927 g_test_init (int    *argc,
928              char ***argv,
929              ...)
930 {
931   static char seedstr[4 + 4 * 8 + 1];
932   va_list args;
933   gpointer vararg1;
934   /* make warnings and criticals fatal for all test programs */
935   GLogLevelFlags fatal_mask = (GLogLevelFlags) g_log_set_always_fatal ((GLogLevelFlags) G_LOG_FATAL_MASK);
936   fatal_mask = (GLogLevelFlags) (fatal_mask | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL);
937   g_log_set_always_fatal (fatal_mask);
938   /* check caller args */
939   g_return_if_fail (argc != NULL);
940   g_return_if_fail (argv != NULL);
941   g_return_if_fail (g_test_config_vars->test_initialized == FALSE);
942   mutable_test_config_vars.test_initialized = TRUE;
943
944   va_start (args, argv);
945   vararg1 = va_arg (args, gpointer); /* reserved for future extensions */
946   va_end (args);
947   g_return_if_fail (vararg1 == NULL);
948
949   /* setup random seed string */
950   g_snprintf (seedstr, sizeof (seedstr), "R02S%08x%08x%08x%08x", g_random_int(), g_random_int(), g_random_int(), g_random_int());
951   test_run_seedstr = seedstr;
952
953   /* parse args, sets up mode, changes seed, etc. */
954   parse_args (argc, argv);
955   if (!g_get_prgname())
956     g_set_prgname ((*argv)[0]);
957
958   /* verify GRand reliability, needed for reliable seeds */
959   if (1)
960     {
961       GRand *rg = g_rand_new_with_seed (0xc8c49fb6);
962       guint32 t1 = g_rand_int (rg), t2 = g_rand_int (rg), t3 = g_rand_int (rg), t4 = g_rand_int (rg);
963       /* g_print ("GRand-current: 0x%x 0x%x 0x%x 0x%x\n", t1, t2, t3, t4); */
964       if (t1 != 0xfab39f9b || t2 != 0xb948fb0e || t3 != 0x3d31be26 || t4 != 0x43a19d66)
965         g_warning ("random numbers are not GRand-2.2 compatible, seeds may be broken (check $G_RANDOM_VERSION)");
966       g_rand_free (rg);
967     }
968
969   /* check rand seed */
970   test_run_seed (test_run_seedstr);
971
972   /* report program start */
973   g_log_set_default_handler (gtest_default_log_handler, NULL);
974   g_test_log (G_TEST_LOG_START_BINARY, g_get_prgname(), test_run_seedstr, 0, NULL);
975 }
976
977 static void
978 test_run_seed (const gchar *rseed)
979 {
980   guint seed_failed = 0;
981   if (test_run_rand)
982     g_rand_free (test_run_rand);
983   test_run_rand = NULL;
984   while (strchr (" \t\v\r\n\f", *rseed))
985     rseed++;
986   if (strncmp (rseed, "R02S", 4) == 0)  /* seed for random generator 02 (GRand-2.2) */
987     {
988       const char *s = rseed + 4;
989       if (strlen (s) >= 32)             /* require 4 * 8 chars */
990         {
991           guint32 seedarray[4];
992           gchar *p, hexbuf[9] = { 0, };
993           memcpy (hexbuf, s + 0, 8);
994           seedarray[0] = g_ascii_strtoull (hexbuf, &p, 16);
995           seed_failed += p != NULL && *p != 0;
996           memcpy (hexbuf, s + 8, 8);
997           seedarray[1] = g_ascii_strtoull (hexbuf, &p, 16);
998           seed_failed += p != NULL && *p != 0;
999           memcpy (hexbuf, s + 16, 8);
1000           seedarray[2] = g_ascii_strtoull (hexbuf, &p, 16);
1001           seed_failed += p != NULL && *p != 0;
1002           memcpy (hexbuf, s + 24, 8);
1003           seedarray[3] = g_ascii_strtoull (hexbuf, &p, 16);
1004           seed_failed += p != NULL && *p != 0;
1005           if (!seed_failed)
1006             {
1007               test_run_rand = g_rand_new_with_seed_array (seedarray, 4);
1008               return;
1009             }
1010         }
1011     }
1012   g_error ("Unknown or invalid random seed: %s", rseed);
1013 }
1014
1015 /**
1016  * g_test_rand_int:
1017  *
1018  * Get a reproducible random integer number.
1019  *
1020  * The random numbers generated by the g_test_rand_*() family of functions
1021  * change with every new test program start, unless the --seed option is
1022  * given when starting test programs.
1023  *
1024  * For individual test cases however, the random number generator is
1025  * reseeded, to avoid dependencies between tests and to make --seed
1026  * effective for all test cases.
1027  *
1028  * Returns: a random number from the seeded random number generator.
1029  *
1030  * Since: 2.16
1031  */
1032 gint32
1033 g_test_rand_int (void)
1034 {
1035   return g_rand_int (test_run_rand);
1036 }
1037
1038 /**
1039  * g_test_rand_int_range:
1040  * @begin: the minimum value returned by this function
1041  * @end:   the smallest value not to be returned by this function
1042  *
1043  * Get a reproducible random integer number out of a specified range,
1044  * see g_test_rand_int() for details on test case random numbers.
1045  *
1046  * Returns: a number with @begin <= number < @end.
1047  * 
1048  * Since: 2.16
1049  */
1050 gint32
1051 g_test_rand_int_range (gint32          begin,
1052                        gint32          end)
1053 {
1054   return g_rand_int_range (test_run_rand, begin, end);
1055 }
1056
1057 /**
1058  * g_test_rand_double:
1059  *
1060  * Get a reproducible random floating point number,
1061  * see g_test_rand_int() for details on test case random numbers.
1062  *
1063  * Returns: a random number from the seeded random number generator.
1064  *
1065  * Since: 2.16
1066  */
1067 double
1068 g_test_rand_double (void)
1069 {
1070   return g_rand_double (test_run_rand);
1071 }
1072
1073 /**
1074  * g_test_rand_double_range:
1075  * @range_start: the minimum value returned by this function
1076  * @range_end: the minimum value not returned by this function
1077  *
1078  * Get a reproducible random floating pointer number out of a specified range,
1079  * see g_test_rand_int() for details on test case random numbers.
1080  *
1081  * Returns: a number with @range_start <= number < @range_end.
1082  *
1083  * Since: 2.16
1084  */
1085 double
1086 g_test_rand_double_range (double          range_start,
1087                           double          range_end)
1088 {
1089   return g_rand_double_range (test_run_rand, range_start, range_end);
1090 }
1091
1092 /**
1093  * g_test_timer_start:
1094  *
1095  * Start a timing test. Call g_test_timer_elapsed() when the task is supposed
1096  * to be done. Call this function again to restart the timer.
1097  *
1098  * Since: 2.16
1099  */
1100 void
1101 g_test_timer_start (void)
1102 {
1103   if (!test_user_timer)
1104     test_user_timer = g_timer_new();
1105   test_user_stamp = 0;
1106   g_timer_start (test_user_timer);
1107 }
1108
1109 /**
1110  * g_test_timer_elapsed:
1111  *
1112  * Get the time since the last start of the timer with g_test_timer_start().
1113  *
1114  * Returns: the time since the last start of the timer, as a double
1115  *
1116  * Since: 2.16
1117  */
1118 double
1119 g_test_timer_elapsed (void)
1120 {
1121   test_user_stamp = test_user_timer ? g_timer_elapsed (test_user_timer, NULL) : 0;
1122   return test_user_stamp;
1123 }
1124
1125 /**
1126  * g_test_timer_last:
1127  *
1128  * Report the last result of g_test_timer_elapsed().
1129  *
1130  * Returns: the last result of g_test_timer_elapsed(), as a double
1131  *
1132  * Since: 2.16
1133  */
1134 double
1135 g_test_timer_last (void)
1136 {
1137   return test_user_stamp;
1138 }
1139
1140 /**
1141  * g_test_minimized_result:
1142  * @minimized_quantity: the reported value
1143  * @format: the format string of the report message
1144  * @...: arguments to pass to the printf() function
1145  *
1146  * Report the result of a performance or measurement test.
1147  * The test should generally strive to minimize the reported
1148  * quantities (smaller values are better than larger ones),
1149  * this and @minimized_quantity can determine sorting
1150  * order for test result reports.
1151  *
1152  * Since: 2.16
1153  */
1154 void
1155 g_test_minimized_result (double          minimized_quantity,
1156                          const char     *format,
1157                          ...)
1158 {
1159   long double largs = minimized_quantity;
1160   gchar *buffer;
1161   va_list args;
1162
1163   va_start (args, format);
1164   buffer = g_strdup_vprintf (format, args);
1165   va_end (args);
1166
1167   g_test_log (G_TEST_LOG_MIN_RESULT, buffer, NULL, 1, &largs);
1168   g_free (buffer);
1169 }
1170
1171 /**
1172  * g_test_maximized_result:
1173  * @maximized_quantity: the reported value
1174  * @format: the format string of the report message
1175  * @...: arguments to pass to the printf() function
1176  *
1177  * Report the result of a performance or measurement test.
1178  * The test should generally strive to maximize the reported
1179  * quantities (larger values are better than smaller ones),
1180  * this and @maximized_quantity can determine sorting
1181  * order for test result reports.
1182  *
1183  * Since: 2.16
1184  */
1185 void
1186 g_test_maximized_result (double          maximized_quantity,
1187                          const char     *format,
1188                          ...)
1189 {
1190   long double largs = maximized_quantity;
1191   gchar *buffer;
1192   va_list args;
1193
1194   va_start (args, format);
1195   buffer = g_strdup_vprintf (format, args);
1196   va_end (args);
1197
1198   g_test_log (G_TEST_LOG_MAX_RESULT, buffer, NULL, 1, &largs);
1199   g_free (buffer);
1200 }
1201
1202 /**
1203  * g_test_message:
1204  * @format: the format string
1205  * @...:    printf-like arguments to @format
1206  *
1207  * Add a message to the test report.
1208  *
1209  * Since: 2.16
1210  */
1211 void
1212 g_test_message (const char *format,
1213                 ...)
1214 {
1215   gchar *buffer;
1216   va_list args;
1217
1218   va_start (args, format);
1219   buffer = g_strdup_vprintf (format, args);
1220   va_end (args);
1221
1222   g_test_log (G_TEST_LOG_MESSAGE, buffer, NULL, 0, NULL);
1223   g_free (buffer);
1224 }
1225
1226 /**
1227  * g_test_bug_base:
1228  * @uri_pattern: the base pattern for bug URIs
1229  *
1230  * Specify the base URI for bug reports.
1231  *
1232  * The base URI is used to construct bug report messages for
1233  * g_test_message() when g_test_bug() is called.
1234  * Calling this function outside of a test case sets the
1235  * default base URI for all test cases. Calling it from within
1236  * a test case changes the base URI for the scope of the test
1237  * case only.
1238  * Bug URIs are constructed by appending a bug specific URI
1239  * portion to @uri_pattern, or by replacing the special string
1240  * '\%s' within @uri_pattern if that is present.
1241  *
1242  * Since: 2.16
1243  */
1244 void
1245 g_test_bug_base (const char *uri_pattern)
1246 {
1247   g_free (test_uri_base);
1248   test_uri_base = g_strdup (uri_pattern);
1249 }
1250
1251 /**
1252  * g_test_bug:
1253  * @bug_uri_snippet: Bug specific bug tracker URI portion.
1254  *
1255  * This function adds a message to test reports that
1256  * associates a bug URI with a test case.
1257  * Bug URIs are constructed from a base URI set with g_test_bug_base()
1258  * and @bug_uri_snippet.
1259  *
1260  * Since: 2.16
1261  */
1262 void
1263 g_test_bug (const char *bug_uri_snippet)
1264 {
1265   char *c;
1266
1267   g_return_if_fail (test_uri_base != NULL);
1268   g_return_if_fail (bug_uri_snippet != NULL);
1269
1270   c = strstr (test_uri_base, "%s");
1271   if (c)
1272     {
1273       char *b = g_strndup (test_uri_base, c - test_uri_base);
1274       char *s = g_strconcat (b, bug_uri_snippet, c + 2, NULL);
1275       g_free (b);
1276       g_test_message ("Bug Reference: %s", s);
1277       g_free (s);
1278     }
1279   else
1280     g_test_message ("Bug Reference: %s%s", test_uri_base, bug_uri_snippet);
1281 }
1282
1283 /**
1284  * g_test_get_root:
1285  *
1286  * Get the toplevel test suite for the test path API.
1287  *
1288  * Returns: the toplevel #GTestSuite
1289  *
1290  * Since: 2.16
1291  */
1292 GTestSuite*
1293 g_test_get_root (void)
1294 {
1295   if (!test_suite_root)
1296     {
1297       test_suite_root = g_test_create_suite ("root");
1298       g_free (test_suite_root->name);
1299       test_suite_root->name = g_strdup ("");
1300     }
1301
1302   return test_suite_root;
1303 }
1304
1305 /**
1306  * g_test_run:
1307  *
1308  * Runs all tests under the toplevel suite which can be retrieved
1309  * with g_test_get_root(). Similar to g_test_run_suite(), the test
1310  * cases to be run are filtered according to
1311  * test path arguments (-p <replaceable>testpath</replaceable>) as 
1312  * parsed by g_test_init().
1313  * g_test_run_suite() or g_test_run() may only be called once
1314  * in a program.
1315  *
1316  * Returns: 0 on success
1317  *
1318  * Since: 2.16
1319  */
1320 int
1321 g_test_run (void)
1322 {
1323   return g_test_run_suite (g_test_get_root());
1324 }
1325
1326 /**
1327  * g_test_create_case:
1328  * @test_name:     the name for the test case
1329  * @data_size:     the size of the fixture data structure
1330  * @test_data:     test data argument for the test functions
1331  * @data_setup:    the function to set up the fixture data
1332  * @data_test:     the actual test function
1333  * @data_teardown: the function to teardown the fixture data
1334  *
1335  * Create a new #GTestCase, named @test_name, this API is fairly
1336  * low level, calling g_test_add() or g_test_add_func() is preferable.
1337  * When this test is executed, a fixture structure of size @data_size
1338  * will be allocated and filled with 0s. Then @data_setup is called
1339  * to initialize the fixture. After fixture setup, the actual test
1340  * function @data_test is called. Once the test run completed, the
1341  * fixture structure is torn down  by calling @data_teardown and
1342  * after that the memory is released.
1343  *
1344  * Splitting up a test run into fixture setup, test function and
1345  * fixture teardown is most usful if the same fixture is used for
1346  * multiple tests. In this cases, g_test_create_case() will be
1347  * called with the same fixture, but varying @test_name and
1348  * @data_test arguments.
1349  *
1350  * Returns: a newly allocated #GTestCase.
1351  *
1352  * Since: 2.16
1353  */
1354 GTestCase*
1355 g_test_create_case (const char       *test_name,
1356                     gsize             data_size,
1357                     gconstpointer     test_data,
1358                     GTestFixtureFunc  data_setup,
1359                     GTestFixtureFunc  data_test,
1360                     GTestFixtureFunc  data_teardown)
1361 {
1362   GTestCase *tc;
1363
1364   g_return_val_if_fail (test_name != NULL, NULL);
1365   g_return_val_if_fail (strchr (test_name, '/') == NULL, NULL);
1366   g_return_val_if_fail (test_name[0] != 0, NULL);
1367   g_return_val_if_fail (data_test != NULL, NULL);
1368
1369   tc = g_slice_new0 (GTestCase);
1370   tc->name = g_strdup (test_name);
1371   tc->test_data = (gpointer) test_data;
1372   tc->fixture_size = data_size;
1373   tc->fixture_setup = (void*) data_setup;
1374   tc->fixture_test = (void*) data_test;
1375   tc->fixture_teardown = (void*) data_teardown;
1376
1377   return tc;
1378 }
1379
1380 static gint
1381 find_suite (gconstpointer l, gconstpointer s)
1382 {
1383   const GTestSuite *suite = l;
1384   const gchar *str = s;
1385
1386   return strcmp (suite->name, str);
1387 }
1388
1389 /**
1390  * GTestFixtureFunc:
1391  * @fixture: the test fixture
1392  * @user_data: the data provided when registering the test
1393  *
1394  * The type used for functions that operate on test fixtures.  This is
1395  * used for the fixture setup and teardown functions as well as for the
1396  * testcases themselves.
1397  *
1398  * @user_data is a pointer to the data that was given when registering
1399  * the test case.
1400  *
1401  * @fixture will be a pointer to the area of memory allocated by the
1402  * test framework, of the size requested.  If the requested size was
1403  * zero then @fixture will be equal to @user_data.
1404  *
1405  * Since: 2.28
1406  */
1407 void
1408 g_test_add_vtable (const char       *testpath,
1409                    gsize             data_size,
1410                    gconstpointer     test_data,
1411                    GTestFixtureFunc  data_setup,
1412                    GTestFixtureFunc  fixture_test_func,
1413                    GTestFixtureFunc  data_teardown)
1414 {
1415   gchar **segments;
1416   guint ui;
1417   GTestSuite *suite;
1418
1419   g_return_if_fail (testpath != NULL);
1420   g_return_if_fail (g_path_is_absolute (testpath));
1421   g_return_if_fail (fixture_test_func != NULL);
1422
1423   if (g_slist_find_custom (test_paths_skipped, testpath, (GCompareFunc)g_strcmp0))
1424     return;
1425
1426   suite = g_test_get_root();
1427   segments = g_strsplit (testpath, "/", -1);
1428   for (ui = 0; segments[ui] != NULL; ui++)
1429     {
1430       const char *seg = segments[ui];
1431       gboolean islast = segments[ui + 1] == NULL;
1432       if (islast && !seg[0])
1433         g_error ("invalid test case path: %s", testpath);
1434       else if (!seg[0])
1435         continue;       /* initial or duplicate slash */
1436       else if (!islast)
1437         {
1438           GSList *l;
1439           GTestSuite *csuite;
1440           l = g_slist_find_custom (suite->suites, seg, find_suite);
1441           if (l)
1442             {
1443               csuite = l->data;
1444             }
1445           else
1446             {
1447               csuite = g_test_create_suite (seg);
1448               g_test_suite_add_suite (suite, csuite);
1449             }
1450           suite = csuite;
1451         }
1452       else /* islast */
1453         {
1454           GTestCase *tc = g_test_create_case (seg, data_size, test_data, data_setup, fixture_test_func, data_teardown);
1455           g_test_suite_add (suite, tc);
1456         }
1457     }
1458   g_strfreev (segments);
1459 }
1460
1461 /**
1462  * g_test_fail:
1463  *
1464  * Indicates that a test failed. This function can be called
1465  * multiple times from the same test. You can use this function
1466  * if your test failed in a recoverable way.
1467  * 
1468  * Do not use this function if the failure of a test could cause
1469  * other tests to malfunction.
1470  *
1471  * Calling this function will not stop the test from running, you
1472  * need to return from the test function yourself. So you can
1473  * produce additional diagnostic messages or even continue running
1474  * the test.
1475  *
1476  * If not called from inside a test, this function does nothing.
1477  *
1478  * Since: 2.30
1479  **/
1480 void
1481 g_test_fail (void)
1482 {
1483   test_run_success = FALSE;
1484 }
1485
1486 /**
1487  * GTestFunc:
1488  *
1489  * The type used for test case functions.
1490  *
1491  * Since: 2.28
1492  */
1493
1494 /**
1495  * g_test_add_func:
1496  * @testpath:   /-separated test case path name for the test.
1497  * @test_func:  The test function to invoke for this test.
1498  *
1499  * Create a new test case, similar to g_test_create_case(). However
1500  * the test is assumed to use no fixture, and test suites are automatically
1501  * created on the fly and added to the root fixture, based on the
1502  * slash-separated portions of @testpath.
1503  *
1504  * Since: 2.16
1505  */
1506 void
1507 g_test_add_func (const char *testpath,
1508                  GTestFunc   test_func)
1509 {
1510   g_return_if_fail (testpath != NULL);
1511   g_return_if_fail (testpath[0] == '/');
1512   g_return_if_fail (test_func != NULL);
1513   g_test_add_vtable (testpath, 0, NULL, NULL, (GTestFixtureFunc) test_func, NULL);
1514 }
1515
1516 /**
1517  * GTestDataFunc:
1518  * @user_data: the data provided when registering the test
1519  *
1520  * The type used for test case functions that take an extra pointer
1521  * argument.
1522  *
1523  * Since: 2.28
1524  */
1525
1526 /**
1527  * g_test_add_data_func:
1528  * @testpath:   /-separated test case path name for the test.
1529  * @test_data:  Test data argument for the test function.
1530  * @test_func:  The test function to invoke for this test.
1531  *
1532  * Create a new test case, similar to g_test_create_case(). However
1533  * the test is assumed to use no fixture, and test suites are automatically
1534  * created on the fly and added to the root fixture, based on the
1535  * slash-separated portions of @testpath. The @test_data argument
1536  * will be passed as first argument to @test_func.
1537  *
1538  * Since: 2.16
1539  */
1540 void
1541 g_test_add_data_func (const char     *testpath,
1542                       gconstpointer   test_data,
1543                       GTestDataFunc   test_func)
1544 {
1545   g_return_if_fail (testpath != NULL);
1546   g_return_if_fail (testpath[0] == '/');
1547   g_return_if_fail (test_func != NULL);
1548
1549   g_test_add_vtable (testpath, 0, test_data, NULL, (GTestFixtureFunc) test_func, NULL);
1550 }
1551
1552 /**
1553  * g_test_add_data_func_full:
1554  * @testpath: /-separated test case path name for the test.
1555  * @test_data: Test data argument for the test function.
1556  * @test_func: The test function to invoke for this test.
1557  * @data_free_func: #GDestroyNotify for @test_data.
1558  *
1559  * Create a new test case, as with g_test_add_data_func(), but freeing
1560  * @test_data after the test run is complete.
1561  *
1562  * Since: 2.34
1563  */
1564 void
1565 g_test_add_data_func_full (const char     *testpath,
1566                            gpointer        test_data,
1567                            GTestDataFunc   test_func,
1568                            GDestroyNotify  data_free_func)
1569 {
1570   g_return_if_fail (testpath != NULL);
1571   g_return_if_fail (testpath[0] == '/');
1572   g_return_if_fail (test_func != NULL);
1573
1574   g_test_add_vtable (testpath, 0, test_data, NULL,
1575                      (GTestFixtureFunc) test_func,
1576                      (GTestFixtureFunc) data_free_func);
1577 }
1578
1579 /**
1580  * g_test_create_suite:
1581  * @suite_name: a name for the suite
1582  *
1583  * Create a new test suite with the name @suite_name.
1584  *
1585  * Returns: A newly allocated #GTestSuite instance.
1586  *
1587  * Since: 2.16
1588  */
1589 GTestSuite*
1590 g_test_create_suite (const char *suite_name)
1591 {
1592   GTestSuite *ts;
1593   g_return_val_if_fail (suite_name != NULL, NULL);
1594   g_return_val_if_fail (strchr (suite_name, '/') == NULL, NULL);
1595   g_return_val_if_fail (suite_name[0] != 0, NULL);
1596   ts = g_slice_new0 (GTestSuite);
1597   ts->name = g_strdup (suite_name);
1598   return ts;
1599 }
1600
1601 /**
1602  * g_test_suite_add:
1603  * @suite: a #GTestSuite
1604  * @test_case: a #GTestCase
1605  *
1606  * Adds @test_case to @suite.
1607  *
1608  * Since: 2.16
1609  */
1610 void
1611 g_test_suite_add (GTestSuite     *suite,
1612                   GTestCase      *test_case)
1613 {
1614   g_return_if_fail (suite != NULL);
1615   g_return_if_fail (test_case != NULL);
1616
1617   suite->cases = g_slist_prepend (suite->cases, test_case);
1618 }
1619
1620 /**
1621  * g_test_suite_add_suite:
1622  * @suite:       a #GTestSuite
1623  * @nestedsuite: another #GTestSuite
1624  *
1625  * Adds @nestedsuite to @suite.
1626  *
1627  * Since: 2.16
1628  */
1629 void
1630 g_test_suite_add_suite (GTestSuite     *suite,
1631                         GTestSuite     *nestedsuite)
1632 {
1633   g_return_if_fail (suite != NULL);
1634   g_return_if_fail (nestedsuite != NULL);
1635
1636   suite->suites = g_slist_prepend (suite->suites, nestedsuite);
1637 }
1638
1639 /**
1640  * g_test_queue_free:
1641  * @gfree_pointer: the pointer to be stored.
1642  *
1643  * Enqueue a pointer to be released with g_free() during the next
1644  * teardown phase. This is equivalent to calling g_test_queue_destroy()
1645  * with a destroy callback of g_free().
1646  *
1647  * Since: 2.16
1648  */
1649 void
1650 g_test_queue_free (gpointer gfree_pointer)
1651 {
1652   if (gfree_pointer)
1653     g_test_queue_destroy (g_free, gfree_pointer);
1654 }
1655
1656 /**
1657  * g_test_queue_destroy:
1658  * @destroy_func:       Destroy callback for teardown phase.
1659  * @destroy_data:       Destroy callback data.
1660  *
1661  * This function enqueus a callback @destroy_func to be executed
1662  * during the next test case teardown phase. This is most useful
1663  * to auto destruct allocted test resources at the end of a test run.
1664  * Resources are released in reverse queue order, that means enqueueing
1665  * callback A before callback B will cause B() to be called before
1666  * A() during teardown.
1667  *
1668  * Since: 2.16
1669  */
1670 void
1671 g_test_queue_destroy (GDestroyNotify destroy_func,
1672                       gpointer       destroy_data)
1673 {
1674   DestroyEntry *dentry;
1675
1676   g_return_if_fail (destroy_func != NULL);
1677
1678   dentry = g_slice_new0 (DestroyEntry);
1679   dentry->destroy_func = destroy_func;
1680   dentry->destroy_data = destroy_data;
1681   dentry->next = test_destroy_queue;
1682   test_destroy_queue = dentry;
1683 }
1684
1685 static gboolean
1686 test_case_run (GTestCase *tc)
1687 {
1688   gchar *old_name = test_run_name, *old_base = g_strdup (test_uri_base);
1689   gboolean success = TRUE;
1690
1691   test_run_name = g_strconcat (old_name, "/", tc->name, NULL);
1692   if (++test_run_count <= test_skip_count)
1693     g_test_log (G_TEST_LOG_SKIP_CASE, test_run_name, NULL, 0, NULL);
1694   else if (test_run_list)
1695     {
1696       g_print ("%s\n", test_run_name);
1697       g_test_log (G_TEST_LOG_LIST_CASE, test_run_name, NULL, 0, NULL);
1698     }
1699   else
1700     {
1701       GTimer *test_run_timer = g_timer_new();
1702       long double largs[3];
1703       void *fixture;
1704       g_test_log (G_TEST_LOG_START_CASE, test_run_name, NULL, 0, NULL);
1705       test_run_forks = 0;
1706       test_run_success = TRUE;
1707       g_test_log_set_fatal_handler (NULL, NULL);
1708       g_timer_start (test_run_timer);
1709       fixture = tc->fixture_size ? g_malloc0 (tc->fixture_size) : tc->test_data;
1710       test_run_seed (test_run_seedstr);
1711       if (tc->fixture_setup)
1712         tc->fixture_setup (fixture, tc->test_data);
1713       tc->fixture_test (fixture, tc->test_data);
1714       test_trap_clear();
1715       while (test_destroy_queue)
1716         {
1717           DestroyEntry *dentry = test_destroy_queue;
1718           test_destroy_queue = dentry->next;
1719           dentry->destroy_func (dentry->destroy_data);
1720           g_slice_free (DestroyEntry, dentry);
1721         }
1722       if (tc->fixture_teardown)
1723         tc->fixture_teardown (fixture, tc->test_data);
1724       if (tc->fixture_size)
1725         g_free (fixture);
1726       g_timer_stop (test_run_timer);
1727       success = test_run_success;
1728       test_run_success = FALSE;
1729       largs[0] = success ? 0 : 1; /* OK */
1730       largs[1] = test_run_forks;
1731       largs[2] = g_timer_elapsed (test_run_timer, NULL);
1732       g_test_log (G_TEST_LOG_STOP_CASE, NULL, NULL, G_N_ELEMENTS (largs), largs);
1733       g_timer_destroy (test_run_timer);
1734     }
1735   g_free (test_run_name);
1736   test_run_name = old_name;
1737   g_free (test_uri_base);
1738   test_uri_base = old_base;
1739
1740   return success;
1741 }
1742
1743 static int
1744 g_test_run_suite_internal (GTestSuite *suite,
1745                            const char *path)
1746 {
1747   guint n_bad = 0, l;
1748   gchar *rest, *old_name = test_run_name;
1749   GSList *slist, *reversed;
1750
1751   g_return_val_if_fail (suite != NULL, -1);
1752
1753   while (path[0] == '/')
1754     path++;
1755   l = strlen (path);
1756   rest = strchr (path, '/');
1757   l = rest ? MIN (l, rest - path) : l;
1758   test_run_name = suite->name[0] == 0 ? g_strdup (test_run_name) : g_strconcat (old_name, "/", suite->name, NULL);
1759   reversed = g_slist_reverse (g_slist_copy (suite->cases));
1760   for (slist = reversed; slist; slist = slist->next)
1761     {
1762       GTestCase *tc = slist->data;
1763       guint n = l ? strlen (tc->name) : 0;
1764       if (l == n && strncmp (path, tc->name, n) == 0)
1765         {
1766           if (!test_case_run (tc))
1767             n_bad++;
1768         }
1769     }
1770   g_slist_free (reversed);
1771   reversed = g_slist_reverse (g_slist_copy (suite->suites));
1772   for (slist = reversed; slist; slist = slist->next)
1773     {
1774       GTestSuite *ts = slist->data;
1775       guint n = l ? strlen (ts->name) : 0;
1776       if (l == n && strncmp (path, ts->name, n) == 0)
1777         n_bad += g_test_run_suite_internal (ts, rest ? rest : "");
1778     }
1779   g_slist_free (reversed);
1780   g_free (test_run_name);
1781   test_run_name = old_name;
1782
1783   return n_bad;
1784 }
1785
1786 /**
1787  * g_test_run_suite:
1788  * @suite: a #GTestSuite
1789  *
1790  * Execute the tests within @suite and all nested #GTestSuites.
1791  * The test suites to be executed are filtered according to
1792  * test path arguments (-p <replaceable>testpath</replaceable>) 
1793  * as parsed by g_test_init().
1794  * g_test_run_suite() or g_test_run() may only be called once
1795  * in a program.
1796  *
1797  * Returns: 0 on success
1798  *
1799  * Since: 2.16
1800  */
1801 int
1802 g_test_run_suite (GTestSuite *suite)
1803 {
1804   guint n_bad = 0;
1805
1806   g_return_val_if_fail (g_test_config_vars->test_initialized, -1);
1807   g_return_val_if_fail (g_test_run_once == TRUE, -1);
1808
1809   g_test_run_once = FALSE;
1810
1811   if (!test_paths)
1812     test_paths = g_slist_prepend (test_paths, "");
1813   while (test_paths)
1814     {
1815       const char *rest, *path = test_paths->data;
1816       guint l, n = strlen (suite->name);
1817       test_paths = g_slist_delete_link (test_paths, test_paths);
1818       while (path[0] == '/')
1819         path++;
1820       if (!n) /* root suite, run unconditionally */
1821         {
1822           n_bad += g_test_run_suite_internal (suite, path);
1823           continue;
1824         }
1825       /* regular suite, match path */
1826       rest = strchr (path, '/');
1827       l = strlen (path);
1828       l = rest ? MIN (l, rest - path) : l;
1829       if ((!l || l == n) && strncmp (path, suite->name, n) == 0)
1830         n_bad += g_test_run_suite_internal (suite, rest ? rest : "");
1831     }
1832
1833   return n_bad;
1834 }
1835
1836 static void
1837 gtest_default_log_handler (const gchar    *log_domain,
1838                            GLogLevelFlags  log_level,
1839                            const gchar    *message,
1840                            gpointer        unused_data)
1841 {
1842   const gchar *strv[16];
1843   gboolean fatal = FALSE;
1844   gchar *msg;
1845   guint i = 0;
1846
1847   if (log_domain)
1848     {
1849       strv[i++] = log_domain;
1850       strv[i++] = "-";
1851     }
1852   if (log_level & G_LOG_FLAG_FATAL)
1853     {
1854       strv[i++] = "FATAL-";
1855       fatal = TRUE;
1856     }
1857   if (log_level & G_LOG_FLAG_RECURSION)
1858     strv[i++] = "RECURSIVE-";
1859   if (log_level & G_LOG_LEVEL_ERROR)
1860     strv[i++] = "ERROR";
1861   if (log_level & G_LOG_LEVEL_CRITICAL)
1862     strv[i++] = "CRITICAL";
1863   if (log_level & G_LOG_LEVEL_WARNING)
1864     strv[i++] = "WARNING";
1865   if (log_level & G_LOG_LEVEL_MESSAGE)
1866     strv[i++] = "MESSAGE";
1867   if (log_level & G_LOG_LEVEL_INFO)
1868     strv[i++] = "INFO";
1869   if (log_level & G_LOG_LEVEL_DEBUG)
1870     strv[i++] = "DEBUG";
1871   strv[i++] = ": ";
1872   strv[i++] = message;
1873   strv[i++] = NULL;
1874
1875   msg = g_strjoinv ("", (gchar**) strv);
1876   g_test_log (fatal ? G_TEST_LOG_ERROR : G_TEST_LOG_MESSAGE, msg, NULL, 0, NULL);
1877   g_log_default_handler (log_domain, log_level, message, unused_data);
1878
1879   g_free (msg);
1880 }
1881
1882 void
1883 g_assertion_message (const char     *domain,
1884                      const char     *file,
1885                      int             line,
1886                      const char     *func,
1887                      const char     *message)
1888 {
1889   char lstr[32];
1890   char *s;
1891
1892   if (!message)
1893     message = "code should not be reached";
1894   g_snprintf (lstr, 32, "%d", line);
1895   s = g_strconcat (domain ? domain : "", domain && domain[0] ? ":" : "",
1896                    "ERROR:", file, ":", lstr, ":",
1897                    func, func[0] ? ":" : "",
1898                    " ", message, NULL);
1899   g_printerr ("**\n%s\n", s);
1900
1901   /* store assertion message in global variable, so that it can be found in a
1902    * core dump */
1903   if (__glib_assert_msg != NULL)
1904       /* free the old one */
1905       free (__glib_assert_msg);
1906   __glib_assert_msg = (char*) malloc (strlen (s) + 1);
1907   strcpy (__glib_assert_msg, s);
1908
1909   g_test_log (G_TEST_LOG_ERROR, s, NULL, 0, NULL);
1910   g_free (s);
1911   abort();
1912 }
1913
1914 void
1915 g_assertion_message_expr (const char     *domain,
1916                           const char     *file,
1917                           int             line,
1918                           const char     *func,
1919                           const char     *expr)
1920 {
1921   char *s = g_strconcat ("assertion failed: (", expr, ")", NULL);
1922   g_assertion_message (domain, file, line, func, s);
1923   g_free (s);
1924 }
1925
1926 void
1927 g_assertion_message_cmpnum (const char     *domain,
1928                             const char     *file,
1929                             int             line,
1930                             const char     *func,
1931                             const char     *expr,
1932                             long double     arg1,
1933                             const char     *cmp,
1934                             long double     arg2,
1935                             char            numtype)
1936 {
1937   char *s = NULL;
1938
1939   switch (numtype)
1940     {
1941     case 'i':   s = g_strdup_printf ("assertion failed (%s): (%" G_GINT64_MODIFIER "i %s %" G_GINT64_MODIFIER "i)", expr, (gint64) arg1, cmp, (gint64) arg2); break;
1942     case 'x':   s = g_strdup_printf ("assertion failed (%s): (0x%08" G_GINT64_MODIFIER "x %s 0x%08" G_GINT64_MODIFIER "x)", expr, (guint64) arg1, cmp, (guint64) arg2); break;
1943     case 'f':   s = g_strdup_printf ("assertion failed (%s): (%.9g %s %.9g)", expr, (double) arg1, cmp, (double) arg2); break;
1944       /* ideally use: floats=%.7g double=%.17g */
1945     }
1946   g_assertion_message (domain, file, line, func, s);
1947   g_free (s);
1948 }
1949
1950 void
1951 g_assertion_message_cmpstr (const char     *domain,
1952                             const char     *file,
1953                             int             line,
1954                             const char     *func,
1955                             const char     *expr,
1956                             const char     *arg1,
1957                             const char     *cmp,
1958                             const char     *arg2)
1959 {
1960   char *a1, *a2, *s, *t1 = NULL, *t2 = NULL;
1961   a1 = arg1 ? g_strconcat ("\"", t1 = g_strescape (arg1, NULL), "\"", NULL) : g_strdup ("NULL");
1962   a2 = arg2 ? g_strconcat ("\"", t2 = g_strescape (arg2, NULL), "\"", NULL) : g_strdup ("NULL");
1963   g_free (t1);
1964   g_free (t2);
1965   s = g_strdup_printf ("assertion failed (%s): (%s %s %s)", expr, a1, cmp, a2);
1966   g_free (a1);
1967   g_free (a2);
1968   g_assertion_message (domain, file, line, func, s);
1969   g_free (s);
1970 }
1971
1972 void
1973 g_assertion_message_error (const char     *domain,
1974                            const char     *file,
1975                            int             line,
1976                            const char     *func,
1977                            const char     *expr,
1978                            const GError   *error,
1979                            GQuark          error_domain,
1980                            int             error_code)
1981 {
1982   GString *gstring;
1983
1984   /* This is used by both g_assert_error() and g_assert_no_error(), so there
1985    * are three cases: expected an error but got the wrong error, expected
1986    * an error but got no error, and expected no error but got an error.
1987    */
1988
1989   gstring = g_string_new ("assertion failed ");
1990   if (error_domain)
1991       g_string_append_printf (gstring, "(%s == (%s, %d)): ", expr,
1992                               g_quark_to_string (error_domain), error_code);
1993   else
1994     g_string_append_printf (gstring, "(%s == NULL): ", expr);
1995
1996   if (error)
1997       g_string_append_printf (gstring, "%s (%s, %d)", error->message,
1998                               g_quark_to_string (error->domain), error->code);
1999   else
2000     g_string_append_printf (gstring, "%s is NULL", expr);
2001
2002   g_assertion_message (domain, file, line, func, gstring->str);
2003   g_string_free (gstring, TRUE);
2004 }
2005
2006 /**
2007  * g_strcmp0:
2008  * @str1: (allow-none): a C string or %NULL
2009  * @str2: (allow-none): another C string or %NULL
2010  *
2011  * Compares @str1 and @str2 like strcmp(). Handles %NULL
2012  * gracefully by sorting it before non-%NULL strings.
2013  * Comparing two %NULL pointers returns 0.
2014  *
2015  * Returns: an integer less than, equal to, or greater than zero, if @str1 is <, == or > than @str2.
2016  *
2017  * Since: 2.16
2018  */
2019 int
2020 g_strcmp0 (const char     *str1,
2021            const char     *str2)
2022 {
2023   if (!str1)
2024     return -(str1 != str2);
2025   if (!str2)
2026     return str1 != str2;
2027   return strcmp (str1, str2);
2028 }
2029
2030 #ifdef G_OS_UNIX
2031 static int /* 0 on success */
2032 kill_child (int  pid,
2033             int *status,
2034             int  patience)
2035 {
2036   int wr;
2037   if (patience >= 3)    /* try graceful reap */
2038     {
2039       if (waitpid (pid, status, WNOHANG) > 0)
2040         return 0;
2041     }
2042   if (patience >= 2)    /* try SIGHUP */
2043     {
2044       kill (pid, SIGHUP);
2045       if (waitpid (pid, status, WNOHANG) > 0)
2046         return 0;
2047       g_usleep (20 * 1000); /* give it some scheduling/shutdown time */
2048       if (waitpid (pid, status, WNOHANG) > 0)
2049         return 0;
2050       g_usleep (50 * 1000); /* give it some scheduling/shutdown time */
2051       if (waitpid (pid, status, WNOHANG) > 0)
2052         return 0;
2053       g_usleep (100 * 1000); /* give it some scheduling/shutdown time */
2054       if (waitpid (pid, status, WNOHANG) > 0)
2055         return 0;
2056     }
2057   if (patience >= 1)    /* try SIGTERM */
2058     {
2059       kill (pid, SIGTERM);
2060       if (waitpid (pid, status, WNOHANG) > 0)
2061         return 0;
2062       g_usleep (200 * 1000); /* give it some scheduling/shutdown time */
2063       if (waitpid (pid, status, WNOHANG) > 0)
2064         return 0;
2065       g_usleep (400 * 1000); /* give it some scheduling/shutdown time */
2066       if (waitpid (pid, status, WNOHANG) > 0)
2067         return 0;
2068     }
2069   /* finish it off */
2070   kill (pid, SIGKILL);
2071   do
2072     wr = waitpid (pid, status, 0);
2073   while (wr < 0 && errno == EINTR);
2074   return wr;
2075 }
2076 #endif
2077
2078 static inline int
2079 g_string_must_read (GString *gstring,
2080                     int      fd)
2081 {
2082 #define STRING_BUFFER_SIZE     4096
2083   char buf[STRING_BUFFER_SIZE];
2084   gssize bytes;
2085  again:
2086   bytes = read (fd, buf, sizeof (buf));
2087   if (bytes == 0)
2088     return 0; /* EOF, calling this function assumes data is available */
2089   else if (bytes > 0)
2090     {
2091       g_string_append_len (gstring, buf, bytes);
2092       return 1;
2093     }
2094   else if (bytes < 0 && errno == EINTR)
2095     goto again;
2096   else /* bytes < 0 */
2097     {
2098       g_warning ("failed to read() from child process (%d): %s", test_trap_last_pid, g_strerror (errno));
2099       return 1; /* ignore error after warning */
2100     }
2101 }
2102
2103 static inline void
2104 g_string_write_out (GString *gstring,
2105                     int      outfd,
2106                     int     *stringpos)
2107 {
2108   if (*stringpos < gstring->len)
2109     {
2110       int r;
2111       do
2112         r = write (outfd, gstring->str + *stringpos, gstring->len - *stringpos);
2113       while (r < 0 && errno == EINTR);
2114       *stringpos += MAX (r, 0);
2115     }
2116 }
2117
2118 static void
2119 test_trap_clear (void)
2120 {
2121   test_trap_last_status = 0;
2122   test_trap_last_pid = 0;
2123   g_free (test_trap_last_stdout);
2124   test_trap_last_stdout = NULL;
2125   g_free (test_trap_last_stderr);
2126   test_trap_last_stderr = NULL;
2127 }
2128
2129 #ifdef G_OS_UNIX
2130
2131 static int
2132 sane_dup2 (int fd1,
2133            int fd2)
2134 {
2135   int ret;
2136   do
2137     ret = dup2 (fd1, fd2);
2138   while (ret < 0 && errno == EINTR);
2139   return ret;
2140 }
2141
2142 static guint64
2143 test_time_stamp (void)
2144 {
2145   GTimeVal tv;
2146   guint64 stamp;
2147   g_get_current_time (&tv);
2148   stamp = tv.tv_sec;
2149   stamp = stamp * 1000000 + tv.tv_usec;
2150   return stamp;
2151 }
2152
2153 #endif
2154
2155 /**
2156  * g_test_trap_fork:
2157  * @usec_timeout:    Timeout for the forked test in micro seconds.
2158  * @test_trap_flags: Flags to modify forking behaviour.
2159  *
2160  * Fork the current test program to execute a test case that might
2161  * not return or that might abort. The forked test case is aborted
2162  * and considered failing if its run time exceeds @usec_timeout.
2163  *
2164  * The forking behavior can be configured with the #GTestTrapFlags flags.
2165  *
2166  * In the following example, the test code forks, the forked child
2167  * process produces some sample output and exits successfully.
2168  * The forking parent process then asserts successful child program
2169  * termination and validates child program outputs.
2170  *
2171  * |[
2172  *   static void
2173  *   test_fork_patterns (void)
2174  *   {
2175  *     if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
2176  *       {
2177  *         g_print ("some stdout text: somagic17\n");
2178  *         g_printerr ("some stderr text: semagic43\n");
2179  *         exit (0); /&ast; successful test run &ast;/
2180  *       }
2181  *     g_test_trap_assert_passed();
2182  *     g_test_trap_assert_stdout ("*somagic17*");
2183  *     g_test_trap_assert_stderr ("*semagic43*");
2184  *   }
2185  * ]|
2186  *
2187  * This function is implemented only on Unix platforms.
2188  *
2189  * Returns: %TRUE for the forked child and %FALSE for the executing parent process.
2190  *
2191  * Since: 2.16
2192  */
2193 gboolean
2194 g_test_trap_fork (guint64        usec_timeout,
2195                   GTestTrapFlags test_trap_flags)
2196 {
2197 #ifdef G_OS_UNIX
2198   gboolean pass_on_forked_log = FALSE;
2199   int stdout_pipe[2] = { -1, -1 };
2200   int stderr_pipe[2] = { -1, -1 };
2201   int stdtst_pipe[2] = { -1, -1 };
2202   test_trap_clear();
2203   if (pipe (stdout_pipe) < 0 || pipe (stderr_pipe) < 0 || pipe (stdtst_pipe) < 0)
2204     g_error ("failed to create pipes to fork test program: %s", g_strerror (errno));
2205   signal (SIGCHLD, SIG_DFL);
2206   test_trap_last_pid = fork ();
2207   if (test_trap_last_pid < 0)
2208     g_error ("failed to fork test program: %s", g_strerror (errno));
2209   if (test_trap_last_pid == 0)  /* child */
2210     {
2211       int fd0 = -1;
2212       close (stdout_pipe[0]);
2213       close (stderr_pipe[0]);
2214       close (stdtst_pipe[0]);
2215       if (!(test_trap_flags & G_TEST_TRAP_INHERIT_STDIN))
2216         fd0 = g_open ("/dev/null", O_RDONLY, 0);
2217       if (sane_dup2 (stdout_pipe[1], 1) < 0 || sane_dup2 (stderr_pipe[1], 2) < 0 || (fd0 >= 0 && sane_dup2 (fd0, 0) < 0))
2218         g_error ("failed to dup2() in forked test program: %s", g_strerror (errno));
2219       if (fd0 >= 3)
2220         close (fd0);
2221       if (stdout_pipe[1] >= 3)
2222         close (stdout_pipe[1]);
2223       if (stderr_pipe[1] >= 3)
2224         close (stderr_pipe[1]);
2225       test_log_fd = stdtst_pipe[1];
2226       return TRUE;
2227     }
2228   else                          /* parent */
2229     {
2230       GString *sout = g_string_new (NULL);
2231       GString *serr = g_string_new (NULL);
2232       guint64 sstamp;
2233       int soutpos = 0, serrpos = 0, wr, need_wait = TRUE;
2234       test_run_forks++;
2235       close (stdout_pipe[1]);
2236       close (stderr_pipe[1]);
2237       close (stdtst_pipe[1]);
2238       sstamp = test_time_stamp();
2239       /* read data until we get EOF on all pipes */
2240       while (stdout_pipe[0] >= 0 || stderr_pipe[0] >= 0 || stdtst_pipe[0] > 0)
2241         {
2242           fd_set fds;
2243           struct timeval tv;
2244           int ret;
2245           FD_ZERO (&fds);
2246           if (stdout_pipe[0] >= 0)
2247             FD_SET (stdout_pipe[0], &fds);
2248           if (stderr_pipe[0] >= 0)
2249             FD_SET (stderr_pipe[0], &fds);
2250           if (stdtst_pipe[0] >= 0)
2251             FD_SET (stdtst_pipe[0], &fds);
2252           tv.tv_sec = 0;
2253           tv.tv_usec = MIN (usec_timeout ? usec_timeout : 1000000, 100 * 1000); /* sleep at most 0.5 seconds to catch clock skews, etc. */
2254           ret = select (MAX (MAX (stdout_pipe[0], stderr_pipe[0]), stdtst_pipe[0]) + 1, &fds, NULL, NULL, &tv);
2255           if (ret < 0 && errno != EINTR)
2256             {
2257               g_warning ("Unexpected error in select() while reading from child process (%d): %s", test_trap_last_pid, g_strerror (errno));
2258               break;
2259             }
2260           if (stdout_pipe[0] >= 0 && FD_ISSET (stdout_pipe[0], &fds) &&
2261               g_string_must_read (sout, stdout_pipe[0]) == 0)
2262             {
2263               close (stdout_pipe[0]);
2264               stdout_pipe[0] = -1;
2265             }
2266           if (stderr_pipe[0] >= 0 && FD_ISSET (stderr_pipe[0], &fds) &&
2267               g_string_must_read (serr, stderr_pipe[0]) == 0)
2268             {
2269               close (stderr_pipe[0]);
2270               stderr_pipe[0] = -1;
2271             }
2272           if (stdtst_pipe[0] >= 0 && FD_ISSET (stdtst_pipe[0], &fds))
2273             {
2274               guint8 buffer[4096];
2275               gint l, r = read (stdtst_pipe[0], buffer, sizeof (buffer));
2276               if (r > 0 && test_log_fd > 0)
2277                 do
2278                   l = write (pass_on_forked_log ? test_log_fd : -1, buffer, r);
2279                 while (l < 0 && errno == EINTR);
2280               if (r == 0 || (r < 0 && errno != EINTR && errno != EAGAIN))
2281                 {
2282                   close (stdtst_pipe[0]);
2283                   stdtst_pipe[0] = -1;
2284                 }
2285             }
2286           if (!(test_trap_flags & G_TEST_TRAP_SILENCE_STDOUT))
2287             g_string_write_out (sout, 1, &soutpos);
2288           if (!(test_trap_flags & G_TEST_TRAP_SILENCE_STDERR))
2289             g_string_write_out (serr, 2, &serrpos);
2290           if (usec_timeout)
2291             {
2292               guint64 nstamp = test_time_stamp();
2293               int status = 0;
2294               sstamp = MIN (sstamp, nstamp); /* guard against backwards clock skews */
2295               if (usec_timeout < nstamp - sstamp)
2296                 {
2297                   /* timeout reached, need to abort the child now */
2298                   kill_child (test_trap_last_pid, &status, 3);
2299                   test_trap_last_status = 1024; /* timeout */
2300                   if (0 && WIFSIGNALED (status))
2301                     g_printerr ("%s: child timed out and received: %s\n", G_STRFUNC, g_strsignal (WTERMSIG (status)));
2302                   need_wait = FALSE;
2303                   break;
2304                 }
2305             }
2306         }
2307       if (stdout_pipe[0] != -1)
2308         close (stdout_pipe[0]);
2309       if (stderr_pipe[0] != -1)
2310         close (stderr_pipe[0]);
2311       if (stdtst_pipe[0] != -1)
2312         close (stdtst_pipe[0]);
2313       if (need_wait)
2314         {
2315           int status = 0;
2316           do
2317             wr = waitpid (test_trap_last_pid, &status, 0);
2318           while (wr < 0 && errno == EINTR);
2319           if (WIFEXITED (status)) /* normal exit */
2320             test_trap_last_status = WEXITSTATUS (status); /* 0..255 */
2321           else if (WIFSIGNALED (status))
2322             test_trap_last_status = (WTERMSIG (status) << 12); /* signalled */
2323           else /* WCOREDUMP (status) */
2324             test_trap_last_status = 512; /* coredump */
2325         }
2326       test_trap_last_stdout = g_string_free (sout, FALSE);
2327       test_trap_last_stderr = g_string_free (serr, FALSE);
2328       return FALSE;
2329     }
2330 #else
2331   g_message ("Not implemented: g_test_trap_fork");
2332
2333   return FALSE;
2334 #endif
2335 }
2336
2337 /**
2338  * g_test_trap_has_passed:
2339  *
2340  * Check the result of the last g_test_trap_fork() call.
2341  *
2342  * Returns: %TRUE if the last forked child terminated successfully.
2343  *
2344  * Since: 2.16
2345  */
2346 gboolean
2347 g_test_trap_has_passed (void)
2348 {
2349   return test_trap_last_status == 0; /* exit_status == 0 && !signal && !coredump */
2350 }
2351
2352 /**
2353  * g_test_trap_reached_timeout:
2354  *
2355  * Check the result of the last g_test_trap_fork() call.
2356  *
2357  * Returns: %TRUE if the last forked child got killed due to a fork timeout.
2358  *
2359  * Since: 2.16
2360  */
2361 gboolean
2362 g_test_trap_reached_timeout (void)
2363 {
2364   return 0 != (test_trap_last_status & 1024); /* timeout flag */
2365 }
2366
2367 void
2368 g_test_trap_assertions (const char     *domain,
2369                         const char     *file,
2370                         int             line,
2371                         const char     *func,
2372                         guint64         assertion_flags, /* 0-pass, 1-fail, 2-outpattern, 4-errpattern */
2373                         const char     *pattern)
2374 {
2375 #ifdef G_OS_UNIX
2376   gboolean must_pass = assertion_flags == 0;
2377   gboolean must_fail = assertion_flags == 1;
2378   gboolean match_result = 0 == (assertion_flags & 1);
2379   const char *stdout_pattern = (assertion_flags & 2) ? pattern : NULL;
2380   const char *stderr_pattern = (assertion_flags & 4) ? pattern : NULL;
2381   const char *match_error = match_result ? "failed to match" : "contains invalid match";
2382   if (test_trap_last_pid == 0)
2383     g_error ("child process failed to exit after g_test_trap_fork() and before g_test_trap_assert*()");
2384   if (must_pass && !g_test_trap_has_passed())
2385     {
2386       char *msg = g_strdup_printf ("child process (%d) of test trap failed unexpectedly", test_trap_last_pid);
2387       g_assertion_message (domain, file, line, func, msg);
2388       g_free (msg);
2389     }
2390   if (must_fail && g_test_trap_has_passed())
2391     {
2392       char *msg = g_strdup_printf ("child process (%d) did not fail as expected", test_trap_last_pid);
2393       g_assertion_message (domain, file, line, func, msg);
2394       g_free (msg);
2395     }
2396   if (stdout_pattern && match_result == !g_pattern_match_simple (stdout_pattern, test_trap_last_stdout))
2397     {
2398       char *msg = g_strdup_printf ("stdout of child process (%d) %s: %s", test_trap_last_pid, match_error, stdout_pattern);
2399       g_assertion_message (domain, file, line, func, msg);
2400       g_free (msg);
2401     }
2402   if (stderr_pattern && match_result == !g_pattern_match_simple (stderr_pattern, test_trap_last_stderr))
2403     {
2404       char *msg = g_strdup_printf ("stderr of child process (%d) %s: %s", test_trap_last_pid, match_error, stderr_pattern);
2405       g_assertion_message (domain, file, line, func, msg);
2406       g_free (msg);
2407     }
2408 #endif
2409 }
2410
2411 static void
2412 gstring_overwrite_int (GString *gstring,
2413                        guint    pos,
2414                        guint32  vuint)
2415 {
2416   vuint = g_htonl (vuint);
2417   g_string_overwrite_len (gstring, pos, (const gchar*) &vuint, 4);
2418 }
2419
2420 static void
2421 gstring_append_int (GString *gstring,
2422                     guint32  vuint)
2423 {
2424   vuint = g_htonl (vuint);
2425   g_string_append_len (gstring, (const gchar*) &vuint, 4);
2426 }
2427
2428 static void
2429 gstring_append_double (GString *gstring,
2430                        double   vdouble)
2431 {
2432   union { double vdouble; guint64 vuint64; } u;
2433   u.vdouble = vdouble;
2434   u.vuint64 = GUINT64_TO_BE (u.vuint64);
2435   g_string_append_len (gstring, (const gchar*) &u.vuint64, 8);
2436 }
2437
2438 static guint8*
2439 g_test_log_dump (GTestLogMsg *msg,
2440                  guint       *len)
2441 {
2442   GString *gstring = g_string_sized_new (1024);
2443   guint ui;
2444   gstring_append_int (gstring, 0);              /* message length */
2445   gstring_append_int (gstring, msg->log_type);
2446   gstring_append_int (gstring, msg->n_strings);
2447   gstring_append_int (gstring, msg->n_nums);
2448   gstring_append_int (gstring, 0);      /* reserved */
2449   for (ui = 0; ui < msg->n_strings; ui++)
2450     {
2451       guint l = strlen (msg->strings[ui]);
2452       gstring_append_int (gstring, l);
2453       g_string_append_len (gstring, msg->strings[ui], l);
2454     }
2455   for (ui = 0; ui < msg->n_nums; ui++)
2456     gstring_append_double (gstring, msg->nums[ui]);
2457   *len = gstring->len;
2458   gstring_overwrite_int (gstring, 0, *len);     /* message length */
2459   return (guint8*) g_string_free (gstring, FALSE);
2460 }
2461
2462 static inline long double
2463 net_double (const gchar **ipointer)
2464 {
2465   union { guint64 vuint64; double vdouble; } u;
2466   guint64 aligned_int64;
2467   memcpy (&aligned_int64, *ipointer, 8);
2468   *ipointer += 8;
2469   u.vuint64 = GUINT64_FROM_BE (aligned_int64);
2470   return u.vdouble;
2471 }
2472
2473 static inline guint32
2474 net_int (const gchar **ipointer)
2475 {
2476   guint32 aligned_int;
2477   memcpy (&aligned_int, *ipointer, 4);
2478   *ipointer += 4;
2479   return g_ntohl (aligned_int);
2480 }
2481
2482 static gboolean
2483 g_test_log_extract (GTestLogBuffer *tbuffer)
2484 {
2485   const gchar *p = tbuffer->data->str;
2486   GTestLogMsg msg;
2487   guint mlength;
2488   if (tbuffer->data->len < 4 * 5)
2489     return FALSE;
2490   mlength = net_int (&p);
2491   if (tbuffer->data->len < mlength)
2492     return FALSE;
2493   msg.log_type = net_int (&p);
2494   msg.n_strings = net_int (&p);
2495   msg.n_nums = net_int (&p);
2496   if (net_int (&p) == 0)
2497     {
2498       guint ui;
2499       msg.strings = g_new0 (gchar*, msg.n_strings + 1);
2500       msg.nums = g_new0 (long double, msg.n_nums);
2501       for (ui = 0; ui < msg.n_strings; ui++)
2502         {
2503           guint sl = net_int (&p);
2504           msg.strings[ui] = g_strndup (p, sl);
2505           p += sl;
2506         }
2507       for (ui = 0; ui < msg.n_nums; ui++)
2508         msg.nums[ui] = net_double (&p);
2509       if (p <= tbuffer->data->str + mlength)
2510         {
2511           g_string_erase (tbuffer->data, 0, mlength);
2512           tbuffer->msgs = g_slist_prepend (tbuffer->msgs, g_memdup (&msg, sizeof (msg)));
2513           return TRUE;
2514         }
2515     }
2516   g_free (msg.nums);
2517   g_strfreev (msg.strings);
2518   g_error ("corrupt log stream from test program");
2519   return FALSE;
2520 }
2521
2522 /**
2523  * g_test_log_buffer_new:
2524  *
2525  * Internal function for gtester to decode test log messages, no ABI guarantees provided.
2526  */
2527 GTestLogBuffer*
2528 g_test_log_buffer_new (void)
2529 {
2530   GTestLogBuffer *tb = g_new0 (GTestLogBuffer, 1);
2531   tb->data = g_string_sized_new (1024);
2532   return tb;
2533 }
2534
2535 /**
2536  * g_test_log_buffer_free:
2537  *
2538  * Internal function for gtester to free test log messages, no ABI guarantees provided.
2539  */
2540 void
2541 g_test_log_buffer_free (GTestLogBuffer *tbuffer)
2542 {
2543   g_return_if_fail (tbuffer != NULL);
2544   while (tbuffer->msgs)
2545     g_test_log_msg_free (g_test_log_buffer_pop (tbuffer));
2546   g_string_free (tbuffer->data, TRUE);
2547   g_free (tbuffer);
2548 }
2549
2550 /**
2551  * g_test_log_buffer_push:
2552  *
2553  * Internal function for gtester to decode test log messages, no ABI guarantees provided.
2554  */
2555 void
2556 g_test_log_buffer_push (GTestLogBuffer *tbuffer,
2557                         guint           n_bytes,
2558                         const guint8   *bytes)
2559 {
2560   g_return_if_fail (tbuffer != NULL);
2561   if (n_bytes)
2562     {
2563       gboolean more_messages;
2564       g_return_if_fail (bytes != NULL);
2565       g_string_append_len (tbuffer->data, (const gchar*) bytes, n_bytes);
2566       do
2567         more_messages = g_test_log_extract (tbuffer);
2568       while (more_messages);
2569     }
2570 }
2571
2572 /**
2573  * g_test_log_buffer_pop:
2574  *
2575  * Internal function for gtester to retrieve test log messages, no ABI guarantees provided.
2576  */
2577 GTestLogMsg*
2578 g_test_log_buffer_pop (GTestLogBuffer *tbuffer)
2579 {
2580   GTestLogMsg *msg = NULL;
2581   g_return_val_if_fail (tbuffer != NULL, NULL);
2582   if (tbuffer->msgs)
2583     {
2584       GSList *slist = g_slist_last (tbuffer->msgs);
2585       msg = slist->data;
2586       tbuffer->msgs = g_slist_delete_link (tbuffer->msgs, slist);
2587     }
2588   return msg;
2589 }
2590
2591 /**
2592  * g_test_log_msg_free:
2593  *
2594  * Internal function for gtester to free test log messages, no ABI guarantees provided.
2595  */
2596 void
2597 g_test_log_msg_free (GTestLogMsg *tmsg)
2598 {
2599   g_return_if_fail (tmsg != NULL);
2600   g_strfreev (tmsg->strings);
2601   g_free (tmsg->nums);
2602   g_free (tmsg);
2603 }
2604
2605 /* --- macros docs START --- */
2606 /**
2607  * g_test_add:
2608  * @testpath:  The test path for a new test case.
2609  * @Fixture:   The type of a fixture data structure.
2610  * @tdata:     Data argument for the test functions.
2611  * @fsetup:    The function to set up the fixture data.
2612  * @ftest:     The actual test function.
2613  * @fteardown: The function to tear down the fixture data.
2614  *
2615  * Hook up a new test case at @testpath, similar to g_test_add_func().
2616  * A fixture data structure with setup and teardown function may be provided
2617  * though, similar to g_test_create_case().
2618  * g_test_add() is implemented as a macro, so that the fsetup(), ftest() and
2619  * fteardown() callbacks can expect a @Fixture pointer as first argument in
2620  * a type safe manner.
2621  *
2622  * Since: 2.16
2623  **/
2624 /* --- macros docs END --- */