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