2007-11-20 15:00:23 +00:00
|
|
|
/* GLib testing framework examples and tests
|
2007-11-20 17:35:26 +00:00
|
|
|
* Copyright (C) 2007 Imendio AB
|
|
|
|
* Authors: Tim Janik
|
2007-11-20 15:00:23 +00:00
|
|
|
*
|
|
|
|
* This work is provided "as is"; redistribution and modification
|
|
|
|
* in whole or in part, in any medium, physical or electronic is
|
|
|
|
* permitted without restriction.
|
|
|
|
*
|
|
|
|
* This work is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*
|
|
|
|
* In no event shall the authors or contributors be liable for any
|
|
|
|
* direct, indirect, incidental, special, exemplary, or consequential
|
|
|
|
* damages (including, but not limited to, procurement of substitute
|
|
|
|
* goods or services; loss of use, data, or profits; or business
|
|
|
|
* interruption) however caused and on any theory of liability, whether
|
|
|
|
* in contract, strict liability, or tort (including negligence or
|
|
|
|
* otherwise) arising in any way out of the use of this software, even
|
|
|
|
* if advised of the possibility of such damage.
|
|
|
|
*/
|
2008-05-28 16:18:27 +00:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2007-11-20 15:00:26 +00:00
|
|
|
#include <stdlib.h>
|
2007-11-20 15:00:23 +00:00
|
|
|
|
|
|
|
/* test assertion variants */
|
2012-11-24 16:34:13 -05:00
|
|
|
static void
|
|
|
|
test_assertions_bad_cmpstr (void)
|
|
|
|
{
|
|
|
|
g_assert_cmpstr ("fzz", !=, "fzz");
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_assertions_bad_cmpint (void)
|
|
|
|
{
|
|
|
|
g_assert_cmpint (4, !=, 4);
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
2007-11-20 15:00:23 +00:00
|
|
|
static void
|
|
|
|
test_assertions (void)
|
|
|
|
{
|
2008-01-23 22:22:27 +00:00
|
|
|
gchar *fuu;
|
2007-11-20 15:00:23 +00:00
|
|
|
g_assert_cmpint (1, >, 0);
|
2007-11-20 15:00:26 +00:00
|
|
|
g_assert_cmphex (2, ==, 2);
|
2007-11-20 15:00:23 +00:00
|
|
|
g_assert_cmpfloat (3.3, !=, 7);
|
|
|
|
g_assert_cmpfloat (7, <=, 3 + 4);
|
|
|
|
g_assert (TRUE);
|
|
|
|
g_assert_cmpstr ("foo", !=, "faa");
|
2008-01-23 22:22:27 +00:00
|
|
|
fuu = g_strdup_printf ("f%s", "uu");
|
2007-11-20 15:00:23 +00:00
|
|
|
g_test_queue_free (fuu);
|
|
|
|
g_assert_cmpstr ("foo", !=, fuu);
|
|
|
|
g_assert_cmpstr ("fuu", ==, fuu);
|
|
|
|
g_assert_cmpstr (NULL, <, "");
|
|
|
|
g_assert_cmpstr (NULL, ==, NULL);
|
|
|
|
g_assert_cmpstr ("", >, NULL);
|
|
|
|
g_assert_cmpstr ("foo", <, "fzz");
|
|
|
|
g_assert_cmpstr ("fzz", >, "faa");
|
|
|
|
g_assert_cmpstr ("fzz", ==, "fzz");
|
2010-07-26 23:06:33 -04:00
|
|
|
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_trap_subprocess ("/misc/assertions:bad_cmpstr",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
2012-08-01 09:49:10 -04:00
|
|
|
g_test_trap_assert_failed ();
|
|
|
|
g_test_trap_assert_stderr ("*assertion failed*");
|
|
|
|
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_trap_subprocess ("/misc/assertions:bad_cmpint",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
2012-08-01 09:49:10 -04:00
|
|
|
g_test_trap_assert_failed ();
|
|
|
|
g_test_trap_assert_stderr ("*assertion failed*");
|
2007-11-20 15:00:23 +00:00
|
|
|
}
|
|
|
|
|
2007-11-20 15:00:30 +00:00
|
|
|
/* test g_test_timer* API */
|
|
|
|
static void
|
|
|
|
test_timer (void)
|
|
|
|
{
|
|
|
|
double ttime;
|
|
|
|
g_test_timer_start();
|
|
|
|
g_assert_cmpfloat (g_test_timer_last(), ==, 0);
|
|
|
|
g_usleep (25 * 1000);
|
|
|
|
ttime = g_test_timer_elapsed();
|
|
|
|
g_assert_cmpfloat (ttime, >, 0);
|
|
|
|
g_assert_cmpfloat (g_test_timer_last(), ==, ttime);
|
2007-11-20 15:00:31 +00:00
|
|
|
g_test_minimized_result (ttime, "timer-test-time: %fsec", ttime);
|
2008-02-10 04:41:25 +00:00
|
|
|
g_test_maximized_result (5, "bogus-quantity: %ddummies", 5); /* simple API test */
|
2007-11-20 15:00:30 +00:00
|
|
|
}
|
|
|
|
|
2012-11-24 15:58:27 -05:00
|
|
|
#ifdef G_OS_UNIX
|
|
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
|
|
|
|
2007-11-20 15:00:26 +00:00
|
|
|
/* fork out for a failing test */
|
|
|
|
static void
|
|
|
|
test_fork_fail (void)
|
|
|
|
{
|
|
|
|
if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDERR))
|
|
|
|
{
|
|
|
|
g_assert_not_reached();
|
|
|
|
}
|
|
|
|
g_test_trap_assert_failed();
|
|
|
|
g_test_trap_assert_stderr ("*ERROR*test_fork_fail*should not be reached*");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fork out to assert stdout and stderr patterns */
|
|
|
|
static void
|
|
|
|
test_fork_patterns (void)
|
|
|
|
{
|
|
|
|
if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
|
|
|
|
{
|
|
|
|
g_print ("some stdout text: somagic17\n");
|
|
|
|
g_printerr ("some stderr text: semagic43\n");
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
g_test_trap_assert_passed();
|
|
|
|
g_test_trap_assert_stdout ("*somagic17*");
|
|
|
|
g_test_trap_assert_stderr ("*semagic43*");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fork out for a timeout test */
|
|
|
|
static void
|
|
|
|
test_fork_timeout (void)
|
|
|
|
{
|
|
|
|
/* allow child to run for only a fraction of a second */
|
|
|
|
if (g_test_trap_fork (0.11 * 1000000, 0))
|
|
|
|
{
|
|
|
|
/* loop and sleep forever */
|
|
|
|
while (TRUE)
|
|
|
|
g_usleep (1000 * 1000);
|
|
|
|
}
|
|
|
|
g_test_trap_assert_failed();
|
|
|
|
g_assert (g_test_trap_reached_timeout());
|
|
|
|
}
|
|
|
|
|
2012-11-24 15:58:27 -05:00
|
|
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
|
|
|
#endif /* G_OS_UNIX */
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_subprocess_fail_child (void)
|
|
|
|
{
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_subprocess_fail (void)
|
|
|
|
{
|
|
|
|
g_test_trap_subprocess ("/subprocess/fail:child",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
|
|
|
g_test_trap_assert_failed ();
|
|
|
|
g_test_trap_assert_stderr ("*ERROR*test_subprocess_fail_child*should not be reached*");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_subprocess_no_such_test_child (void)
|
|
|
|
{
|
|
|
|
g_test_trap_subprocess ("/subprocess/this-test-does-not-exist",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_subprocess_no_such_test (void)
|
|
|
|
{
|
|
|
|
g_test_trap_subprocess ("/subprocess/no-such-test:child",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
|
|
|
g_test_trap_assert_failed ();
|
|
|
|
g_test_trap_assert_stderr ("*assertion failed*g_test_case_exists*");
|
|
|
|
g_test_trap_assert_stderr_unmatched ("*should not be reached*");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_subprocess_patterns_child (void)
|
|
|
|
{
|
|
|
|
g_print ("some stdout text: somagic17\n");
|
|
|
|
g_printerr ("some stderr text: semagic43\n");
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_subprocess_patterns (void)
|
|
|
|
{
|
|
|
|
g_test_trap_subprocess ("/subprocess/patterns:child",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR);
|
|
|
|
g_test_trap_assert_passed ();
|
|
|
|
g_test_trap_assert_stdout ("*somagic17*");
|
|
|
|
g_test_trap_assert_stderr ("*semagic43*");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_subprocess_timeout_child (void)
|
|
|
|
{
|
|
|
|
/* loop and sleep forever */
|
|
|
|
while (TRUE)
|
|
|
|
g_usleep (1000 * 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_subprocess_timeout (void)
|
|
|
|
{
|
|
|
|
/* allow child to run for only a fraction of a second */
|
|
|
|
g_test_trap_subprocess ("/subprocess/timeout:child",
|
|
|
|
0.11 * 1000000, 0);
|
|
|
|
g_test_trap_assert_failed ();
|
|
|
|
g_assert (g_test_trap_reached_timeout ());
|
|
|
|
}
|
|
|
|
|
2007-11-20 15:00:23 +00:00
|
|
|
/* run a test with fixture setup and teardown */
|
|
|
|
typedef struct {
|
|
|
|
guint seed;
|
|
|
|
guint prime;
|
|
|
|
gchar *msg;
|
|
|
|
} Fixturetest;
|
|
|
|
static void
|
2007-12-05 10:42:09 +00:00
|
|
|
fixturetest_setup (Fixturetest *fix,
|
|
|
|
gconstpointer test_data)
|
2007-11-20 15:00:23 +00:00
|
|
|
{
|
2007-12-05 10:42:09 +00:00
|
|
|
g_assert (test_data == (void*) 0xc0cac01a);
|
2007-11-20 15:00:23 +00:00
|
|
|
fix->seed = 18;
|
|
|
|
fix->prime = 19;
|
|
|
|
fix->msg = g_strdup_printf ("%d", fix->prime);
|
|
|
|
}
|
|
|
|
static void
|
2007-12-05 10:42:09 +00:00
|
|
|
fixturetest_test (Fixturetest *fix,
|
|
|
|
gconstpointer test_data)
|
2007-11-20 15:00:23 +00:00
|
|
|
{
|
|
|
|
guint prime = g_spaced_primes_closest (fix->seed);
|
|
|
|
g_assert_cmpint (prime, ==, fix->prime);
|
|
|
|
prime = g_ascii_strtoull (fix->msg, NULL, 0);
|
|
|
|
g_assert_cmpint (prime, ==, fix->prime);
|
2007-12-05 10:42:09 +00:00
|
|
|
g_assert (test_data == (void*) 0xc0cac01a);
|
2007-11-20 15:00:23 +00:00
|
|
|
}
|
|
|
|
static void
|
2007-12-05 10:42:09 +00:00
|
|
|
fixturetest_teardown (Fixturetest *fix,
|
|
|
|
gconstpointer test_data)
|
2007-11-20 15:00:23 +00:00
|
|
|
{
|
2007-12-05 10:42:09 +00:00
|
|
|
g_assert (test_data == (void*) 0xc0cac01a);
|
2007-11-20 15:00:23 +00:00
|
|
|
g_free (fix->msg);
|
|
|
|
}
|
|
|
|
|
2007-11-20 15:00:28 +00:00
|
|
|
static struct {
|
|
|
|
int bit, vint1, vint2, irange;
|
|
|
|
long double vdouble, drange;
|
|
|
|
} shared_rand_state;
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_rand1 (void)
|
|
|
|
{
|
|
|
|
shared_rand_state.bit = g_test_rand_bit();
|
|
|
|
shared_rand_state.vint1 = g_test_rand_int();
|
|
|
|
shared_rand_state.vint2 = g_test_rand_int();
|
|
|
|
g_assert_cmpint (shared_rand_state.vint1, !=, shared_rand_state.vint2);
|
|
|
|
shared_rand_state.irange = g_test_rand_int_range (17, 35);
|
|
|
|
g_assert_cmpint (shared_rand_state.irange, >=, 17);
|
|
|
|
g_assert_cmpint (shared_rand_state.irange, <=, 35);
|
|
|
|
shared_rand_state.vdouble = g_test_rand_double();
|
|
|
|
shared_rand_state.drange = g_test_rand_double_range (-999, +17);
|
|
|
|
g_assert_cmpfloat (shared_rand_state.drange, >=, -999);
|
|
|
|
g_assert_cmpfloat (shared_rand_state.drange, <=, +17);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_rand2 (void)
|
|
|
|
{
|
|
|
|
/* this test only works if run after test1.
|
|
|
|
* we do this to check that random number generators
|
|
|
|
* are reseeded upon fixture setup.
|
|
|
|
*/
|
|
|
|
g_assert_cmpint (shared_rand_state.bit, ==, g_test_rand_bit());
|
|
|
|
g_assert_cmpint (shared_rand_state.vint1, ==, g_test_rand_int());
|
|
|
|
g_assert_cmpint (shared_rand_state.vint2, ==, g_test_rand_int());
|
|
|
|
g_assert_cmpint (shared_rand_state.irange, ==, g_test_rand_int_range (17, 35));
|
|
|
|
g_assert_cmpfloat (shared_rand_state.vdouble, ==, g_test_rand_double());
|
|
|
|
g_assert_cmpfloat (shared_rand_state.drange, ==, g_test_rand_double_range (-999, +17));
|
|
|
|
}
|
|
|
|
|
2007-12-05 10:42:09 +00:00
|
|
|
static void
|
|
|
|
test_data_test (gconstpointer test_data)
|
|
|
|
{
|
|
|
|
g_assert (test_data == (void*) 0xc0c0baba);
|
|
|
|
}
|
|
|
|
|
2008-07-25 13:49:00 +00:00
|
|
|
static void
|
|
|
|
test_random_conversions (void)
|
|
|
|
{
|
|
|
|
/* very simple conversion test using random numbers */
|
|
|
|
int vint = g_test_rand_int();
|
|
|
|
char *err, *str = g_strdup_printf ("%d", vint);
|
|
|
|
gint64 vint64 = g_ascii_strtoll (str, &err, 10);
|
|
|
|
g_assert_cmphex (vint, ==, vint64);
|
|
|
|
g_assert (!err || *err == 0);
|
|
|
|
g_free (str);
|
|
|
|
}
|
|
|
|
|
2009-09-10 16:40:11 +02:00
|
|
|
static gboolean
|
|
|
|
fatal_handler (const gchar *log_domain,
|
|
|
|
GLogLevelFlags log_level,
|
|
|
|
const gchar *message,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-11-24 16:34:13 -05:00
|
|
|
test_fatal_log_handler_critical_pass (void)
|
2009-09-10 16:40:11 +02:00
|
|
|
{
|
|
|
|
g_test_log_set_fatal_handler (fatal_handler, NULL);
|
2012-11-24 16:34:13 -05:00
|
|
|
g_str_has_prefix (NULL, "file://");
|
|
|
|
g_critical ("Test passing");
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_fatal_log_handler_error_fail (void)
|
|
|
|
{
|
|
|
|
g_error ("Test failing");
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_fatal_log_handler_critical_fail (void)
|
|
|
|
{
|
|
|
|
g_str_has_prefix (NULL, "file://");
|
|
|
|
g_critical ("Test passing");
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_fatal_log_handler (void)
|
|
|
|
{
|
|
|
|
g_test_trap_subprocess ("/misc/fatal-log-handler:critical-pass",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
2010-07-26 23:06:33 -04:00
|
|
|
g_test_trap_assert_passed ();
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_trap_assert_stderr ("*CRITICAL*g_str_has_prefix*");
|
|
|
|
g_test_trap_assert_stderr ("*CRITICAL*Test passing*");
|
2009-09-10 16:40:11 +02:00
|
|
|
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_trap_subprocess ("/misc/fatal-log-handler:error-fail",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
2009-09-10 16:40:11 +02:00
|
|
|
g_test_trap_assert_failed ();
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_trap_assert_stderr ("*ERROR*Test failing*");
|
2009-09-10 16:40:11 +02:00
|
|
|
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_trap_subprocess ("/misc/fatal-log-handler:critical-fail",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
2009-09-10 16:40:11 +02:00
|
|
|
g_test_trap_assert_failed ();
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_trap_assert_stderr ("*CRITICAL*g_str_has_prefix*");
|
|
|
|
g_test_trap_assert_stderr_unmatched ("*CRITICAL*Test passing*");
|
2009-09-10 16:40:11 +02:00
|
|
|
}
|
|
|
|
|
2012-07-30 16:05:08 -04:00
|
|
|
static void
|
2012-11-24 16:34:13 -05:00
|
|
|
test_expected_messages_warning (void)
|
2012-07-30 16:05:08 -04:00
|
|
|
{
|
|
|
|
g_warning ("This is a %d warning", g_random_int ());
|
|
|
|
g_return_if_reached ();
|
|
|
|
}
|
|
|
|
|
2012-11-24 16:34:13 -05:00
|
|
|
static void
|
|
|
|
test_expected_messages_expect_warning (void)
|
|
|
|
{
|
|
|
|
g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_WARNING,
|
|
|
|
"This is a * warning");
|
|
|
|
test_expected_messages_warning ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_expected_messages_wrong_warning (void)
|
|
|
|
{
|
|
|
|
g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
|
|
|
|
"*should not be *");
|
|
|
|
test_expected_messages_warning ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_expected_messages_expected (void)
|
|
|
|
{
|
|
|
|
g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_WARNING,
|
|
|
|
"This is a * warning");
|
|
|
|
g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
|
|
|
|
"*should not be reached");
|
|
|
|
|
|
|
|
test_expected_messages_warning ();
|
|
|
|
|
|
|
|
g_test_assert_expected_messages ();
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_expected_messages_extra_warning (void)
|
|
|
|
{
|
|
|
|
g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_WARNING,
|
|
|
|
"This is a * warning");
|
|
|
|
g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
|
|
|
|
"*should not be reached");
|
|
|
|
g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
|
|
|
|
"nope");
|
|
|
|
|
|
|
|
test_expected_messages_warning ();
|
|
|
|
|
|
|
|
/* If we don't assert, it won't notice the missing message */
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_expected_messages_unexpected_extra_warning (void)
|
|
|
|
{
|
|
|
|
g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_WARNING,
|
|
|
|
"This is a * warning");
|
|
|
|
g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
|
|
|
|
"*should not be reached");
|
|
|
|
g_test_expect_message (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL,
|
|
|
|
"nope");
|
|
|
|
|
|
|
|
test_expected_messages_warning ();
|
|
|
|
|
|
|
|
g_test_assert_expected_messages ();
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
2012-07-30 16:05:08 -04:00
|
|
|
static void
|
|
|
|
test_expected_messages (void)
|
|
|
|
{
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_trap_subprocess ("/misc/expected-messages:warning",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
2012-07-30 16:05:08 -04:00
|
|
|
g_test_trap_assert_failed ();
|
|
|
|
g_test_trap_assert_stderr ("*This is a * warning*");
|
|
|
|
g_test_trap_assert_stderr_unmatched ("*should not be reached*");
|
|
|
|
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_trap_subprocess ("/misc/expected-messages:expect-warning",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
2012-07-30 16:05:08 -04:00
|
|
|
g_test_trap_assert_failed ();
|
|
|
|
g_test_trap_assert_stderr_unmatched ("*This is a * warning*");
|
|
|
|
g_test_trap_assert_stderr ("*should not be reached*");
|
|
|
|
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_trap_subprocess ("/misc/expected-messages:wrong-warning",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
2012-07-30 16:05:08 -04:00
|
|
|
g_test_trap_assert_failed ();
|
|
|
|
g_test_trap_assert_stderr_unmatched ("*should not be reached*");
|
|
|
|
g_test_trap_assert_stderr ("*Did not see expected message CRITICAL*should not be *WARNING*This is a * warning*");
|
|
|
|
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_trap_subprocess ("/misc/expected-messages:expected",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
2012-07-30 16:05:08 -04:00
|
|
|
g_test_trap_assert_passed ();
|
|
|
|
g_test_trap_assert_stderr ("");
|
|
|
|
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_trap_subprocess ("/misc/expected-messages:extra-warning",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
2012-07-30 16:05:08 -04:00
|
|
|
g_test_trap_assert_passed ();
|
|
|
|
g_test_trap_assert_stderr ("");
|
|
|
|
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_trap_subprocess ("/misc/expected-messages:unexpected-extra-warning",
|
|
|
|
0, G_TEST_TRAP_SILENCE_STDERR);
|
2012-07-30 16:05:08 -04:00
|
|
|
g_test_trap_assert_failed ();
|
|
|
|
g_test_trap_assert_stderr ("*Did not see expected message CRITICAL*nope*");
|
|
|
|
}
|
|
|
|
|
2007-11-20 15:00:23 +00:00
|
|
|
int
|
|
|
|
main (int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
g_test_init (&argc, &argv, NULL);
|
|
|
|
|
2007-11-20 15:00:29 +00:00
|
|
|
g_test_add_func ("/random-generator/rand-1", test_rand1);
|
|
|
|
g_test_add_func ("/random-generator/rand-2", test_rand2);
|
2008-07-25 13:49:00 +00:00
|
|
|
g_test_add_func ("/random-generator/random-conversions", test_random_conversions);
|
2007-11-20 15:00:29 +00:00
|
|
|
g_test_add_func ("/misc/assertions", test_assertions);
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_add_func ("/misc/assertions:bad_cmpstr", test_assertions_bad_cmpstr);
|
|
|
|
g_test_add_func ("/misc/assertions:bad_cmpint", test_assertions_bad_cmpint);
|
2007-12-05 10:42:09 +00:00
|
|
|
g_test_add_data_func ("/misc/test-data", (void*) 0xc0c0baba, test_data_test);
|
|
|
|
g_test_add ("/misc/primetoul", Fixturetest, (void*) 0xc0cac01a, fixturetest_setup, fixturetest_test, fixturetest_teardown);
|
initialize automake variables EXTRA_DIST and TEST_PROGS for unconditional
2007-11-21 21:06:47 Tim Janik <timj@imendio.com>
* Makefile.decl: initialize automake variables EXTRA_DIST and
TEST_PROGS for unconditional appending via += in other makefiles.
define recursive test targets: test, test-report, perf-report,
full-report, as described here:
http://mail.gnome.org/archives/gtk-devel-list/2007-November/msg00000.html
* Makefile.am:
* build/win32/vs8/Makefile.am, build/win32/dirent/Makefile.am:
* build/win32/Makefile.am, build/Makefile.am:
* docs/Makefile.am, docs/reference/Makefile.am:
* docs/reference/glib/Makefile.am, docs/reference/gobject/Makefile.am:
* gmodule/Makefile.am, tests/Makefile.am:
* tests/refcount/Makefile.am, tests/gobject/Makefile.am:
* glib/update-pcre/Makefile.am, glib/libcharset/Makefile.am:
* glib/tests/Makefile.am, glib/pcre/Makefile.am:
* glib/gnulib/Makefile.am, gobject/Makefile.am, m4macros/Makefile.am:
* gthread/Makefile.am, glib/Makefile.am:
include $(top_srcdir)/Makefile.decl, adapted EXTRA_DIST assignments.
* glib/tests/Makefile.am: removed example testing rules.
* glib/tests/testing.c: conditionalized performance and slow tests.
* glib/gtestutils.h:
* glib/gtestutils.c: work around g_test_config_vars not changing its
exported value after value assignments, aparently due to symbol aliases.
* glib/gtester.c: fixed off-by-one error which produced junk in logs.
* configure.in: check for python >= 2.4 and provide $PYTHON for scripts.
svn path=/trunk/; revision=5914
2007-11-21 20:09:46 +00:00
|
|
|
if (g_test_perf())
|
|
|
|
g_test_add_func ("/misc/timer", test_timer);
|
2012-11-24 15:58:27 -05:00
|
|
|
|
|
|
|
#ifdef G_OS_UNIX
|
2007-11-20 15:00:29 +00:00
|
|
|
g_test_add_func ("/forking/fail assertion", test_fork_fail);
|
|
|
|
g_test_add_func ("/forking/patterns", test_fork_patterns);
|
initialize automake variables EXTRA_DIST and TEST_PROGS for unconditional
2007-11-21 21:06:47 Tim Janik <timj@imendio.com>
* Makefile.decl: initialize automake variables EXTRA_DIST and
TEST_PROGS for unconditional appending via += in other makefiles.
define recursive test targets: test, test-report, perf-report,
full-report, as described here:
http://mail.gnome.org/archives/gtk-devel-list/2007-November/msg00000.html
* Makefile.am:
* build/win32/vs8/Makefile.am, build/win32/dirent/Makefile.am:
* build/win32/Makefile.am, build/Makefile.am:
* docs/Makefile.am, docs/reference/Makefile.am:
* docs/reference/glib/Makefile.am, docs/reference/gobject/Makefile.am:
* gmodule/Makefile.am, tests/Makefile.am:
* tests/refcount/Makefile.am, tests/gobject/Makefile.am:
* glib/update-pcre/Makefile.am, glib/libcharset/Makefile.am:
* glib/tests/Makefile.am, glib/pcre/Makefile.am:
* glib/gnulib/Makefile.am, gobject/Makefile.am, m4macros/Makefile.am:
* gthread/Makefile.am, glib/Makefile.am:
include $(top_srcdir)/Makefile.decl, adapted EXTRA_DIST assignments.
* glib/tests/Makefile.am: removed example testing rules.
* glib/tests/testing.c: conditionalized performance and slow tests.
* glib/gtestutils.h:
* glib/gtestutils.c: work around g_test_config_vars not changing its
exported value after value assignments, aparently due to symbol aliases.
* glib/gtester.c: fixed off-by-one error which produced junk in logs.
* configure.in: check for python >= 2.4 and provide $PYTHON for scripts.
svn path=/trunk/; revision=5914
2007-11-21 20:09:46 +00:00
|
|
|
if (g_test_slow())
|
|
|
|
g_test_add_func ("/forking/timeout", test_fork_timeout);
|
2012-11-24 15:58:27 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
g_test_add_func ("/subprocess/fail", test_subprocess_fail);
|
|
|
|
g_test_add_func ("/subprocess/fail:child", test_subprocess_fail_child);
|
|
|
|
g_test_add_func ("/subprocess/no-such-test", test_subprocess_no_such_test);
|
|
|
|
g_test_add_func ("/subprocess/no-such-test:child", test_subprocess_no_such_test_child);
|
|
|
|
if (g_test_slow ())
|
|
|
|
{
|
|
|
|
g_test_add_func ("/subprocess/timeout", test_subprocess_timeout);
|
|
|
|
g_test_add_func ("/subprocess/timeout:child", test_subprocess_timeout_child);
|
|
|
|
}
|
|
|
|
g_test_add_func ("/subprocess/patterns", test_subprocess_patterns);
|
|
|
|
g_test_add_func ("/subprocess/patterns:child", test_subprocess_patterns_child);
|
|
|
|
|
2010-07-26 23:06:33 -04:00
|
|
|
g_test_add_func ("/misc/fatal-log-handler", test_fatal_log_handler);
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_add_func ("/misc/fatal-log-handler:critical-pass", test_fatal_log_handler_critical_pass);
|
|
|
|
g_test_add_func ("/misc/fatal-log-handler:error-fail", test_fatal_log_handler_error_fail);
|
|
|
|
g_test_add_func ("/misc/fatal-log-handler:critical-fail", test_fatal_log_handler_critical_fail);
|
|
|
|
|
2012-07-30 16:05:08 -04:00
|
|
|
g_test_add_func ("/misc/expected-messages", test_expected_messages);
|
2012-11-24 16:34:13 -05:00
|
|
|
g_test_add_func ("/misc/expected-messages:warning", test_expected_messages_warning);
|
|
|
|
g_test_add_func ("/misc/expected-messages:expect-warning", test_expected_messages_expect_warning);
|
|
|
|
g_test_add_func ("/misc/expected-messages:wrong-warning", test_expected_messages_wrong_warning);
|
|
|
|
g_test_add_func ("/misc/expected-messages:expected", test_expected_messages_expected);
|
|
|
|
g_test_add_func ("/misc/expected-messages:extra-warning", test_expected_messages_extra_warning);
|
|
|
|
g_test_add_func ("/misc/expected-messages:unexpected-extra-warning", test_expected_messages_unexpected_extra_warning);
|
2007-11-20 15:00:26 +00:00
|
|
|
|
2007-11-20 15:00:29 +00:00
|
|
|
return g_test_run();
|
2007-11-20 15:00:23 +00:00
|
|
|
}
|