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