1 /* GLib testing utilities
2 * Copyright (C) 2007 Imendio AB
3 * Authors: Tim Janik, Sven Herzberg
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.
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.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
23 #include "gtestutils.h"
24 #include "gmessages-private.h"
25 #include "gfileutils.h"
27 #include <sys/types.h>
32 #include <glib/gstdio.h>
40 #ifdef HAVE_SYS_RESOURCE_H
41 #include <sys/resource.h>
49 #ifdef HAVE_SYS_SELECT_H
50 #include <sys/select.h>
51 #endif /* HAVE_SYS_SELECT_H */
56 #include "gstrfuncs.h"
60 #include "glib-private.h"
61 #include "gmessages-private.h"
67 * @short_description: a test framework
68 * @see_also: <link linkend="gtester">gtester</link>,
69 * <link linkend="gtester-report">gtester-report</link>
71 * GLib provides a framework for writing and maintaining unit tests
72 * in parallel to the code they are testing. The API is designed according
73 * to established concepts found in the other test frameworks (JUnit, NUnit,
74 * RUnit), which in turn is based on smalltalk unit testing concepts.
78 * <term>Test case</term>
79 * <listitem>Tests (test methods) are grouped together with their
80 * fixture into test cases.</listitem>
83 * <term>Fixture</term>
84 * <listitem>A test fixture consists of fixture data and setup and
85 * teardown methods to establish the environment for the test
86 * functions. We use fresh fixtures, i.e. fixtures are newly set
87 * up and torn down around each test invocation to avoid dependencies
88 * between tests.</listitem>
91 * <term>Test suite</term>
92 * <listitem>Test cases can be grouped into test suites, to allow
93 * subsets of the available tests to be run. Test suites can be
94 * grouped into other test suites as well.</listitem>
97 * The API is designed to handle creation and registration of test suites
98 * and test cases implicitly. A simple call like
100 * g_test_add_func ("/misc/assertions", test_assertions);
102 * creates a test suite called "misc" with a single test case named
103 * "assertions", which consists of running the test_assertions function.
105 * In addition to the traditional g_assert(), the test framework provides
106 * an extended set of assertions for string and numerical comparisons:
107 * g_assert_cmpfloat(), g_assert_cmpint(), g_assert_cmpuint(),
108 * g_assert_cmphex(), g_assert_cmpstr(). The advantage of these variants
109 * over plain g_assert() is that the assertion messages can be more
110 * elaborate, and include the values of the compared entities.
112 * GLib ships with two utilities called gtester and gtester-report to
113 * facilitate running tests and producing nicely formatted test reports.
117 * g_test_initialized:
119 * Returns %TRUE if g_test_init() has been called.
121 * Returns: %TRUE if g_test_init() has been called.
129 * Returns %TRUE if tests are run in quick mode.
130 * Exactly one of g_test_quick() and g_test_slow() is active in any run;
131 * there is no "medium speed".
133 * Returns: %TRUE if in quick mode
139 * Returns %TRUE if tests are run in slow mode.
140 * Exactly one of g_test_quick() and g_test_slow() is active in any run;
141 * there is no "medium speed".
143 * Returns: the opposite of g_test_quick()
149 * Returns %TRUE if tests are run in thorough mode, equivalent to
152 * Returns: the same thing as g_test_slow()
158 * Returns %TRUE if tests are run in performance mode.
160 * Returns: %TRUE if in performance mode
166 * Returns %TRUE if tests may provoke assertions and other formally-undefined
167 * behaviour, to verify that appropriate warnings are given. It might, in some
168 * cases, be useful to turn this off if running tests under valgrind.
170 * Returns: %TRUE if tests may provoke programming errors
176 * Returns %TRUE if tests are run in verbose mode.
177 * The default is neither g_test_verbose() nor g_test_quiet().
179 * Returns: %TRUE if in verbose mode
185 * Returns %TRUE if tests are run in quiet mode.
186 * The default is neither g_test_verbose() nor g_test_quiet().
188 * Returns: %TRUE if in quiet mode
192 * g_test_queue_unref:
193 * @gobject: the object to unref
195 * Enqueue an object to be released with g_object_unref() during
196 * the next teardown phase. This is equivalent to calling
197 * g_test_queue_destroy() with a destroy callback of g_object_unref().
204 * @G_TEST_TRAP_SILENCE_STDOUT: Redirect stdout of the test child to
205 * <filename>/dev/null</filename> so it cannot be observed on the
206 * console during test runs. The actual output is still captured
207 * though to allow later tests with g_test_trap_assert_stdout().
208 * @G_TEST_TRAP_SILENCE_STDERR: Redirect stderr of the test child to
209 * <filename>/dev/null</filename> so it cannot be observed on the
210 * console during test runs. The actual output is still captured
211 * though to allow later tests with g_test_trap_assert_stderr().
212 * @G_TEST_TRAP_INHERIT_STDIN: If this flag is given, stdin of the
213 * child process is shared with stdin of its parent process.
214 * It is redirected to <filename>/dev/null</filename> otherwise.
216 * Test traps are guards around forked tests.
217 * These flags determine what traps to set.
219 * Deprecated: #GTestTrapFlags is used only with g_test_trap_fork(),
220 * which is deprecated. g_test_trap_subprocess() uses
221 * #GTestTrapSubprocessFlags.
225 * GTestSubprocessFlags:
226 * @G_TEST_SUBPROCESS_INHERIT_STDIN: If this flag is given, the child
227 * process will inherit the parent's stdin. Otherwise, the child's
228 * stdin is redirected to <filename>/dev/null</filename>.
229 * @G_TEST_SUBPROCESS_INHERIT_STDOUT: If this flag is given, the child
230 * process will inherit the parent's stdout. Otherwise, the child's
231 * stdout will not be visible, but it will be captured to allow
232 * later tests with g_test_trap_assert_stdout().
233 * @G_TEST_SUBPROCESS_INHERIT_STDERR: If this flag is given, the child
234 * process will inherit the parent's stderr. Otherwise, the child's
235 * stderr will not be visible, but it will be captured to allow
236 * later tests with g_test_trap_assert_stderr().
238 * Flags to pass to g_test_trap_subprocess() to control input and output.
240 * Note that in contrast with g_test_trap_fork(), the default is to
241 * not show stdout and stderr.
245 * g_test_trap_assert_passed:
247 * Assert that the last test subprocess passed.
248 * See g_test_trap_subprocess().
254 * g_test_trap_assert_failed:
256 * Assert that the last test subprocess failed.
257 * See g_test_trap_subprocess().
259 * This is sometimes used to test situations that are formally considered to
260 * be undefined behaviour, like inputs that fail a g_return_if_fail()
261 * check. In these situations you should skip the entire test, including the
262 * call to g_test_trap_subprocess(), unless g_test_undefined() returns %TRUE
263 * to indicate that undefined behaviour may be tested.
269 * g_test_trap_assert_stdout:
270 * @soutpattern: a glob-style
271 * <link linkend="glib-Glob-style-pattern-matching">pattern</link>
273 * Assert that the stdout output of the last test subprocess matches
274 * @soutpattern. See g_test_trap_subprocess().
280 * g_test_trap_assert_stdout_unmatched:
281 * @soutpattern: a glob-style
282 * <link linkend="glib-Glob-style-pattern-matching">pattern</link>
284 * Assert that the stdout output of the last test subprocess
285 * does not match @soutpattern. See g_test_trap_subprocess().
291 * g_test_trap_assert_stderr:
292 * @serrpattern: a glob-style
293 * <link linkend="glib-Glob-style-pattern-matching">pattern</link>
295 * Assert that the stderr output of the last test subprocess
296 * matches @serrpattern. See g_test_trap_subprocess().
298 * This is sometimes used to test situations that are formally
299 * considered to be undefined behaviour, like code that hits a
300 * g_assert() or g_error(). In these situations you should skip the
301 * entire test, including the call to g_test_trap_subprocess(), unless
302 * g_test_undefined() returns %TRUE to indicate that undefined
303 * behaviour may be tested.
309 * g_test_trap_assert_stderr_unmatched:
310 * @serrpattern: a glob-style
311 * <link linkend="glib-Glob-style-pattern-matching">pattern</link>
313 * Assert that the stderr output of the last test subprocess
314 * does not match @serrpattern. See g_test_trap_subprocess().
322 * Get a reproducible random bit (0 or 1), see g_test_rand_int()
323 * for details on test case random numbers.
330 * @expr: the expression to check
332 * Debugging macro to terminate the application if the assertion
333 * fails. If the assertion fails (i.e. the expression is not true),
334 * an error message is logged and the application is terminated.
336 * The macro can be turned off in final releases of code by defining
337 * <envar>G_DISABLE_ASSERT</envar> when compiling the application.
341 * g_assert_not_reached:
343 * Debugging macro to terminate the application if it is ever
344 * reached. If it is reached, an error message is logged and the
345 * application is terminated.
347 * The macro can be turned off in final releases of code by defining
348 * <envar>G_DISABLE_ASSERT</envar> when compiling the application.
353 * @s1: a string (may be %NULL)
354 * @cmp: The comparison operator to use.
355 * One of ==, !=, <, >, <=, >=.
356 * @s2: another string (may be %NULL)
358 * Debugging macro to terminate the application with a warning
359 * message if a string comparison fails. The strings are compared
362 * The effect of <literal>g_assert_cmpstr (s1, op, s2)</literal> is
363 * the same as <literal>g_assert (g_strcmp0 (s1, s2) op 0)</literal>.
364 * The advantage of this macro is that it can produce a message that
365 * includes the actual values of @s1 and @s2.
368 * g_assert_cmpstr (mystring, ==, "fubar");
377 * @cmp: The comparison operator to use.
378 * One of ==, !=, <, >, <=, >=.
379 * @n2: another integer
381 * Debugging macro to terminate the application with a warning
382 * message if an integer comparison fails.
384 * The effect of <literal>g_assert_cmpint (n1, op, n2)</literal> is
385 * the same as <literal>g_assert (n1 op n2)</literal>. The advantage
386 * of this macro is that it can produce a message that includes the
387 * actual values of @n1 and @n2.
394 * @n1: an unsigned integer
395 * @cmp: The comparison operator to use.
396 * One of ==, !=, <, >, <=, >=.
397 * @n2: another unsigned integer
399 * Debugging macro to terminate the application with a warning
400 * message if an unsigned integer comparison fails.
402 * The effect of <literal>g_assert_cmpuint (n1, op, n2)</literal> is
403 * the same as <literal>g_assert (n1 op n2)</literal>. The advantage
404 * of this macro is that it can produce a message that includes the
405 * actual values of @n1 and @n2.
412 * @n1: an unsigned integer
413 * @cmp: The comparison operator to use.
414 * One of ==, !=, <, >, <=, >=.
415 * @n2: another unsigned integer
417 * Debugging macro to terminate the application with a warning
418 * message if an unsigned integer comparison fails.
420 * This is a variant of g_assert_cmpuint() that displays the numbers
421 * in hexadecimal notation in the message.
428 * @n1: an floating point number
429 * @cmp: The comparison operator to use.
430 * One of ==, !=, <, >, <=, >=.
431 * @n2: another floating point number
433 * Debugging macro to terminate the application with a warning
434 * message if a floating point number comparison fails.
436 * The effect of <literal>g_assert_cmpfloat (n1, op, n2)</literal> is
437 * the same as <literal>g_assert (n1 op n2)</literal>. The advantage
438 * of this macro is that it can produce a message that includes the
439 * actual values of @n1 and @n2.
446 * @err: a #GError, possibly %NULL
448 * Debugging macro to terminate the application with a warning
449 * message if a method has returned a #GError.
451 * The effect of <literal>g_assert_no_error (err)</literal> is
452 * the same as <literal>g_assert (err == NULL)</literal>. The advantage
453 * of this macro is that it can produce a message that includes
454 * the error message and code.
461 * @err: a #GError, possibly %NULL
462 * @dom: the expected error domain (a #GQuark)
463 * @c: the expected error code
465 * Debugging macro to terminate the application with a warning
466 * message if a method has not returned the correct #GError.
468 * The effect of <literal>g_assert_error (err, dom, c)</literal> is
469 * the same as <literal>g_assert (err != NULL && err->domain
470 * == dom && err->code == c)</literal>. The advantage of this
471 * macro is that it can produce a message that includes the incorrect
472 * error message and code.
474 * This can only be used to test for a specific error. If you want to
475 * test that @err is set, but don't care what it's set to, just use
476 * <literal>g_assert (err != NULL)</literal>
484 * An opaque structure representing a test case.
490 * An opaque structure representing a test suite.
494 /* Global variable for storing assertion messages; this is the counterpart to
495 * glibc's (private) __abort_msg variable, and allows developers and crash
496 * analysis systems like Apport and ABRT to fish out assertion messages from
497 * core dumps, instead of having to catch them on screen output.
499 char *__glib_assert_msg = NULL;
501 /* --- constants --- */
502 #define G_TEST_STATUS_TIMED_OUT 1024
504 /* --- structures --- */
509 void (*fixture_setup) (void*, gconstpointer);
510 void (*fixture_test) (void*, gconstpointer);
511 void (*fixture_teardown) (void*, gconstpointer);
520 typedef struct DestroyEntry DestroyEntry;
524 GDestroyNotify destroy_func;
525 gpointer destroy_data;
528 /* --- prototypes --- */
529 static void test_run_seed (const gchar *rseed);
530 static void test_trap_clear (void);
531 static guint8* g_test_log_dump (GTestLogMsg *msg,
533 static void gtest_default_log_handler (const gchar *log_domain,
534 GLogLevelFlags log_level,
535 const gchar *message,
536 gpointer unused_data);
539 /* --- variables --- */
540 static int test_log_fd = -1;
541 static gboolean test_mode_fatal = TRUE;
542 static gboolean g_test_run_once = TRUE;
543 static gboolean test_run_list = FALSE;
544 static gchar *test_run_seedstr = NULL;
545 static GRand *test_run_rand = NULL;
546 static gchar *test_run_name = "";
547 static guint test_run_forks = 0;
548 static guint test_run_count = 0;
549 static guint test_run_success = FALSE;
550 static guint test_skip_count = 0;
551 static GTimer *test_user_timer = NULL;
552 static double test_user_stamp = 0;
553 static GSList *test_paths = NULL;
554 static GSList *test_paths_skipped = NULL;
555 static GTestSuite *test_suite_root = NULL;
556 static int test_trap_last_status = 0;
557 static GPid test_trap_last_pid = 0;
558 static char *test_trap_last_subprocess = NULL;
559 static char *test_trap_last_stdout = NULL;
560 static char *test_trap_last_stderr = NULL;
561 static char *test_uri_base = NULL;
562 static gboolean test_debug_log = FALSE;
563 static DestroyEntry *test_destroy_queue = NULL;
564 static char *test_argv0 = NULL;
565 static char *test_initial_cwd = NULL;
566 static gboolean test_in_subprocess = FALSE;
567 static GTestConfig mutable_test_config_vars = {
568 FALSE, /* test_initialized */
569 TRUE, /* test_quick */
570 FALSE, /* test_perf */
571 FALSE, /* test_verbose */
572 FALSE, /* test_quiet */
573 TRUE, /* test_undefined */
575 const GTestConfig * const g_test_config_vars = &mutable_test_config_vars;
577 /* --- functions --- */
579 g_test_log_type_name (GTestLogType log_type)
583 case G_TEST_LOG_NONE: return "none";
584 case G_TEST_LOG_ERROR: return "error";
585 case G_TEST_LOG_START_BINARY: return "binary";
586 case G_TEST_LOG_LIST_CASE: return "list";
587 case G_TEST_LOG_SKIP_CASE: return "skip";
588 case G_TEST_LOG_START_CASE: return "start";
589 case G_TEST_LOG_STOP_CASE: return "stop";
590 case G_TEST_LOG_MIN_RESULT: return "minperf";
591 case G_TEST_LOG_MAX_RESULT: return "maxperf";
592 case G_TEST_LOG_MESSAGE: return "message";
598 g_test_log_send (guint n_bytes,
599 const guint8 *buffer)
601 if (test_log_fd >= 0)
605 r = write (test_log_fd, buffer, n_bytes);
606 while (r < 0 && errno == EINTR);
610 GTestLogBuffer *lbuffer = g_test_log_buffer_new ();
613 g_test_log_buffer_push (lbuffer, n_bytes, buffer);
614 msg = g_test_log_buffer_pop (lbuffer);
615 g_warn_if_fail (msg != NULL);
616 g_warn_if_fail (lbuffer->data->len == 0);
617 g_test_log_buffer_free (lbuffer);
619 g_printerr ("{*LOG(%s)", g_test_log_type_name (msg->log_type));
620 for (ui = 0; ui < msg->n_strings; ui++)
621 g_printerr (":{%s}", msg->strings[ui]);
625 for (ui = 0; ui < msg->n_nums; ui++)
627 if ((long double) (long) msg->nums[ui] == msg->nums[ui])
628 g_printerr ("%s%ld", ui ? ";" : "", (long) msg->nums[ui]);
630 g_printerr ("%s%.16g", ui ? ";" : "", (double) msg->nums[ui]);
634 g_printerr (":LOG*}\n");
635 g_test_log_msg_free (msg);
640 g_test_log (GTestLogType lbit,
641 const gchar *string1,
642 const gchar *string2,
646 gboolean fail = lbit == G_TEST_LOG_STOP_CASE && largs[0] != 0;
648 gchar *astrings[3] = { NULL, NULL, NULL };
654 case G_TEST_LOG_START_BINARY:
655 if (g_test_verbose())
656 g_print ("GTest: random seed: %s\n", string2);
658 case G_TEST_LOG_STOP_CASE:
659 if (g_test_verbose())
660 g_print ("GTest: result: %s\n", fail ? "FAIL" : "OK");
661 else if (!g_test_quiet())
662 g_print ("%s\n", fail ? "FAIL" : "OK");
663 if (fail && test_mode_fatal)
666 case G_TEST_LOG_MIN_RESULT:
667 if (g_test_verbose())
668 g_print ("(MINPERF:%s)\n", string1);
670 case G_TEST_LOG_MAX_RESULT:
671 if (g_test_verbose())
672 g_print ("(MAXPERF:%s)\n", string1);
674 case G_TEST_LOG_MESSAGE:
675 case G_TEST_LOG_ERROR:
676 if (g_test_verbose())
677 g_print ("(MSG: %s)\n", string1);
683 msg.n_strings = (string1 != NULL) + (string1 && string2);
684 msg.strings = astrings;
685 astrings[0] = (gchar*) string1;
686 astrings[1] = astrings[0] ? (gchar*) string2 : NULL;
689 dbuffer = g_test_log_dump (&msg, &dbufferlen);
690 g_test_log_send (dbufferlen, dbuffer);
695 case G_TEST_LOG_START_CASE:
696 if (g_test_verbose())
697 g_print ("GTest: run: %s\n", string1);
698 else if (!g_test_quiet())
699 g_print ("%s: ", string1);
705 /* We intentionally parse the command line without GOptionContext
706 * because otherwise you would never be able to test it.
709 parse_args (gint *argc_p,
712 guint argc = *argc_p;
713 gchar **argv = *argv_p;
716 test_argv0 = argv[0];
717 test_initial_cwd = g_get_current_dir ();
719 /* parse known args */
720 for (i = 1; i < argc; i++)
722 if (strcmp (argv[i], "--g-fatal-warnings") == 0)
724 GLogLevelFlags fatal_mask = (GLogLevelFlags) g_log_set_always_fatal ((GLogLevelFlags) G_LOG_FATAL_MASK);
725 fatal_mask = (GLogLevelFlags) (fatal_mask | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL);
726 g_log_set_always_fatal (fatal_mask);
729 else if (strcmp (argv[i], "--keep-going") == 0 ||
730 strcmp (argv[i], "-k") == 0)
732 test_mode_fatal = FALSE;
735 else if (strcmp (argv[i], "--debug-log") == 0)
737 test_debug_log = TRUE;
740 else if (strcmp ("--GTestLogFD", argv[i]) == 0 || strncmp ("--GTestLogFD=", argv[i], 13) == 0)
742 gchar *equal = argv[i] + 12;
744 test_log_fd = g_ascii_strtoull (equal + 1, NULL, 0);
745 else if (i + 1 < argc)
748 test_log_fd = g_ascii_strtoull (argv[i], NULL, 0);
752 else if (strcmp ("--GTestSkipCount", argv[i]) == 0 || strncmp ("--GTestSkipCount=", argv[i], 17) == 0)
754 gchar *equal = argv[i] + 16;
756 test_skip_count = g_ascii_strtoull (equal + 1, NULL, 0);
757 else if (i + 1 < argc)
760 test_skip_count = g_ascii_strtoull (argv[i], NULL, 0);
764 else if (strcmp ("--GTestSubprocess", argv[i]) == 0)
766 test_in_subprocess = TRUE;
767 /* We typically expect these child processes to crash, and some
768 * tests spawn a *lot* of them. Avoid spamming system crash
769 * collection programs such as systemd-coredump and abrt.
771 #ifdef HAVE_SYS_RESOURCE_H
773 struct rlimit limit = { 0, 0 };
774 (void) setrlimit (RLIMIT_CORE, &limit);
777 _g_log_set_exit_on_fatal ();
780 else if (strcmp ("-p", argv[i]) == 0 || strncmp ("-p=", argv[i], 3) == 0)
782 gchar *equal = argv[i] + 2;
784 test_paths = g_slist_prepend (test_paths, equal + 1);
785 else if (i + 1 < argc)
788 test_paths = g_slist_prepend (test_paths, argv[i]);
792 else if (strcmp ("-s", argv[i]) == 0 || strncmp ("-s=", argv[i], 3) == 0)
794 gchar *equal = argv[i] + 2;
796 test_paths_skipped = g_slist_prepend (test_paths_skipped, equal + 1);
797 else if (i + 1 < argc)
800 test_paths_skipped = g_slist_prepend (test_paths_skipped, argv[i]);
804 else if (strcmp ("-m", argv[i]) == 0 || strncmp ("-m=", argv[i], 3) == 0)
806 gchar *equal = argv[i] + 2;
807 const gchar *mode = "";
810 else if (i + 1 < argc)
815 if (strcmp (mode, "perf") == 0)
816 mutable_test_config_vars.test_perf = TRUE;
817 else if (strcmp (mode, "slow") == 0)
818 mutable_test_config_vars.test_quick = FALSE;
819 else if (strcmp (mode, "thorough") == 0)
820 mutable_test_config_vars.test_quick = FALSE;
821 else if (strcmp (mode, "quick") == 0)
823 mutable_test_config_vars.test_quick = TRUE;
824 mutable_test_config_vars.test_perf = FALSE;
826 else if (strcmp (mode, "undefined") == 0)
827 mutable_test_config_vars.test_undefined = TRUE;
828 else if (strcmp (mode, "no-undefined") == 0)
829 mutable_test_config_vars.test_undefined = FALSE;
831 g_error ("unknown test mode: -m %s", mode);
834 else if (strcmp ("-q", argv[i]) == 0 || strcmp ("--quiet", argv[i]) == 0)
836 mutable_test_config_vars.test_quiet = TRUE;
837 mutable_test_config_vars.test_verbose = FALSE;
840 else if (strcmp ("--verbose", argv[i]) == 0)
842 mutable_test_config_vars.test_quiet = FALSE;
843 mutable_test_config_vars.test_verbose = TRUE;
846 else if (strcmp ("-l", argv[i]) == 0)
848 test_run_list = TRUE;
851 else if (strcmp ("--seed", argv[i]) == 0 || strncmp ("--seed=", argv[i], 7) == 0)
853 gchar *equal = argv[i] + 6;
855 test_run_seedstr = equal + 1;
856 else if (i + 1 < argc)
859 test_run_seedstr = argv[i];
863 else if (strcmp ("-?", argv[i]) == 0 ||
864 strcmp ("-h", argv[i]) == 0 ||
865 strcmp ("--help", argv[i]) == 0)
868 " %s [OPTION...]\n\n"
870 " -h, --help Show help options\n\n"
872 " --g-fatal-warnings Make all warnings fatal\n"
873 " -l List test cases available in a test executable\n"
874 " -m {perf|slow|thorough|quick} Execute tests according to mode\n"
875 " -m {undefined|no-undefined} Execute tests according to mode\n"
876 " -p TESTPATH Only start test cases matching TESTPATH\n"
877 " -s TESTPATH Skip all tests matching TESTPATH\n"
878 " -seed=SEEDSTRING Start tests with random seed SEEDSTRING\n"
879 " --debug-log debug test logging output\n"
880 " -q, --quiet Run tests quietly\n"
881 " --verbose Run tests verbosely\n",
888 for (i = 1; i < argc; i++)
900 * @argc: Address of the @argc parameter of the main() function.
901 * Changed if any arguments were handled.
902 * @argv: Address of the @argv parameter of main().
903 * Any parameters understood by g_test_init() stripped before return.
904 * @...: Reserved for future extension. Currently, you must pass %NULL.
906 * Initialize the GLib testing framework, e.g. by seeding the
907 * test random number generator, the name for g_get_prgname()
908 * and parsing test related command line args.
909 * So far, the following arguments are understood:
912 * <term><option>-l</option></term>
914 * List test cases available in a test executable.
918 * <term><option>--seed=<replaceable>RANDOMSEED</replaceable></option></term>
920 * Provide a random seed to reproduce test runs using random numbers.
924 * <term><option>--verbose</option></term>
925 * <listitem><para>Run tests verbosely.</para></listitem>
928 * <term><option>-q</option>, <option>--quiet</option></term>
929 * <listitem><para>Run tests quietly.</para></listitem>
932 * <term><option>-p <replaceable>TESTPATH</replaceable></option></term>
934 * Execute all tests matching <replaceable>TESTPATH</replaceable>.
935 * This can also be used to force a test to run that would otherwise
936 * be skipped (ie, a test whose name contains "/subprocess").
940 * <term><option>-m {perf|slow|thorough|quick|undefined|no-undefined}</option></term>
942 * Execute tests according to these test modes:
947 * Performance tests, may take long and report results.
951 * <term>slow, thorough</term>
953 * Slow and thorough tests, may take quite long and
960 * Quick tests, should run really quickly and give good coverage.
964 * <term>undefined</term>
966 * Tests for undefined behaviour, may provoke programming errors
967 * under g_test_trap_subprocess() or g_test_expect_messages() to check
968 * that appropriate assertions or warnings are given
972 * <term>no-undefined</term>
974 * Avoid tests for undefined behaviour
981 * <term><option>--debug-log</option></term>
982 * <listitem><para>Debug test logging output.</para></listitem>
989 g_test_init (int *argc,
993 static char seedstr[4 + 4 * 8 + 1];
996 /* make warnings and criticals fatal for all test programs */
997 GLogLevelFlags fatal_mask = (GLogLevelFlags) g_log_set_always_fatal ((GLogLevelFlags) G_LOG_FATAL_MASK);
998 fatal_mask = (GLogLevelFlags) (fatal_mask | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL);
999 g_log_set_always_fatal (fatal_mask);
1000 /* check caller args */
1001 g_return_if_fail (argc != NULL);
1002 g_return_if_fail (argv != NULL);
1003 g_return_if_fail (g_test_config_vars->test_initialized == FALSE);
1004 mutable_test_config_vars.test_initialized = TRUE;
1006 va_start (args, argv);
1007 vararg1 = va_arg (args, gpointer); /* reserved for future extensions */
1009 g_return_if_fail (vararg1 == NULL);
1011 /* setup random seed string */
1012 g_snprintf (seedstr, sizeof (seedstr), "R02S%08x%08x%08x%08x", g_random_int(), g_random_int(), g_random_int(), g_random_int());
1013 test_run_seedstr = seedstr;
1015 /* parse args, sets up mode, changes seed, etc. */
1016 parse_args (argc, argv);
1017 if (!g_get_prgname())
1018 g_set_prgname ((*argv)[0]);
1020 /* verify GRand reliability, needed for reliable seeds */
1023 GRand *rg = g_rand_new_with_seed (0xc8c49fb6);
1024 guint32 t1 = g_rand_int (rg), t2 = g_rand_int (rg), t3 = g_rand_int (rg), t4 = g_rand_int (rg);
1025 /* g_print ("GRand-current: 0x%x 0x%x 0x%x 0x%x\n", t1, t2, t3, t4); */
1026 if (t1 != 0xfab39f9b || t2 != 0xb948fb0e || t3 != 0x3d31be26 || t4 != 0x43a19d66)
1027 g_warning ("random numbers are not GRand-2.2 compatible, seeds may be broken (check $G_RANDOM_VERSION)");
1031 /* check rand seed */
1032 test_run_seed (test_run_seedstr);
1034 /* report program start */
1035 g_log_set_default_handler (gtest_default_log_handler, NULL);
1036 g_test_log (G_TEST_LOG_START_BINARY, g_get_prgname(), test_run_seedstr, 0, NULL);
1040 test_run_seed (const gchar *rseed)
1042 guint seed_failed = 0;
1044 g_rand_free (test_run_rand);
1045 test_run_rand = NULL;
1046 while (strchr (" \t\v\r\n\f", *rseed))
1048 if (strncmp (rseed, "R02S", 4) == 0) /* seed for random generator 02 (GRand-2.2) */
1050 const char *s = rseed + 4;
1051 if (strlen (s) >= 32) /* require 4 * 8 chars */
1053 guint32 seedarray[4];
1054 gchar *p, hexbuf[9] = { 0, };
1055 memcpy (hexbuf, s + 0, 8);
1056 seedarray[0] = g_ascii_strtoull (hexbuf, &p, 16);
1057 seed_failed += p != NULL && *p != 0;
1058 memcpy (hexbuf, s + 8, 8);
1059 seedarray[1] = g_ascii_strtoull (hexbuf, &p, 16);
1060 seed_failed += p != NULL && *p != 0;
1061 memcpy (hexbuf, s + 16, 8);
1062 seedarray[2] = g_ascii_strtoull (hexbuf, &p, 16);
1063 seed_failed += p != NULL && *p != 0;
1064 memcpy (hexbuf, s + 24, 8);
1065 seedarray[3] = g_ascii_strtoull (hexbuf, &p, 16);
1066 seed_failed += p != NULL && *p != 0;
1069 test_run_rand = g_rand_new_with_seed_array (seedarray, 4);
1074 g_error ("Unknown or invalid random seed: %s", rseed);
1080 * Get a reproducible random integer number.
1082 * The random numbers generated by the g_test_rand_*() family of functions
1083 * change with every new test program start, unless the --seed option is
1084 * given when starting test programs.
1086 * For individual test cases however, the random number generator is
1087 * reseeded, to avoid dependencies between tests and to make --seed
1088 * effective for all test cases.
1090 * Returns: a random number from the seeded random number generator.
1095 g_test_rand_int (void)
1097 return g_rand_int (test_run_rand);
1101 * g_test_rand_int_range:
1102 * @begin: the minimum value returned by this function
1103 * @end: the smallest value not to be returned by this function
1105 * Get a reproducible random integer number out of a specified range,
1106 * see g_test_rand_int() for details on test case random numbers.
1108 * Returns: a number with @begin <= number < @end.
1113 g_test_rand_int_range (gint32 begin,
1116 return g_rand_int_range (test_run_rand, begin, end);
1120 * g_test_rand_double:
1122 * Get a reproducible random floating point number,
1123 * see g_test_rand_int() for details on test case random numbers.
1125 * Returns: a random number from the seeded random number generator.
1130 g_test_rand_double (void)
1132 return g_rand_double (test_run_rand);
1136 * g_test_rand_double_range:
1137 * @range_start: the minimum value returned by this function
1138 * @range_end: the minimum value not returned by this function
1140 * Get a reproducible random floating pointer number out of a specified range,
1141 * see g_test_rand_int() for details on test case random numbers.
1143 * Returns: a number with @range_start <= number < @range_end.
1148 g_test_rand_double_range (double range_start,
1151 return g_rand_double_range (test_run_rand, range_start, range_end);
1155 * g_test_timer_start:
1157 * Start a timing test. Call g_test_timer_elapsed() when the task is supposed
1158 * to be done. Call this function again to restart the timer.
1163 g_test_timer_start (void)
1165 if (!test_user_timer)
1166 test_user_timer = g_timer_new();
1167 test_user_stamp = 0;
1168 g_timer_start (test_user_timer);
1172 * g_test_timer_elapsed:
1174 * Get the time since the last start of the timer with g_test_timer_start().
1176 * Returns: the time since the last start of the timer, as a double
1181 g_test_timer_elapsed (void)
1183 test_user_stamp = test_user_timer ? g_timer_elapsed (test_user_timer, NULL) : 0;
1184 return test_user_stamp;
1188 * g_test_timer_last:
1190 * Report the last result of g_test_timer_elapsed().
1192 * Returns: the last result of g_test_timer_elapsed(), as a double
1197 g_test_timer_last (void)
1199 return test_user_stamp;
1203 * g_test_minimized_result:
1204 * @minimized_quantity: the reported value
1205 * @format: the format string of the report message
1206 * @...: arguments to pass to the printf() function
1208 * Report the result of a performance or measurement test.
1209 * The test should generally strive to minimize the reported
1210 * quantities (smaller values are better than larger ones),
1211 * this and @minimized_quantity can determine sorting
1212 * order for test result reports.
1217 g_test_minimized_result (double minimized_quantity,
1221 long double largs = minimized_quantity;
1225 va_start (args, format);
1226 buffer = g_strdup_vprintf (format, args);
1229 g_test_log (G_TEST_LOG_MIN_RESULT, buffer, NULL, 1, &largs);
1234 * g_test_maximized_result:
1235 * @maximized_quantity: the reported value
1236 * @format: the format string of the report message
1237 * @...: arguments to pass to the printf() function
1239 * Report the result of a performance or measurement test.
1240 * The test should generally strive to maximize the reported
1241 * quantities (larger values are better than smaller ones),
1242 * this and @maximized_quantity can determine sorting
1243 * order for test result reports.
1248 g_test_maximized_result (double maximized_quantity,
1252 long double largs = maximized_quantity;
1256 va_start (args, format);
1257 buffer = g_strdup_vprintf (format, args);
1260 g_test_log (G_TEST_LOG_MAX_RESULT, buffer, NULL, 1, &largs);
1266 * @format: the format string
1267 * @...: printf-like arguments to @format
1269 * Add a message to the test report.
1274 g_test_message (const char *format,
1280 va_start (args, format);
1281 buffer = g_strdup_vprintf (format, args);
1284 g_test_log (G_TEST_LOG_MESSAGE, buffer, NULL, 0, NULL);
1290 * @uri_pattern: the base pattern for bug URIs
1292 * Specify the base URI for bug reports.
1294 * The base URI is used to construct bug report messages for
1295 * g_test_message() when g_test_bug() is called.
1296 * Calling this function outside of a test case sets the
1297 * default base URI for all test cases. Calling it from within
1298 * a test case changes the base URI for the scope of the test
1300 * Bug URIs are constructed by appending a bug specific URI
1301 * portion to @uri_pattern, or by replacing the special string
1302 * '\%s' within @uri_pattern if that is present.
1307 g_test_bug_base (const char *uri_pattern)
1309 g_free (test_uri_base);
1310 test_uri_base = g_strdup (uri_pattern);
1315 * @bug_uri_snippet: Bug specific bug tracker URI portion.
1317 * This function adds a message to test reports that
1318 * associates a bug URI with a test case.
1319 * Bug URIs are constructed from a base URI set with g_test_bug_base()
1320 * and @bug_uri_snippet.
1325 g_test_bug (const char *bug_uri_snippet)
1329 g_return_if_fail (test_uri_base != NULL);
1330 g_return_if_fail (bug_uri_snippet != NULL);
1332 c = strstr (test_uri_base, "%s");
1335 char *b = g_strndup (test_uri_base, c - test_uri_base);
1336 char *s = g_strconcat (b, bug_uri_snippet, c + 2, NULL);
1338 g_test_message ("Bug Reference: %s", s);
1342 g_test_message ("Bug Reference: %s%s", test_uri_base, bug_uri_snippet);
1348 * Get the toplevel test suite for the test path API.
1350 * Returns: the toplevel #GTestSuite
1355 g_test_get_root (void)
1357 if (!test_suite_root)
1359 test_suite_root = g_test_create_suite ("root");
1360 g_free (test_suite_root->name);
1361 test_suite_root->name = g_strdup ("");
1364 return test_suite_root;
1370 * Runs all tests under the toplevel suite which can be retrieved
1371 * with g_test_get_root(). Similar to g_test_run_suite(), the test
1372 * cases to be run are filtered according to
1373 * test path arguments (-p <replaceable>testpath</replaceable>) as
1374 * parsed by g_test_init().
1375 * g_test_run_suite() or g_test_run() may only be called once
1378 * Returns: 0 on success
1385 return g_test_run_suite (g_test_get_root());
1389 * g_test_create_case:
1390 * @test_name: the name for the test case
1391 * @data_size: the size of the fixture data structure
1392 * @test_data: test data argument for the test functions
1393 * @data_setup: the function to set up the fixture data
1394 * @data_test: the actual test function
1395 * @data_teardown: the function to teardown the fixture data
1397 * Create a new #GTestCase, named @test_name, this API is fairly
1398 * low level, calling g_test_add() or g_test_add_func() is preferable.
1399 * When this test is executed, a fixture structure of size @data_size
1400 * will be allocated and filled with 0s. Then @data_setup is called
1401 * to initialize the fixture. After fixture setup, the actual test
1402 * function @data_test is called. Once the test run completed, the
1403 * fixture structure is torn down by calling @data_teardown and
1404 * after that the memory is released.
1406 * Splitting up a test run into fixture setup, test function and
1407 * fixture teardown is most usful if the same fixture is used for
1408 * multiple tests. In this cases, g_test_create_case() will be
1409 * called with the same fixture, but varying @test_name and
1410 * @data_test arguments.
1412 * Returns: a newly allocated #GTestCase.
1417 g_test_create_case (const char *test_name,
1419 gconstpointer test_data,
1420 GTestFixtureFunc data_setup,
1421 GTestFixtureFunc data_test,
1422 GTestFixtureFunc data_teardown)
1426 g_return_val_if_fail (test_name != NULL, NULL);
1427 g_return_val_if_fail (strchr (test_name, '/') == NULL, NULL);
1428 g_return_val_if_fail (test_name[0] != 0, NULL);
1429 g_return_val_if_fail (data_test != NULL, NULL);
1431 tc = g_slice_new0 (GTestCase);
1432 tc->name = g_strdup (test_name);
1433 tc->test_data = (gpointer) test_data;
1434 tc->fixture_size = data_size;
1435 tc->fixture_setup = (void*) data_setup;
1436 tc->fixture_test = (void*) data_test;
1437 tc->fixture_teardown = (void*) data_teardown;
1443 find_suite (gconstpointer l, gconstpointer s)
1445 const GTestSuite *suite = l;
1446 const gchar *str = s;
1448 return strcmp (suite->name, str);
1453 * @fixture: the test fixture
1454 * @user_data: the data provided when registering the test
1456 * The type used for functions that operate on test fixtures. This is
1457 * used for the fixture setup and teardown functions as well as for the
1458 * testcases themselves.
1460 * @user_data is a pointer to the data that was given when registering
1463 * @fixture will be a pointer to the area of memory allocated by the
1464 * test framework, of the size requested. If the requested size was
1465 * zero then @fixture will be equal to @user_data.
1470 g_test_add_vtable (const char *testpath,
1472 gconstpointer test_data,
1473 GTestFixtureFunc data_setup,
1474 GTestFixtureFunc fixture_test_func,
1475 GTestFixtureFunc data_teardown)
1481 g_return_if_fail (testpath != NULL);
1482 g_return_if_fail (g_path_is_absolute (testpath));
1483 g_return_if_fail (fixture_test_func != NULL);
1485 if (g_slist_find_custom (test_paths_skipped, testpath, (GCompareFunc)g_strcmp0))
1488 suite = g_test_get_root();
1489 segments = g_strsplit (testpath, "/", -1);
1490 for (ui = 0; segments[ui] != NULL; ui++)
1492 const char *seg = segments[ui];
1493 gboolean islast = segments[ui + 1] == NULL;
1494 if (islast && !seg[0])
1495 g_error ("invalid test case path: %s", testpath);
1497 continue; /* initial or duplicate slash */
1502 l = g_slist_find_custom (suite->suites, seg, find_suite);
1509 csuite = g_test_create_suite (seg);
1510 g_test_suite_add_suite (suite, csuite);
1516 GTestCase *tc = g_test_create_case (seg, data_size, test_data, data_setup, fixture_test_func, data_teardown);
1517 g_test_suite_add (suite, tc);
1520 g_strfreev (segments);
1526 * Indicates that a test failed. This function can be called
1527 * multiple times from the same test. You can use this function
1528 * if your test failed in a recoverable way.
1530 * Do not use this function if the failure of a test could cause
1531 * other tests to malfunction.
1533 * Calling this function will not stop the test from running, you
1534 * need to return from the test function yourself. So you can
1535 * produce additional diagnostic messages or even continue running
1538 * If not called from inside a test, this function does nothing.
1545 test_run_success = FALSE;
1551 * The type used for test case functions.
1558 * @testpath: /-separated test case path name for the test.
1559 * @test_func: The test function to invoke for this test.
1561 * Create a new test case, similar to g_test_create_case(). However
1562 * the test is assumed to use no fixture, and test suites are automatically
1563 * created on the fly and added to the root fixture, based on the
1564 * slash-separated portions of @testpath.
1566 * If @testpath includes the component "subprocess" anywhere in it,
1567 * the test will be skipped by default, and only run if explicitly
1568 * required via the <option>-p</option> command-line option or
1569 * g_test_trap_subprocess().
1574 g_test_add_func (const char *testpath,
1575 GTestFunc test_func)
1577 g_return_if_fail (testpath != NULL);
1578 g_return_if_fail (testpath[0] == '/');
1579 g_return_if_fail (test_func != NULL);
1580 g_test_add_vtable (testpath, 0, NULL, NULL, (GTestFixtureFunc) test_func, NULL);
1585 * @user_data: the data provided when registering the test
1587 * The type used for test case functions that take an extra pointer
1594 * g_test_add_data_func:
1595 * @testpath: /-separated test case path name for the test.
1596 * @test_data: Test data argument for the test function.
1597 * @test_func: The test function to invoke for this test.
1599 * Create a new test case, similar to g_test_create_case(). However
1600 * the test is assumed to use no fixture, and test suites are automatically
1601 * created on the fly and added to the root fixture, based on the
1602 * slash-separated portions of @testpath. The @test_data argument
1603 * will be passed as first argument to @test_func.
1605 * If @testpath includes the component "subprocess" anywhere in it,
1606 * the test will be skipped by default, and only run if explicitly
1607 * required via the <option>-p</option> command-line option or
1608 * g_test_trap_subprocess().
1613 g_test_add_data_func (const char *testpath,
1614 gconstpointer test_data,
1615 GTestDataFunc test_func)
1617 g_return_if_fail (testpath != NULL);
1618 g_return_if_fail (testpath[0] == '/');
1619 g_return_if_fail (test_func != NULL);
1621 g_test_add_vtable (testpath, 0, test_data, NULL, (GTestFixtureFunc) test_func, NULL);
1625 * g_test_add_data_func_full:
1626 * @testpath: /-separated test case path name for the test.
1627 * @test_data: Test data argument for the test function.
1628 * @test_func: The test function to invoke for this test.
1629 * @data_free_func: #GDestroyNotify for @test_data.
1631 * Create a new test case, as with g_test_add_data_func(), but freeing
1632 * @test_data after the test run is complete.
1637 g_test_add_data_func_full (const char *testpath,
1639 GTestDataFunc test_func,
1640 GDestroyNotify data_free_func)
1642 g_return_if_fail (testpath != NULL);
1643 g_return_if_fail (testpath[0] == '/');
1644 g_return_if_fail (test_func != NULL);
1646 g_test_add_vtable (testpath, 0, test_data, NULL,
1647 (GTestFixtureFunc) test_func,
1648 (GTestFixtureFunc) data_free_func);
1652 g_test_suite_case_exists (GTestSuite *suite,
1653 const char *test_path)
1660 slash = strchr (test_path, '/');
1664 for (iter = suite->suites; iter; iter = iter->next)
1666 GTestSuite *child_suite = iter->data;
1668 if (!strncmp (child_suite->name, test_path, slash - test_path))
1669 if (g_test_suite_case_exists (child_suite, slash))
1675 for (iter = suite->cases; iter; iter = iter->next)
1678 if (!strcmp (tc->name, test_path))
1687 * g_test_create_suite:
1688 * @suite_name: a name for the suite
1690 * Create a new test suite with the name @suite_name.
1692 * Returns: A newly allocated #GTestSuite instance.
1697 g_test_create_suite (const char *suite_name)
1700 g_return_val_if_fail (suite_name != NULL, NULL);
1701 g_return_val_if_fail (strchr (suite_name, '/') == NULL, NULL);
1702 g_return_val_if_fail (suite_name[0] != 0, NULL);
1703 ts = g_slice_new0 (GTestSuite);
1704 ts->name = g_strdup (suite_name);
1710 * @suite: a #GTestSuite
1711 * @test_case: a #GTestCase
1713 * Adds @test_case to @suite.
1718 g_test_suite_add (GTestSuite *suite,
1719 GTestCase *test_case)
1721 g_return_if_fail (suite != NULL);
1722 g_return_if_fail (test_case != NULL);
1724 suite->cases = g_slist_prepend (suite->cases, test_case);
1728 * g_test_suite_add_suite:
1729 * @suite: a #GTestSuite
1730 * @nestedsuite: another #GTestSuite
1732 * Adds @nestedsuite to @suite.
1737 g_test_suite_add_suite (GTestSuite *suite,
1738 GTestSuite *nestedsuite)
1740 g_return_if_fail (suite != NULL);
1741 g_return_if_fail (nestedsuite != NULL);
1743 suite->suites = g_slist_prepend (suite->suites, nestedsuite);
1747 * g_test_queue_free:
1748 * @gfree_pointer: the pointer to be stored.
1750 * Enqueue a pointer to be released with g_free() during the next
1751 * teardown phase. This is equivalent to calling g_test_queue_destroy()
1752 * with a destroy callback of g_free().
1757 g_test_queue_free (gpointer gfree_pointer)
1760 g_test_queue_destroy (g_free, gfree_pointer);
1764 * g_test_queue_destroy:
1765 * @destroy_func: Destroy callback for teardown phase.
1766 * @destroy_data: Destroy callback data.
1768 * This function enqueus a callback @destroy_func to be executed
1769 * during the next test case teardown phase. This is most useful
1770 * to auto destruct allocted test resources at the end of a test run.
1771 * Resources are released in reverse queue order, that means enqueueing
1772 * callback A before callback B will cause B() to be called before
1773 * A() during teardown.
1778 g_test_queue_destroy (GDestroyNotify destroy_func,
1779 gpointer destroy_data)
1781 DestroyEntry *dentry;
1783 g_return_if_fail (destroy_func != NULL);
1785 dentry = g_slice_new0 (DestroyEntry);
1786 dentry->destroy_func = destroy_func;
1787 dentry->destroy_data = destroy_data;
1788 dentry->next = test_destroy_queue;
1789 test_destroy_queue = dentry;
1793 test_case_run (GTestCase *tc)
1795 gchar *old_name = test_run_name, *old_base = g_strdup (test_uri_base);
1796 gboolean success = TRUE;
1798 test_run_name = g_strconcat (old_name, "/", tc->name, NULL);
1799 if (strstr (test_run_name, "/subprocess"))
1802 gboolean found = FALSE;
1804 for (iter = test_paths; iter; iter = iter->next)
1806 if (!strcmp (test_run_name, iter->data))
1815 if (g_test_verbose ())
1816 g_print ("GTest: skipping: %s\n", test_run_name);
1821 if (++test_run_count <= test_skip_count)
1822 g_test_log (G_TEST_LOG_SKIP_CASE, test_run_name, NULL, 0, NULL);
1823 else if (test_run_list)
1825 g_print ("%s\n", test_run_name);
1826 g_test_log (G_TEST_LOG_LIST_CASE, test_run_name, NULL, 0, NULL);
1830 GTimer *test_run_timer = g_timer_new();
1831 long double largs[3];
1833 g_test_log (G_TEST_LOG_START_CASE, test_run_name, NULL, 0, NULL);
1835 test_run_success = TRUE;
1836 g_test_log_set_fatal_handler (NULL, NULL);
1837 g_timer_start (test_run_timer);
1838 fixture = tc->fixture_size ? g_malloc0 (tc->fixture_size) : tc->test_data;
1839 test_run_seed (test_run_seedstr);
1840 if (tc->fixture_setup)
1841 tc->fixture_setup (fixture, tc->test_data);
1842 tc->fixture_test (fixture, tc->test_data);
1844 while (test_destroy_queue)
1846 DestroyEntry *dentry = test_destroy_queue;
1847 test_destroy_queue = dentry->next;
1848 dentry->destroy_func (dentry->destroy_data);
1849 g_slice_free (DestroyEntry, dentry);
1851 if (tc->fixture_teardown)
1852 tc->fixture_teardown (fixture, tc->test_data);
1853 if (tc->fixture_size)
1855 g_timer_stop (test_run_timer);
1856 success = test_run_success;
1857 test_run_success = FALSE;
1858 largs[0] = success ? 0 : 1; /* OK */
1859 largs[1] = test_run_forks;
1860 largs[2] = g_timer_elapsed (test_run_timer, NULL);
1861 g_test_log (G_TEST_LOG_STOP_CASE, NULL, NULL, G_N_ELEMENTS (largs), largs);
1862 g_timer_destroy (test_run_timer);
1866 g_free (test_run_name);
1867 test_run_name = old_name;
1868 g_free (test_uri_base);
1869 test_uri_base = old_base;
1875 g_test_run_suite_internal (GTestSuite *suite,
1879 gchar *rest, *old_name = test_run_name;
1880 GSList *slist, *reversed;
1882 g_return_val_if_fail (suite != NULL, -1);
1884 while (path[0] == '/')
1887 rest = strchr (path, '/');
1888 l = rest ? MIN (l, rest - path) : l;
1889 test_run_name = suite->name[0] == 0 ? g_strdup (test_run_name) : g_strconcat (old_name, "/", suite->name, NULL);
1890 reversed = g_slist_reverse (g_slist_copy (suite->cases));
1891 for (slist = reversed; slist; slist = slist->next)
1893 GTestCase *tc = slist->data;
1894 guint n = l ? strlen (tc->name) : 0;
1895 if (l == n && !rest && strncmp (path, tc->name, n) == 0)
1897 if (!test_case_run (tc))
1901 g_slist_free (reversed);
1902 reversed = g_slist_reverse (g_slist_copy (suite->suites));
1903 for (slist = reversed; slist; slist = slist->next)
1905 GTestSuite *ts = slist->data;
1906 guint n = l ? strlen (ts->name) : 0;
1907 if (l == n && strncmp (path, ts->name, n) == 0)
1908 n_bad += g_test_run_suite_internal (ts, rest ? rest : "");
1910 g_slist_free (reversed);
1911 g_free (test_run_name);
1912 test_run_name = old_name;
1919 * @suite: a #GTestSuite
1921 * Execute the tests within @suite and all nested #GTestSuites.
1922 * The test suites to be executed are filtered according to
1923 * test path arguments (-p <replaceable>testpath</replaceable>)
1924 * as parsed by g_test_init().
1925 * g_test_run_suite() or g_test_run() may only be called once
1928 * Returns: 0 on success
1933 g_test_run_suite (GTestSuite *suite)
1935 GSList *my_test_paths;
1938 g_return_val_if_fail (g_test_config_vars->test_initialized, -1);
1939 g_return_val_if_fail (g_test_run_once == TRUE, -1);
1941 g_test_run_once = FALSE;
1944 my_test_paths = g_slist_copy (test_paths);
1946 my_test_paths = g_slist_prepend (NULL, "");
1948 while (my_test_paths)
1950 const char *rest, *path = my_test_paths->data;
1951 guint l, n = strlen (suite->name);
1952 my_test_paths = g_slist_delete_link (my_test_paths, my_test_paths);
1953 while (path[0] == '/')
1955 if (!n) /* root suite, run unconditionally */
1957 n_bad += g_test_run_suite_internal (suite, path);
1960 /* regular suite, match path */
1961 rest = strchr (path, '/');
1963 l = rest ? MIN (l, rest - path) : l;
1964 if ((!l || l == n) && strncmp (path, suite->name, n) == 0)
1965 n_bad += g_test_run_suite_internal (suite, rest ? rest : "");
1972 gtest_default_log_handler (const gchar *log_domain,
1973 GLogLevelFlags log_level,
1974 const gchar *message,
1975 gpointer unused_data)
1977 const gchar *strv[16];
1978 gboolean fatal = FALSE;
1984 strv[i++] = log_domain;
1987 if (log_level & G_LOG_FLAG_FATAL)
1989 strv[i++] = "FATAL-";
1992 if (log_level & G_LOG_FLAG_RECURSION)
1993 strv[i++] = "RECURSIVE-";
1994 if (log_level & G_LOG_LEVEL_ERROR)
1995 strv[i++] = "ERROR";
1996 if (log_level & G_LOG_LEVEL_CRITICAL)
1997 strv[i++] = "CRITICAL";
1998 if (log_level & G_LOG_LEVEL_WARNING)
1999 strv[i++] = "WARNING";
2000 if (log_level & G_LOG_LEVEL_MESSAGE)
2001 strv[i++] = "MESSAGE";
2002 if (log_level & G_LOG_LEVEL_INFO)
2004 if (log_level & G_LOG_LEVEL_DEBUG)
2005 strv[i++] = "DEBUG";
2007 strv[i++] = message;
2010 msg = g_strjoinv ("", (gchar**) strv);
2011 g_test_log (fatal ? G_TEST_LOG_ERROR : G_TEST_LOG_MESSAGE, msg, NULL, 0, NULL);
2012 g_log_default_handler (log_domain, log_level, message, unused_data);
2018 g_assertion_message (const char *domain,
2022 const char *message)
2028 message = "code should not be reached";
2029 g_snprintf (lstr, 32, "%d", line);
2030 s = g_strconcat (domain ? domain : "", domain && domain[0] ? ":" : "",
2031 "ERROR:", file, ":", lstr, ":",
2032 func, func[0] ? ":" : "",
2033 " ", message, NULL);
2034 g_printerr ("**\n%s\n", s);
2036 /* store assertion message in global variable, so that it can be found in a
2038 if (__glib_assert_msg != NULL)
2039 /* free the old one */
2040 free (__glib_assert_msg);
2041 __glib_assert_msg = (char*) malloc (strlen (s) + 1);
2042 strcpy (__glib_assert_msg, s);
2044 g_test_log (G_TEST_LOG_ERROR, s, NULL, 0, NULL);
2050 g_assertion_message_expr (const char *domain,
2056 char *s = g_strconcat ("assertion failed: (", expr, ")", NULL);
2057 g_assertion_message (domain, file, line, func, s);
2062 g_assertion_message_cmpnum (const char *domain,
2076 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;
2077 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;
2078 case 'f': s = g_strdup_printf ("assertion failed (%s): (%.9g %s %.9g)", expr, (double) arg1, cmp, (double) arg2); break;
2079 /* ideally use: floats=%.7g double=%.17g */
2081 g_assertion_message (domain, file, line, func, s);
2086 g_assertion_message_cmpstr (const char *domain,
2095 char *a1, *a2, *s, *t1 = NULL, *t2 = NULL;
2096 a1 = arg1 ? g_strconcat ("\"", t1 = g_strescape (arg1, NULL), "\"", NULL) : g_strdup ("NULL");
2097 a2 = arg2 ? g_strconcat ("\"", t2 = g_strescape (arg2, NULL), "\"", NULL) : g_strdup ("NULL");
2100 s = g_strdup_printf ("assertion failed (%s): (%s %s %s)", expr, a1, cmp, a2);
2103 g_assertion_message (domain, file, line, func, s);
2108 g_assertion_message_error (const char *domain,
2113 const GError *error,
2114 GQuark error_domain,
2119 /* This is used by both g_assert_error() and g_assert_no_error(), so there
2120 * are three cases: expected an error but got the wrong error, expected
2121 * an error but got no error, and expected no error but got an error.
2124 gstring = g_string_new ("assertion failed ");
2126 g_string_append_printf (gstring, "(%s == (%s, %d)): ", expr,
2127 g_quark_to_string (error_domain), error_code);
2129 g_string_append_printf (gstring, "(%s == NULL): ", expr);
2132 g_string_append_printf (gstring, "%s (%s, %d)", error->message,
2133 g_quark_to_string (error->domain), error->code);
2135 g_string_append_printf (gstring, "%s is NULL", expr);
2137 g_assertion_message (domain, file, line, func, gstring->str);
2138 g_string_free (gstring, TRUE);
2143 * @str1: (allow-none): a C string or %NULL
2144 * @str2: (allow-none): another C string or %NULL
2146 * Compares @str1 and @str2 like strcmp(). Handles %NULL
2147 * gracefully by sorting it before non-%NULL strings.
2148 * Comparing two %NULL pointers returns 0.
2150 * Returns: an integer less than, equal to, or greater than zero, if @str1 is <, == or > than @str2.
2155 g_strcmp0 (const char *str1,
2159 return -(str1 != str2);
2161 return str1 != str2;
2162 return strcmp (str1, str2);
2166 test_trap_clear (void)
2168 test_trap_last_status = 0;
2169 test_trap_last_pid = 0;
2170 g_clear_pointer (&test_trap_last_subprocess, g_free);
2171 g_clear_pointer (&test_trap_last_stdout, g_free);
2172 g_clear_pointer (&test_trap_last_stderr, g_free);
2183 ret = dup2 (fd1, fd2);
2184 while (ret < 0 && errno == EINTR);
2195 GIOChannel *stdout_io;
2196 gboolean echo_stdout;
2197 GString *stdout_str;
2199 GIOChannel *stderr_io;
2200 gboolean echo_stderr;
2201 GString *stderr_str;
2205 check_complete (WaitForChildData *data)
2207 if (data->child_status != -1 && data->stdout_io == NULL && data->stderr_io == NULL)
2208 g_main_loop_quit (data->loop);
2212 child_exited (GPid pid,
2216 WaitForChildData *data = user_data;
2219 if (WIFEXITED (status)) /* normal exit */
2220 data->child_status = WEXITSTATUS (status); /* 0..255 */
2221 else if (WIFSIGNALED (status) && WTERMSIG (status) == SIGALRM)
2222 data->child_status = G_TEST_STATUS_TIMED_OUT;
2223 else if (WIFSIGNALED (status))
2224 data->child_status = (WTERMSIG (status) << 12); /* signalled */
2225 else /* WCOREDUMP (status) */
2226 data->child_status = 512; /* coredump */
2228 data->child_status = status;
2231 check_complete (data);
2235 child_timeout (gpointer user_data)
2237 WaitForChildData *data = user_data;
2240 TerminateProcess (data->pid, G_TEST_STATUS_TIMED_OUT);
2242 kill (data->pid, SIGALRM);
2249 child_read (GIOChannel *io, GIOCondition cond, gpointer user_data)
2251 WaitForChildData *data = user_data;
2253 gsize nread, nwrote, total;
2257 status = g_io_channel_read_chars (io, buf, sizeof (buf), &nread, NULL);
2258 if (status == G_IO_STATUS_ERROR || status == G_IO_STATUS_EOF)
2260 // FIXME data->error = (status == G_IO_STATUS_ERROR);
2261 if (io == data->stdout_io)
2262 g_clear_pointer (&data->stdout_io, g_io_channel_unref);
2264 g_clear_pointer (&data->stderr_io, g_io_channel_unref);
2266 check_complete (data);
2269 else if (status == G_IO_STATUS_AGAIN)
2272 if (io == data->stdout_io)
2274 g_string_append_len (data->stdout_str, buf, nread);
2275 if (data->echo_stdout)
2276 echo_fd = STDOUT_FILENO;
2280 g_string_append_len (data->stderr_str, buf, nread);
2281 if (data->echo_stderr)
2282 echo_fd = STDERR_FILENO;
2287 for (total = 0; total < nread; total += nwrote)
2290 nwrote = write (echo_fd, buf + total, nread - total);
2291 while (nwrote == -1 && errno == EINTR);
2293 g_error ("write failed: %s", g_strerror (errno));
2302 wait_for_child (GPid pid,
2303 int stdout_fd, gboolean echo_stdout,
2304 int stderr_fd, gboolean echo_stderr,
2307 WaitForChildData data;
2308 GMainContext *context;
2312 data.child_status = -1;
2314 context = g_main_context_new ();
2315 data.loop = g_main_loop_new (context, FALSE);
2317 source = g_child_watch_source_new (pid);
2318 g_source_set_callback (source, (GSourceFunc) child_exited, &data, NULL);
2319 g_source_attach (source, context);
2320 g_source_unref (source);
2322 data.echo_stdout = echo_stdout;
2323 data.stdout_str = g_string_new (NULL);
2324 data.stdout_io = g_io_channel_unix_new (stdout_fd);
2325 g_io_channel_set_close_on_unref (data.stdout_io, TRUE);
2326 g_io_channel_set_encoding (data.stdout_io, NULL, NULL);
2327 g_io_channel_set_buffered (data.stdout_io, FALSE);
2328 source = g_io_create_watch (data.stdout_io, G_IO_IN | G_IO_ERR | G_IO_HUP);
2329 g_source_set_callback (source, (GSourceFunc) child_read, &data, NULL);
2330 g_source_attach (source, context);
2331 g_source_unref (source);
2333 data.echo_stderr = echo_stderr;
2334 data.stderr_str = g_string_new (NULL);
2335 data.stderr_io = g_io_channel_unix_new (stderr_fd);
2336 g_io_channel_set_close_on_unref (data.stderr_io, TRUE);
2337 g_io_channel_set_encoding (data.stderr_io, NULL, NULL);
2338 g_io_channel_set_buffered (data.stderr_io, FALSE);
2339 source = g_io_create_watch (data.stderr_io, G_IO_IN | G_IO_ERR | G_IO_HUP);
2340 g_source_set_callback (source, (GSourceFunc) child_read, &data, NULL);
2341 g_source_attach (source, context);
2342 g_source_unref (source);
2346 source = g_timeout_source_new (0);
2347 g_source_set_ready_time (source, g_get_monotonic_time () + timeout);
2348 g_source_set_callback (source, (GSourceFunc) child_timeout, &data, NULL);
2349 g_source_attach (source, context);
2350 g_source_unref (source);
2353 g_main_loop_run (data.loop);
2354 g_main_loop_unref (data.loop);
2355 g_main_context_unref (context);
2357 test_trap_last_pid = pid;
2358 test_trap_last_status = data.child_status;
2359 test_trap_last_stdout = g_string_free (data.stdout_str, FALSE);
2360 test_trap_last_stderr = g_string_free (data.stderr_str, FALSE);
2362 g_clear_pointer (&data.stdout_io, g_io_channel_unref);
2363 g_clear_pointer (&data.stderr_io, g_io_channel_unref);
2368 * @usec_timeout: Timeout for the forked test in micro seconds.
2369 * @test_trap_flags: Flags to modify forking behaviour.
2371 * Fork the current test program to execute a test case that might
2372 * not return or that might abort.
2374 * If @usec_timeout is non-0, the forked test case is aborted and
2375 * considered failing if its run time exceeds it.
2377 * The forking behavior can be configured with the #GTestTrapFlags flags.
2379 * In the following example, the test code forks, the forked child
2380 * process produces some sample output and exits successfully.
2381 * The forking parent process then asserts successful child program
2382 * termination and validates child program outputs.
2386 * test_fork_patterns (void)
2388 * if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
2390 * g_print ("some stdout text: somagic17\n");
2391 * g_printerr ("some stderr text: semagic43\n");
2392 * exit (0); /* successful test run */
2394 * g_test_trap_assert_passed ();
2395 * g_test_trap_assert_stdout ("*somagic17*");
2396 * g_test_trap_assert_stderr ("*semagic43*");
2400 * Returns: %TRUE for the forked child and %FALSE for the executing parent process.
2404 * Deprecated: This function is implemented only on Unix platforms,
2405 * and is not always reliable due to problems inherent in
2406 * fork-without-exec. Use g_test_trap_subprocess() instead.
2409 g_test_trap_fork (guint64 usec_timeout,
2410 GTestTrapFlags test_trap_flags)
2413 int stdout_pipe[2] = { -1, -1 };
2414 int stderr_pipe[2] = { -1, -1 };
2417 if (pipe (stdout_pipe) < 0 || pipe (stderr_pipe) < 0)
2418 g_error ("failed to create pipes to fork test program: %s", g_strerror (errno));
2419 test_trap_last_pid = fork ();
2420 if (test_trap_last_pid < 0)
2421 g_error ("failed to fork test program: %s", g_strerror (errno));
2422 if (test_trap_last_pid == 0) /* child */
2425 close (stdout_pipe[0]);
2426 close (stderr_pipe[0]);
2427 if (!(test_trap_flags & G_TEST_TRAP_INHERIT_STDIN))
2428 fd0 = g_open ("/dev/null", O_RDONLY, 0);
2429 if (sane_dup2 (stdout_pipe[1], 1) < 0 || sane_dup2 (stderr_pipe[1], 2) < 0 || (fd0 >= 0 && sane_dup2 (fd0, 0) < 0))
2430 g_error ("failed to dup2() in forked test program: %s", g_strerror (errno));
2433 if (stdout_pipe[1] >= 3)
2434 close (stdout_pipe[1]);
2435 if (stderr_pipe[1] >= 3)
2436 close (stderr_pipe[1]);
2442 close (stdout_pipe[1]);
2443 close (stderr_pipe[1]);
2445 wait_for_child (test_trap_last_pid,
2446 stdout_pipe[0], !(test_trap_flags & G_TEST_TRAP_SILENCE_STDOUT),
2447 stderr_pipe[0], !(test_trap_flags & G_TEST_TRAP_SILENCE_STDERR),
2452 g_message ("Not implemented: g_test_trap_fork");
2459 * g_test_trap_subprocess:
2460 * @test_name: Test to run in a subprocess
2461 * @usec_timeout: Timeout for the subprocess test in micro seconds.
2462 * @test_flags: Flags to modify subprocess behaviour.
2464 * Respawns the test program to run only @test_name in a subprocess.
2465 * This can be used for a test case that might not return, or that
2466 * might abort. @test_name will normally be the name of the parent
2467 * test, followed by "<literal>/subprocess/</literal>" and then a name
2468 * for the specific subtest (or just ending with
2469 * "<literal>/subprocess</literal>" if the test only has one child
2470 * test); tests with names of this form will automatically be skipped
2471 * in the parent process.
2473 * If @usec_timeout is non-0, the test subprocess is aborted and
2474 * considered failing if its run time exceeds it.
2476 * The subprocess behavior can be configured with the
2477 * #GTestSubprocessFlags flags.
2479 * You can use methods such as g_test_trap_assert_passed(),
2480 * g_test_trap_assert_failed(), and g_test_trap_assert_stderr() to
2481 * check the results of the subprocess. (But note that
2482 * g_test_trap_assert_stdout() and g_test_trap_assert_stderr()
2483 * cannot be used if @test_flags specifies that the child should
2484 * inherit the parent stdout/stderr.)
2486 * If your <literal>main ()</literal> needs to behave differently in
2487 * the subprocess, you can call g_test_subprocess() (after calling
2488 * g_test_init()) to see whether you are in a subprocess.
2490 * The following example tests that calling
2491 * <literal>my_object_new(1000000)</literal> will abort with an error
2496 * test_create_large_object_subprocess (void)
2498 * my_object_new (1000000);
2502 * test_create_large_object (void)
2504 * g_test_trap_subprocess ("/myobject/create_large_object/subprocess", 0, 0);
2505 * g_test_trap_assert_failed ();
2506 * g_test_trap_assert_stderr ("*ERROR*too large*");
2510 * main (int argc, char **argv)
2512 * g_test_init (&argc, &argv, NULL);
2514 * g_test_add_func ("/myobject/create_large_object",
2515 * test_create_large_object);
2516 * /* Because of the '/subprocess' in the name, this test will
2517 * * not be run by the g_test_run () call below.
2519 * g_test_add_func ("/myobject/create_large_object/subprocess",
2520 * test_create_large_object_subprocess);
2522 * return g_test_run ();
2529 g_test_trap_subprocess (const char *test_path,
2530 guint64 usec_timeout,
2531 GTestSubprocessFlags test_flags)
2533 GError *error = NULL;
2536 int stdout_fd, stderr_fd;
2539 /* Sanity check that they used GTestSubprocessFlags, not GTestTrapFlags */
2540 g_assert ((test_flags & (G_TEST_TRAP_INHERIT_STDIN | G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR)) == 0);
2542 if (!g_test_suite_case_exists (g_test_get_root (), test_path))
2543 g_error ("g_test_trap_subprocess: test does not exist: %s", test_path);
2545 if (g_test_verbose ())
2546 g_print ("GTest: subprocess: %s\n", test_path);
2549 test_trap_last_subprocess = g_strdup (test_path);
2551 argv = g_ptr_array_new ();
2552 g_ptr_array_add (argv, test_argv0);
2553 g_ptr_array_add (argv, "-q");
2554 g_ptr_array_add (argv, "-p");
2555 g_ptr_array_add (argv, (char *)test_path);
2556 g_ptr_array_add (argv, "--GTestSubprocess");
2557 if (test_log_fd != -1)
2559 char log_fd_buf[128];
2561 g_ptr_array_add (argv, "--GTestLogFD");
2562 g_snprintf (log_fd_buf, sizeof (log_fd_buf), "%d", test_log_fd);
2563 g_ptr_array_add (argv, log_fd_buf);
2565 g_ptr_array_add (argv, NULL);
2567 flags = G_SPAWN_DO_NOT_REAP_CHILD;
2568 if (test_flags & G_TEST_TRAP_INHERIT_STDIN)
2569 flags |= G_SPAWN_CHILD_INHERITS_STDIN;
2571 if (!g_spawn_async_with_pipes (test_initial_cwd,
2572 (char **)argv->pdata,
2575 &pid, NULL, &stdout_fd, &stderr_fd,
2578 g_error ("g_test_trap_subprocess() failed: %s\n",
2581 g_ptr_array_free (argv, TRUE);
2583 wait_for_child (pid,
2584 stdout_fd, !!(test_flags & G_TEST_SUBPROCESS_INHERIT_STDOUT),
2585 stderr_fd, !!(test_flags & G_TEST_SUBPROCESS_INHERIT_STDERR),
2590 * g_test_subprocess:
2592 * Returns %TRUE (after g_test_init() has been called) if the test
2593 * program is running under g_test_trap_subprocess().
2595 * Returns: %TRUE if the test program is running under
2596 * g_test_trap_subprocess().
2601 g_test_subprocess (void)
2603 return test_in_subprocess;
2607 * g_test_trap_has_passed:
2609 * Check the result of the last g_test_trap_subprocess() call.
2611 * Returns: %TRUE if the last test subprocess terminated successfully.
2616 g_test_trap_has_passed (void)
2618 return test_trap_last_status == 0; /* exit_status == 0 && !signal && !coredump */
2622 * g_test_trap_reached_timeout:
2624 * Check the result of the last g_test_trap_subprocess() call.
2626 * Returns: %TRUE if the last test subprocess got killed due to a timeout.
2631 g_test_trap_reached_timeout (void)
2633 return test_trap_last_status != G_TEST_STATUS_TIMED_OUT;
2637 g_test_trap_assertions (const char *domain,
2641 guint64 assertion_flags, /* 0-pass, 1-fail, 2-outpattern, 4-errpattern */
2642 const char *pattern)
2644 gboolean must_pass = assertion_flags == 0;
2645 gboolean must_fail = assertion_flags == 1;
2646 gboolean match_result = 0 == (assertion_flags & 1);
2647 const char *stdout_pattern = (assertion_flags & 2) ? pattern : NULL;
2648 const char *stderr_pattern = (assertion_flags & 4) ? pattern : NULL;
2649 const char *match_error = match_result ? "failed to match" : "contains invalid match";
2653 if (test_trap_last_subprocess != NULL)
2655 process_id = g_strdup_printf ("%s [%d]", test_trap_last_subprocess,
2656 test_trap_last_pid);
2658 else if (test_trap_last_pid != 0)
2659 process_id = g_strdup_printf ("%d", test_trap_last_pid);
2661 if (test_trap_last_subprocess != NULL)
2662 process_id = g_strdup (test_trap_last_subprocess);
2665 g_error ("g_test_trap_ assertion with no trapped test");
2667 if (must_pass && !g_test_trap_has_passed())
2669 char *msg = g_strdup_printf ("child process (%s) failed unexpectedly", process_id);
2670 g_assertion_message (domain, file, line, func, msg);
2673 if (must_fail && g_test_trap_has_passed())
2675 char *msg = g_strdup_printf ("child process (%s) did not fail as expected", process_id);
2676 g_assertion_message (domain, file, line, func, msg);
2679 if (stdout_pattern && match_result == !g_pattern_match_simple (stdout_pattern, test_trap_last_stdout))
2681 char *msg = g_strdup_printf ("stdout of child process (%s) %s: %s", process_id, match_error, stdout_pattern);
2682 g_assertion_message (domain, file, line, func, msg);
2685 if (stderr_pattern && match_result == !g_pattern_match_simple (stderr_pattern, test_trap_last_stderr))
2687 char *msg = g_strdup_printf ("stderr of child process (%s) %s: %s", process_id, match_error, stderr_pattern);
2688 g_assertion_message (domain, file, line, func, msg);
2694 gstring_overwrite_int (GString *gstring,
2698 vuint = g_htonl (vuint);
2699 g_string_overwrite_len (gstring, pos, (const gchar*) &vuint, 4);
2703 gstring_append_int (GString *gstring,
2706 vuint = g_htonl (vuint);
2707 g_string_append_len (gstring, (const gchar*) &vuint, 4);
2711 gstring_append_double (GString *gstring,
2714 union { double vdouble; guint64 vuint64; } u;
2715 u.vdouble = vdouble;
2716 u.vuint64 = GUINT64_TO_BE (u.vuint64);
2717 g_string_append_len (gstring, (const gchar*) &u.vuint64, 8);
2721 g_test_log_dump (GTestLogMsg *msg,
2724 GString *gstring = g_string_sized_new (1024);
2726 gstring_append_int (gstring, 0); /* message length */
2727 gstring_append_int (gstring, msg->log_type);
2728 gstring_append_int (gstring, msg->n_strings);
2729 gstring_append_int (gstring, msg->n_nums);
2730 gstring_append_int (gstring, 0); /* reserved */
2731 for (ui = 0; ui < msg->n_strings; ui++)
2733 guint l = strlen (msg->strings[ui]);
2734 gstring_append_int (gstring, l);
2735 g_string_append_len (gstring, msg->strings[ui], l);
2737 for (ui = 0; ui < msg->n_nums; ui++)
2738 gstring_append_double (gstring, msg->nums[ui]);
2739 *len = gstring->len;
2740 gstring_overwrite_int (gstring, 0, *len); /* message length */
2741 return (guint8*) g_string_free (gstring, FALSE);
2744 static inline long double
2745 net_double (const gchar **ipointer)
2747 union { guint64 vuint64; double vdouble; } u;
2748 guint64 aligned_int64;
2749 memcpy (&aligned_int64, *ipointer, 8);
2751 u.vuint64 = GUINT64_FROM_BE (aligned_int64);
2755 static inline guint32
2756 net_int (const gchar **ipointer)
2758 guint32 aligned_int;
2759 memcpy (&aligned_int, *ipointer, 4);
2761 return g_ntohl (aligned_int);
2765 g_test_log_extract (GTestLogBuffer *tbuffer)
2767 const gchar *p = tbuffer->data->str;
2770 if (tbuffer->data->len < 4 * 5)
2772 mlength = net_int (&p);
2773 if (tbuffer->data->len < mlength)
2775 msg.log_type = net_int (&p);
2776 msg.n_strings = net_int (&p);
2777 msg.n_nums = net_int (&p);
2778 if (net_int (&p) == 0)
2781 msg.strings = g_new0 (gchar*, msg.n_strings + 1);
2782 msg.nums = g_new0 (long double, msg.n_nums);
2783 for (ui = 0; ui < msg.n_strings; ui++)
2785 guint sl = net_int (&p);
2786 msg.strings[ui] = g_strndup (p, sl);
2789 for (ui = 0; ui < msg.n_nums; ui++)
2790 msg.nums[ui] = net_double (&p);
2791 if (p <= tbuffer->data->str + mlength)
2793 g_string_erase (tbuffer->data, 0, mlength);
2794 tbuffer->msgs = g_slist_prepend (tbuffer->msgs, g_memdup (&msg, sizeof (msg)));
2799 g_strfreev (msg.strings);
2800 g_error ("corrupt log stream from test program");
2805 * g_test_log_buffer_new:
2807 * Internal function for gtester to decode test log messages, no ABI guarantees provided.
2810 g_test_log_buffer_new (void)
2812 GTestLogBuffer *tb = g_new0 (GTestLogBuffer, 1);
2813 tb->data = g_string_sized_new (1024);
2818 * g_test_log_buffer_free:
2820 * Internal function for gtester to free test log messages, no ABI guarantees provided.
2823 g_test_log_buffer_free (GTestLogBuffer *tbuffer)
2825 g_return_if_fail (tbuffer != NULL);
2826 while (tbuffer->msgs)
2827 g_test_log_msg_free (g_test_log_buffer_pop (tbuffer));
2828 g_string_free (tbuffer->data, TRUE);
2833 * g_test_log_buffer_push:
2835 * Internal function for gtester to decode test log messages, no ABI guarantees provided.
2838 g_test_log_buffer_push (GTestLogBuffer *tbuffer,
2840 const guint8 *bytes)
2842 g_return_if_fail (tbuffer != NULL);
2845 gboolean more_messages;
2846 g_return_if_fail (bytes != NULL);
2847 g_string_append_len (tbuffer->data, (const gchar*) bytes, n_bytes);
2849 more_messages = g_test_log_extract (tbuffer);
2850 while (more_messages);
2855 * g_test_log_buffer_pop:
2857 * Internal function for gtester to retrieve test log messages, no ABI guarantees provided.
2860 g_test_log_buffer_pop (GTestLogBuffer *tbuffer)
2862 GTestLogMsg *msg = NULL;
2863 g_return_val_if_fail (tbuffer != NULL, NULL);
2866 GSList *slist = g_slist_last (tbuffer->msgs);
2868 tbuffer->msgs = g_slist_delete_link (tbuffer->msgs, slist);
2874 * g_test_log_msg_free:
2876 * Internal function for gtester to free test log messages, no ABI guarantees provided.
2879 g_test_log_msg_free (GTestLogMsg *tmsg)
2881 g_return_if_fail (tmsg != NULL);
2882 g_strfreev (tmsg->strings);
2883 g_free (tmsg->nums);
2887 /* --- macros docs START --- */
2890 * @testpath: The test path for a new test case.
2891 * @Fixture: The type of a fixture data structure.
2892 * @tdata: Data argument for the test functions.
2893 * @fsetup: The function to set up the fixture data.
2894 * @ftest: The actual test function.
2895 * @fteardown: The function to tear down the fixture data.
2897 * Hook up a new test case at @testpath, similar to g_test_add_func().
2898 * A fixture data structure with setup and teardown function may be provided
2899 * though, similar to g_test_create_case().
2900 * g_test_add() is implemented as a macro, so that the fsetup(), ftest() and
2901 * fteardown() callbacks can expect a @Fixture pointer as first argument in
2902 * a type safe manner.
2906 /* --- macros docs END --- */