mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-01 17:31:10 +00:00
move common code to a lib
Original commit message from CVS: move common code to a lib
This commit is contained in:
parent
993b529a3c
commit
8f8da12228
12 changed files with 405 additions and 338 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2004-12-21 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* check/Makefile.am:
|
||||||
|
* check/gst-libs/gdp.c:
|
||||||
|
* check/gst/gstobject.c:
|
||||||
|
* check/gstcheck.c:
|
||||||
|
* check/gstcheck.h:
|
||||||
|
* gst/gstelement.c:
|
||||||
|
move common code to a lib
|
||||||
|
|
||||||
2004-12-21 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-12-21 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* check/Makefile.am:
|
* check/Makefile.am:
|
||||||
|
|
|
@ -2,8 +2,14 @@ TESTS = gst/gstobject gst-libs/gdp
|
||||||
|
|
||||||
check_PROGRAMS = $(TESTS)
|
check_PROGRAMS = $(TESTS)
|
||||||
|
|
||||||
|
noinst_LTLIBRARIES = libgstcheck.la
|
||||||
|
|
||||||
|
libgstcheck_la_SOURCES = gstcheck.c
|
||||||
|
libgstcheck_la_LIBADD = $(GST_OBJ_LIBS)
|
||||||
|
noinst_HEADERS = gstcheck.h
|
||||||
|
|
||||||
AM_CFLAGS = $(GST_OBJ_CFLAGS) $(CHECK_CFLAGS)
|
AM_CFLAGS = $(GST_OBJ_CFLAGS) $(CHECK_CFLAGS)
|
||||||
LDADD = $(GST_OBJ_LIBS) $(CHECK_LIBS)
|
LDADD = $(GST_OBJ_LIBS) $(CHECK_LIBS) libgstcheck.la
|
||||||
|
|
||||||
gst_libs_gdp_SOURCES = \
|
gst_libs_gdp_SOURCES = \
|
||||||
gst-libs/gdp.c \
|
gst-libs/gdp.c \
|
||||||
|
|
|
@ -20,47 +20,11 @@
|
||||||
* Boston, MA 02111-1307, USA.
|
* Boston, MA 02111-1307, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <string.h> /* memcmp */
|
#include "../gstcheck.h"
|
||||||
|
|
||||||
#include <check.h>
|
|
||||||
|
|
||||||
#include <gst/gst.h>
|
|
||||||
#include <gst/dataprotocol/dataprotocol.h>
|
#include <gst/dataprotocol/dataprotocol.h>
|
||||||
|
|
||||||
#include "libs/gst/dataprotocol/dp-private.h" /* private header */
|
#include "libs/gst/dataprotocol/dp-private.h" /* private header */
|
||||||
|
|
||||||
|
|
||||||
/* FIXME: externalize */
|
|
||||||
/* logging function for tests
|
|
||||||
* a test uses g_message() to log a debug line
|
|
||||||
* a gst unit test can be run with GST_TEST_DEBUG env var set to see the
|
|
||||||
* messages
|
|
||||||
*/
|
|
||||||
gboolean _gst_test_debug = FALSE;
|
|
||||||
|
|
||||||
gboolean _gst_test_threads_running = FALSE;
|
|
||||||
|
|
||||||
void gst_test_log_func
|
|
||||||
(const gchar * log_domain, GLogLevelFlags log_level,
|
|
||||||
const gchar * message, gpointer user_data)
|
|
||||||
{
|
|
||||||
// g_print ("HANDLER CALLED\n");
|
|
||||||
if (_gst_test_debug) {
|
|
||||||
g_print (message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* initialize GStreamer testing */
|
|
||||||
void
|
|
||||||
gst_test_init (void)
|
|
||||||
{
|
|
||||||
if (g_getenv ("GST_TEST_DEBUG"))
|
|
||||||
_gst_test_debug = TRUE;
|
|
||||||
|
|
||||||
g_log_set_handler (NULL, G_LOG_LEVEL_MESSAGE, gst_test_log_func, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* test our method of reading and writing headers using TO/FROM_BE */
|
/* test our method of reading and writing headers using TO/FROM_BE */
|
||||||
START_TEST (test_conversion)
|
START_TEST (test_conversion)
|
||||||
{
|
{
|
||||||
|
@ -302,8 +266,8 @@ main (int argc, char **argv)
|
||||||
SRunner *sr = srunner_create (s);
|
SRunner *sr = srunner_create (s);
|
||||||
|
|
||||||
gst_init (&argc, &argv);
|
gst_init (&argc, &argv);
|
||||||
gst_test_init ();
|
|
||||||
gst_dp_init ();
|
gst_dp_init ();
|
||||||
|
gst_check_init ();
|
||||||
|
|
||||||
srunner_run_all (sr, CK_NORMAL);
|
srunner_run_all (sr, CK_NORMAL);
|
||||||
nf = srunner_ntests_failed (sr);
|
nf = srunner_ntests_failed (sr);
|
||||||
|
|
|
@ -20,44 +20,7 @@
|
||||||
* Boston, MA 02111-1307, USA.
|
* Boston, MA 02111-1307, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <signal.h>
|
#include "../gstcheck.h"
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
|
|
||||||
#include <check.h>
|
|
||||||
|
|
||||||
#include <gst/gst.h>
|
|
||||||
|
|
||||||
|
|
||||||
/* FIXME: externalize */
|
|
||||||
/* logging function for tests
|
|
||||||
* a test uses g_message() to log a debug line
|
|
||||||
* a gst unit test can be run with GST_TEST_DEBUG env var set to see the
|
|
||||||
* messages
|
|
||||||
*/
|
|
||||||
gboolean _gst_test_debug = FALSE;
|
|
||||||
|
|
||||||
gboolean _gst_test_threads_running = FALSE;
|
|
||||||
|
|
||||||
void gst_test_log_func
|
|
||||||
(const gchar * log_domain, GLogLevelFlags log_level,
|
|
||||||
const gchar * message, gpointer user_data)
|
|
||||||
{
|
|
||||||
// g_print ("HANDLER CALLED\n");
|
|
||||||
if (_gst_test_debug) {
|
|
||||||
g_print (message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* initialize GStreamer testing */
|
|
||||||
void
|
|
||||||
gst_test_init (void)
|
|
||||||
{
|
|
||||||
if (g_getenv ("GST_TEST_DEBUG"))
|
|
||||||
_gst_test_debug = TRUE;
|
|
||||||
|
|
||||||
g_log_set_handler (NULL, G_LOG_LEVEL_MESSAGE, gst_test_log_func, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Create a fake subclass
|
Create a fake subclass
|
||||||
|
@ -162,95 +125,8 @@ START_TEST (test_fake_object_name)
|
||||||
}
|
}
|
||||||
|
|
||||||
END_TEST
|
END_TEST
|
||||||
/***
|
|
||||||
* thread test macros and variables
|
|
||||||
*/
|
|
||||||
GList * thread_list = NULL;
|
|
||||||
GMutex *mutex;
|
|
||||||
GCond *start_cond; /* used to notify main thread of thread startups */
|
|
||||||
GCond *sync_cond; /* used to synchronize all threads and main thread */
|
|
||||||
|
|
||||||
#define MAIN_START_THREADS(count, function, data) \
|
|
||||||
MAIN_INIT(); \
|
|
||||||
MAIN_START_THREAD_FUNCTIONS(count, function, data); \
|
|
||||||
MAIN_SYNCHRONIZE();
|
|
||||||
|
|
||||||
#define MAIN_INIT() \
|
|
||||||
G_STMT_START { \
|
|
||||||
_gst_test_threads_running = TRUE; \
|
|
||||||
\
|
|
||||||
mutex = g_mutex_new (); \
|
|
||||||
start_cond = g_cond_new (); \
|
|
||||||
sync_cond = g_cond_new (); \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
#define MAIN_START_THREAD_FUNCTIONS(count, function, data) \
|
|
||||||
G_STMT_START { \
|
|
||||||
int i; \
|
|
||||||
for (i = 0; i < count; ++i) { \
|
|
||||||
MAIN_START_THREAD_FUNCTION (i, function, data); \
|
|
||||||
} \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
#define MAIN_START_THREAD_FUNCTION(i, function, data) \
|
|
||||||
G_STMT_START { \
|
|
||||||
GThread *thread = NULL; \
|
|
||||||
g_message ("MAIN: creating thread %d\n", i); \
|
|
||||||
g_mutex_lock (mutex); \
|
|
||||||
thread = g_thread_create ((GThreadFunc) function, data, \
|
|
||||||
TRUE, NULL); \
|
|
||||||
/* wait for thread to signal us that it's ready */ \
|
|
||||||
g_message ("MAIN: waiting for thread %d\n", i); \
|
|
||||||
g_cond_wait (start_cond, mutex); \
|
|
||||||
g_mutex_unlock (mutex); \
|
|
||||||
\
|
|
||||||
thread_list = g_list_append (thread_list, thread); \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
|
|
||||||
#define MAIN_SYNCHRONIZE() \
|
|
||||||
G_STMT_START { \
|
|
||||||
g_message ("MAIN: synchronizing\n"); \
|
|
||||||
g_cond_broadcast (sync_cond); \
|
|
||||||
g_message ("MAIN: synchronized\n"); \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
#define MAIN_STOP_THREADS() \
|
|
||||||
G_STMT_START { \
|
|
||||||
_gst_test_threads_running = FALSE; \
|
|
||||||
\
|
|
||||||
/* join all threads */ \
|
|
||||||
g_message ("MAIN: joining\n"); \
|
|
||||||
g_list_foreach (thread_list, (GFunc) g_thread_join, NULL); \
|
|
||||||
g_message ("MAIN: joined\n"); \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
#define THREAD_START() \
|
|
||||||
THREAD_STARTED(); \
|
|
||||||
THREAD_SYNCHRONIZE();
|
|
||||||
|
|
||||||
#define THREAD_STARTED() \
|
|
||||||
G_STMT_START { \
|
|
||||||
/* signal main thread that we started */ \
|
|
||||||
g_message ("THREAD %p: started\n", g_thread_self ()); \
|
|
||||||
g_mutex_lock (mutex); \
|
|
||||||
g_cond_signal (start_cond); \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
#define THREAD_SYNCHRONIZE() \
|
|
||||||
G_STMT_START { \
|
|
||||||
/* synchronize everyone */ \
|
|
||||||
g_message ("THREAD %p: syncing\n", g_thread_self ()); \
|
|
||||||
g_cond_wait (sync_cond, mutex); \
|
|
||||||
g_message ("THREAD %p: synced\n", g_thread_self ()); \
|
|
||||||
g_mutex_unlock (mutex); \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
#define THREAD_TEST_RUNNING() (_gst_test_threads_running == TRUE)
|
|
||||||
|
|
||||||
/* thread function for threaded name change test */
|
/* thread function for threaded name change test */
|
||||||
gpointer
|
gpointer thread_name_object (GstObject * object)
|
||||||
thread_name_object (GstObject * object)
|
|
||||||
{
|
{
|
||||||
gchar *thread_id = g_strdup_printf ("%p", g_thread_self ());
|
gchar *thread_id = g_strdup_printf ("%p", g_thread_self ());
|
||||||
|
|
||||||
|
@ -479,7 +355,7 @@ main (int argc, char **argv)
|
||||||
SRunner *sr = srunner_create (s);
|
SRunner *sr = srunner_create (s);
|
||||||
|
|
||||||
gst_init (&argc, &argv);
|
gst_init (&argc, &argv);
|
||||||
gst_test_init ();
|
gst_check_init ();
|
||||||
|
|
||||||
srunner_run_all (sr, CK_NORMAL);
|
srunner_run_all (sr, CK_NORMAL);
|
||||||
nf = srunner_ntests_failed (sr);
|
nf = srunner_ntests_failed (sr);
|
||||||
|
|
51
check/gstcheck.c
Normal file
51
check/gstcheck.c
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
/* GStreamer
|
||||||
|
*
|
||||||
|
* Common code for GStreamer unittests
|
||||||
|
*
|
||||||
|
* Copyright (C) <2004> Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library 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. See the GNU
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this library; if not, write to the
|
||||||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <gst/gst.h>
|
||||||
|
|
||||||
|
/* logging function for tests
|
||||||
|
* a test uses g_message() to log a debug line
|
||||||
|
* a gst unit test can be run with GST_TEST_DEBUG env var set to see the
|
||||||
|
* messages
|
||||||
|
*/
|
||||||
|
|
||||||
|
gboolean _gst_check_debug = FALSE;
|
||||||
|
|
||||||
|
void gst_check_log_func
|
||||||
|
(const gchar * log_domain, GLogLevelFlags log_level,
|
||||||
|
const gchar * message, gpointer user_data)
|
||||||
|
{
|
||||||
|
// g_print ("HANDLER CALLED\n");
|
||||||
|
if (_gst_check_debug) {
|
||||||
|
g_print (message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* initialize GStreamer testing */
|
||||||
|
void
|
||||||
|
gst_check_init (void)
|
||||||
|
{
|
||||||
|
if (g_getenv ("GST_TEST_DEBUG"))
|
||||||
|
_gst_check_debug = TRUE;
|
||||||
|
|
||||||
|
g_log_set_handler (NULL, G_LOG_LEVEL_MESSAGE, gst_check_log_func, NULL);
|
||||||
|
}
|
131
check/gstcheck.h
Normal file
131
check/gstcheck.h
Normal file
|
@ -0,0 +1,131 @@
|
||||||
|
/* GStreamer
|
||||||
|
*
|
||||||
|
* Common code for GStreamer unittests
|
||||||
|
*
|
||||||
|
* Copyright (C) <2004> Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library 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. See the GNU
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this library; if not, write to the
|
||||||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __GST_CHECK_H__
|
||||||
|
#define __GST_CHECK_H__
|
||||||
|
|
||||||
|
#include <signal.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include <check.h>
|
||||||
|
|
||||||
|
#include <gst/gst.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* logging function for tests
|
||||||
|
* a test uses g_message() to log a debug line
|
||||||
|
* a gst unit test can be run with GST_TEST_DEBUG env var set to see the
|
||||||
|
* messages
|
||||||
|
*/
|
||||||
|
gboolean _gst_check_threads_running = FALSE;
|
||||||
|
|
||||||
|
void gst_check_init (void);
|
||||||
|
|
||||||
|
/***
|
||||||
|
* thread test macros and variables
|
||||||
|
*/
|
||||||
|
GList *thread_list = NULL;
|
||||||
|
GMutex *mutex;
|
||||||
|
GCond *start_cond; /* used to notify main thread of thread startups */
|
||||||
|
GCond *sync_cond; /* used to synchronize all threads and main thread */
|
||||||
|
|
||||||
|
#define MAIN_START_THREADS(count, function, data) \
|
||||||
|
MAIN_INIT(); \
|
||||||
|
MAIN_START_THREAD_FUNCTIONS(count, function, data); \
|
||||||
|
MAIN_SYNCHRONIZE();
|
||||||
|
|
||||||
|
#define MAIN_INIT() \
|
||||||
|
G_STMT_START { \
|
||||||
|
_gst_check_threads_running = TRUE; \
|
||||||
|
\
|
||||||
|
mutex = g_mutex_new (); \
|
||||||
|
start_cond = g_cond_new (); \
|
||||||
|
sync_cond = g_cond_new (); \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
#define MAIN_START_THREAD_FUNCTIONS(count, function, data) \
|
||||||
|
G_STMT_START { \
|
||||||
|
int i; \
|
||||||
|
for (i = 0; i < count; ++i) { \
|
||||||
|
MAIN_START_THREAD_FUNCTION (i, function, data); \
|
||||||
|
} \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
#define MAIN_START_THREAD_FUNCTION(i, function, data) \
|
||||||
|
G_STMT_START { \
|
||||||
|
GThread *thread = NULL; \
|
||||||
|
g_message ("MAIN: creating thread %d\n", i); \
|
||||||
|
g_mutex_lock (mutex); \
|
||||||
|
thread = g_thread_create ((GThreadFunc) function, data, \
|
||||||
|
TRUE, NULL); \
|
||||||
|
/* wait for thread to signal us that it's ready */ \
|
||||||
|
g_message ("MAIN: waiting for thread %d\n", i); \
|
||||||
|
g_cond_wait (start_cond, mutex); \
|
||||||
|
g_mutex_unlock (mutex); \
|
||||||
|
\
|
||||||
|
thread_list = g_list_append (thread_list, thread); \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
|
||||||
|
#define MAIN_SYNCHRONIZE() \
|
||||||
|
G_STMT_START { \
|
||||||
|
g_message ("MAIN: synchronizing\n"); \
|
||||||
|
g_cond_broadcast (sync_cond); \
|
||||||
|
g_message ("MAIN: synchronized\n"); \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
#define MAIN_STOP_THREADS() \
|
||||||
|
G_STMT_START { \
|
||||||
|
_gst_check_threads_running = FALSE; \
|
||||||
|
\
|
||||||
|
/* join all threads */ \
|
||||||
|
g_message ("MAIN: joining\n"); \
|
||||||
|
g_list_foreach (thread_list, (GFunc) g_thread_join, NULL); \
|
||||||
|
g_message ("MAIN: joined\n"); \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
#define THREAD_START() \
|
||||||
|
THREAD_STARTED(); \
|
||||||
|
THREAD_SYNCHRONIZE();
|
||||||
|
|
||||||
|
#define THREAD_STARTED() \
|
||||||
|
G_STMT_START { \
|
||||||
|
/* signal main thread that we started */ \
|
||||||
|
g_message ("THREAD %p: started\n", g_thread_self ()); \
|
||||||
|
g_mutex_lock (mutex); \
|
||||||
|
g_cond_signal (start_cond); \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
#define THREAD_SYNCHRONIZE() \
|
||||||
|
G_STMT_START { \
|
||||||
|
/* synchronize everyone */ \
|
||||||
|
g_message ("THREAD %p: syncing\n", g_thread_self ()); \
|
||||||
|
g_cond_wait (sync_cond, mutex); \
|
||||||
|
g_message ("THREAD %p: synced\n", g_thread_self ()); \
|
||||||
|
g_mutex_unlock (mutex); \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
#define THREAD_TEST_RUNNING() (_gst_check_threads_running == TRUE)
|
||||||
|
|
||||||
|
#endif /* __GST_CHECK_H__ */
|
||||||
|
|
|
@ -26,15 +26,16 @@
|
||||||
#include <gobject/gvaluecollector.h>
|
#include <gobject/gvaluecollector.h>
|
||||||
|
|
||||||
#include "gstelement.h"
|
#include "gstelement.h"
|
||||||
#include "gstbin.h"
|
|
||||||
#include "gstmarshal.h"
|
#include "gstmarshal.h"
|
||||||
#include "gsterror.h"
|
#include "gsterror.h"
|
||||||
#include "gstevent.h"
|
#include "gstevent.h"
|
||||||
#include "gstutils.h"
|
#include "gstutils.h"
|
||||||
#include "gstinfo.h"
|
#include "gstinfo.h"
|
||||||
#include "gst-i18n-lib.h"
|
#include "gst-i18n-lib.h"
|
||||||
|
|
||||||
#include "gstscheduler.h"
|
#include "gstscheduler.h"
|
||||||
#include "gstpipeline.h"
|
#include "gstbus.h"
|
||||||
|
|
||||||
/* Element signals and args */
|
/* Element signals and args */
|
||||||
enum
|
enum
|
||||||
|
@ -246,7 +247,7 @@ gst_element_release_request_pad (GstElement * element, GstPad * pad)
|
||||||
* gst_element_requires_clock:
|
* gst_element_requires_clock:
|
||||||
* @element: a #GstElement to query
|
* @element: a #GstElement to query
|
||||||
*
|
*
|
||||||
* Query if the element requiresd a clock
|
* Query if the element requires a clock.
|
||||||
*
|
*
|
||||||
* Returns: TRUE if the element requires a clock
|
* Returns: TRUE if the element requires a clock
|
||||||
*
|
*
|
||||||
|
|
|
@ -2,8 +2,14 @@ TESTS = gst/gstobject gst-libs/gdp
|
||||||
|
|
||||||
check_PROGRAMS = $(TESTS)
|
check_PROGRAMS = $(TESTS)
|
||||||
|
|
||||||
|
noinst_LTLIBRARIES = libgstcheck.la
|
||||||
|
|
||||||
|
libgstcheck_la_SOURCES = gstcheck.c
|
||||||
|
libgstcheck_la_LIBADD = $(GST_OBJ_LIBS)
|
||||||
|
noinst_HEADERS = gstcheck.h
|
||||||
|
|
||||||
AM_CFLAGS = $(GST_OBJ_CFLAGS) $(CHECK_CFLAGS)
|
AM_CFLAGS = $(GST_OBJ_CFLAGS) $(CHECK_CFLAGS)
|
||||||
LDADD = $(GST_OBJ_LIBS) $(CHECK_LIBS)
|
LDADD = $(GST_OBJ_LIBS) $(CHECK_LIBS) libgstcheck.la
|
||||||
|
|
||||||
gst_libs_gdp_SOURCES = \
|
gst_libs_gdp_SOURCES = \
|
||||||
gst-libs/gdp.c \
|
gst-libs/gdp.c \
|
||||||
|
|
|
@ -20,44 +20,7 @@
|
||||||
* Boston, MA 02111-1307, USA.
|
* Boston, MA 02111-1307, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <signal.h>
|
#include "../gstcheck.h"
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
|
|
||||||
#include <check.h>
|
|
||||||
|
|
||||||
#include <gst/gst.h>
|
|
||||||
|
|
||||||
|
|
||||||
/* FIXME: externalize */
|
|
||||||
/* logging function for tests
|
|
||||||
* a test uses g_message() to log a debug line
|
|
||||||
* a gst unit test can be run with GST_TEST_DEBUG env var set to see the
|
|
||||||
* messages
|
|
||||||
*/
|
|
||||||
gboolean _gst_test_debug = FALSE;
|
|
||||||
|
|
||||||
gboolean _gst_test_threads_running = FALSE;
|
|
||||||
|
|
||||||
void gst_test_log_func
|
|
||||||
(const gchar * log_domain, GLogLevelFlags log_level,
|
|
||||||
const gchar * message, gpointer user_data)
|
|
||||||
{
|
|
||||||
// g_print ("HANDLER CALLED\n");
|
|
||||||
if (_gst_test_debug) {
|
|
||||||
g_print (message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* initialize GStreamer testing */
|
|
||||||
void
|
|
||||||
gst_test_init (void)
|
|
||||||
{
|
|
||||||
if (g_getenv ("GST_TEST_DEBUG"))
|
|
||||||
_gst_test_debug = TRUE;
|
|
||||||
|
|
||||||
g_log_set_handler (NULL, G_LOG_LEVEL_MESSAGE, gst_test_log_func, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Create a fake subclass
|
Create a fake subclass
|
||||||
|
@ -162,95 +125,8 @@ START_TEST (test_fake_object_name)
|
||||||
}
|
}
|
||||||
|
|
||||||
END_TEST
|
END_TEST
|
||||||
/***
|
|
||||||
* thread test macros and variables
|
|
||||||
*/
|
|
||||||
GList * thread_list = NULL;
|
|
||||||
GMutex *mutex;
|
|
||||||
GCond *start_cond; /* used to notify main thread of thread startups */
|
|
||||||
GCond *sync_cond; /* used to synchronize all threads and main thread */
|
|
||||||
|
|
||||||
#define MAIN_START_THREADS(count, function, data) \
|
|
||||||
MAIN_INIT(); \
|
|
||||||
MAIN_START_THREAD_FUNCTIONS(count, function, data); \
|
|
||||||
MAIN_SYNCHRONIZE();
|
|
||||||
|
|
||||||
#define MAIN_INIT() \
|
|
||||||
G_STMT_START { \
|
|
||||||
_gst_test_threads_running = TRUE; \
|
|
||||||
\
|
|
||||||
mutex = g_mutex_new (); \
|
|
||||||
start_cond = g_cond_new (); \
|
|
||||||
sync_cond = g_cond_new (); \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
#define MAIN_START_THREAD_FUNCTIONS(count, function, data) \
|
|
||||||
G_STMT_START { \
|
|
||||||
int i; \
|
|
||||||
for (i = 0; i < count; ++i) { \
|
|
||||||
MAIN_START_THREAD_FUNCTION (i, function, data); \
|
|
||||||
} \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
#define MAIN_START_THREAD_FUNCTION(i, function, data) \
|
|
||||||
G_STMT_START { \
|
|
||||||
GThread *thread = NULL; \
|
|
||||||
g_message ("MAIN: creating thread %d\n", i); \
|
|
||||||
g_mutex_lock (mutex); \
|
|
||||||
thread = g_thread_create ((GThreadFunc) function, data, \
|
|
||||||
TRUE, NULL); \
|
|
||||||
/* wait for thread to signal us that it's ready */ \
|
|
||||||
g_message ("MAIN: waiting for thread %d\n", i); \
|
|
||||||
g_cond_wait (start_cond, mutex); \
|
|
||||||
g_mutex_unlock (mutex); \
|
|
||||||
\
|
|
||||||
thread_list = g_list_append (thread_list, thread); \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
|
|
||||||
#define MAIN_SYNCHRONIZE() \
|
|
||||||
G_STMT_START { \
|
|
||||||
g_message ("MAIN: synchronizing\n"); \
|
|
||||||
g_cond_broadcast (sync_cond); \
|
|
||||||
g_message ("MAIN: synchronized\n"); \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
#define MAIN_STOP_THREADS() \
|
|
||||||
G_STMT_START { \
|
|
||||||
_gst_test_threads_running = FALSE; \
|
|
||||||
\
|
|
||||||
/* join all threads */ \
|
|
||||||
g_message ("MAIN: joining\n"); \
|
|
||||||
g_list_foreach (thread_list, (GFunc) g_thread_join, NULL); \
|
|
||||||
g_message ("MAIN: joined\n"); \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
#define THREAD_START() \
|
|
||||||
THREAD_STARTED(); \
|
|
||||||
THREAD_SYNCHRONIZE();
|
|
||||||
|
|
||||||
#define THREAD_STARTED() \
|
|
||||||
G_STMT_START { \
|
|
||||||
/* signal main thread that we started */ \
|
|
||||||
g_message ("THREAD %p: started\n", g_thread_self ()); \
|
|
||||||
g_mutex_lock (mutex); \
|
|
||||||
g_cond_signal (start_cond); \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
#define THREAD_SYNCHRONIZE() \
|
|
||||||
G_STMT_START { \
|
|
||||||
/* synchronize everyone */ \
|
|
||||||
g_message ("THREAD %p: syncing\n", g_thread_self ()); \
|
|
||||||
g_cond_wait (sync_cond, mutex); \
|
|
||||||
g_message ("THREAD %p: synced\n", g_thread_self ()); \
|
|
||||||
g_mutex_unlock (mutex); \
|
|
||||||
} G_STMT_END;
|
|
||||||
|
|
||||||
#define THREAD_TEST_RUNNING() (_gst_test_threads_running == TRUE)
|
|
||||||
|
|
||||||
/* thread function for threaded name change test */
|
/* thread function for threaded name change test */
|
||||||
gpointer
|
gpointer thread_name_object (GstObject * object)
|
||||||
thread_name_object (GstObject * object)
|
|
||||||
{
|
{
|
||||||
gchar *thread_id = g_strdup_printf ("%p", g_thread_self ());
|
gchar *thread_id = g_strdup_printf ("%p", g_thread_self ());
|
||||||
|
|
||||||
|
@ -479,7 +355,7 @@ main (int argc, char **argv)
|
||||||
SRunner *sr = srunner_create (s);
|
SRunner *sr = srunner_create (s);
|
||||||
|
|
||||||
gst_init (&argc, &argv);
|
gst_init (&argc, &argv);
|
||||||
gst_test_init ();
|
gst_check_init ();
|
||||||
|
|
||||||
srunner_run_all (sr, CK_NORMAL);
|
srunner_run_all (sr, CK_NORMAL);
|
||||||
nf = srunner_ntests_failed (sr);
|
nf = srunner_ntests_failed (sr);
|
||||||
|
|
51
tests/check/gstcheck.c
Normal file
51
tests/check/gstcheck.c
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
/* GStreamer
|
||||||
|
*
|
||||||
|
* Common code for GStreamer unittests
|
||||||
|
*
|
||||||
|
* Copyright (C) <2004> Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library 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. See the GNU
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this library; if not, write to the
|
||||||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <gst/gst.h>
|
||||||
|
|
||||||
|
/* logging function for tests
|
||||||
|
* a test uses g_message() to log a debug line
|
||||||
|
* a gst unit test can be run with GST_TEST_DEBUG env var set to see the
|
||||||
|
* messages
|
||||||
|
*/
|
||||||
|
|
||||||
|
gboolean _gst_check_debug = FALSE;
|
||||||
|
|
||||||
|
void gst_check_log_func
|
||||||
|
(const gchar * log_domain, GLogLevelFlags log_level,
|
||||||
|
const gchar * message, gpointer user_data)
|
||||||
|
{
|
||||||
|
// g_print ("HANDLER CALLED\n");
|
||||||
|
if (_gst_check_debug) {
|
||||||
|
g_print (message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* initialize GStreamer testing */
|
||||||
|
void
|
||||||
|
gst_check_init (void)
|
||||||
|
{
|
||||||
|
if (g_getenv ("GST_TEST_DEBUG"))
|
||||||
|
_gst_check_debug = TRUE;
|
||||||
|
|
||||||
|
g_log_set_handler (NULL, G_LOG_LEVEL_MESSAGE, gst_check_log_func, NULL);
|
||||||
|
}
|
131
tests/check/gstcheck.h
Normal file
131
tests/check/gstcheck.h
Normal file
|
@ -0,0 +1,131 @@
|
||||||
|
/* GStreamer
|
||||||
|
*
|
||||||
|
* Common code for GStreamer unittests
|
||||||
|
*
|
||||||
|
* Copyright (C) <2004> Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library 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. See the GNU
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this library; if not, write to the
|
||||||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __GST_CHECK_H__
|
||||||
|
#define __GST_CHECK_H__
|
||||||
|
|
||||||
|
#include <signal.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include <check.h>
|
||||||
|
|
||||||
|
#include <gst/gst.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* logging function for tests
|
||||||
|
* a test uses g_message() to log a debug line
|
||||||
|
* a gst unit test can be run with GST_TEST_DEBUG env var set to see the
|
||||||
|
* messages
|
||||||
|
*/
|
||||||
|
gboolean _gst_check_threads_running = FALSE;
|
||||||
|
|
||||||
|
void gst_check_init (void);
|
||||||
|
|
||||||
|
/***
|
||||||
|
* thread test macros and variables
|
||||||
|
*/
|
||||||
|
GList *thread_list = NULL;
|
||||||
|
GMutex *mutex;
|
||||||
|
GCond *start_cond; /* used to notify main thread of thread startups */
|
||||||
|
GCond *sync_cond; /* used to synchronize all threads and main thread */
|
||||||
|
|
||||||
|
#define MAIN_START_THREADS(count, function, data) \
|
||||||
|
MAIN_INIT(); \
|
||||||
|
MAIN_START_THREAD_FUNCTIONS(count, function, data); \
|
||||||
|
MAIN_SYNCHRONIZE();
|
||||||
|
|
||||||
|
#define MAIN_INIT() \
|
||||||
|
G_STMT_START { \
|
||||||
|
_gst_check_threads_running = TRUE; \
|
||||||
|
\
|
||||||
|
mutex = g_mutex_new (); \
|
||||||
|
start_cond = g_cond_new (); \
|
||||||
|
sync_cond = g_cond_new (); \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
#define MAIN_START_THREAD_FUNCTIONS(count, function, data) \
|
||||||
|
G_STMT_START { \
|
||||||
|
int i; \
|
||||||
|
for (i = 0; i < count; ++i) { \
|
||||||
|
MAIN_START_THREAD_FUNCTION (i, function, data); \
|
||||||
|
} \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
#define MAIN_START_THREAD_FUNCTION(i, function, data) \
|
||||||
|
G_STMT_START { \
|
||||||
|
GThread *thread = NULL; \
|
||||||
|
g_message ("MAIN: creating thread %d\n", i); \
|
||||||
|
g_mutex_lock (mutex); \
|
||||||
|
thread = g_thread_create ((GThreadFunc) function, data, \
|
||||||
|
TRUE, NULL); \
|
||||||
|
/* wait for thread to signal us that it's ready */ \
|
||||||
|
g_message ("MAIN: waiting for thread %d\n", i); \
|
||||||
|
g_cond_wait (start_cond, mutex); \
|
||||||
|
g_mutex_unlock (mutex); \
|
||||||
|
\
|
||||||
|
thread_list = g_list_append (thread_list, thread); \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
|
||||||
|
#define MAIN_SYNCHRONIZE() \
|
||||||
|
G_STMT_START { \
|
||||||
|
g_message ("MAIN: synchronizing\n"); \
|
||||||
|
g_cond_broadcast (sync_cond); \
|
||||||
|
g_message ("MAIN: synchronized\n"); \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
#define MAIN_STOP_THREADS() \
|
||||||
|
G_STMT_START { \
|
||||||
|
_gst_check_threads_running = FALSE; \
|
||||||
|
\
|
||||||
|
/* join all threads */ \
|
||||||
|
g_message ("MAIN: joining\n"); \
|
||||||
|
g_list_foreach (thread_list, (GFunc) g_thread_join, NULL); \
|
||||||
|
g_message ("MAIN: joined\n"); \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
#define THREAD_START() \
|
||||||
|
THREAD_STARTED(); \
|
||||||
|
THREAD_SYNCHRONIZE();
|
||||||
|
|
||||||
|
#define THREAD_STARTED() \
|
||||||
|
G_STMT_START { \
|
||||||
|
/* signal main thread that we started */ \
|
||||||
|
g_message ("THREAD %p: started\n", g_thread_self ()); \
|
||||||
|
g_mutex_lock (mutex); \
|
||||||
|
g_cond_signal (start_cond); \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
#define THREAD_SYNCHRONIZE() \
|
||||||
|
G_STMT_START { \
|
||||||
|
/* synchronize everyone */ \
|
||||||
|
g_message ("THREAD %p: syncing\n", g_thread_self ()); \
|
||||||
|
g_cond_wait (sync_cond, mutex); \
|
||||||
|
g_message ("THREAD %p: synced\n", g_thread_self ()); \
|
||||||
|
g_mutex_unlock (mutex); \
|
||||||
|
} G_STMT_END;
|
||||||
|
|
||||||
|
#define THREAD_TEST_RUNNING() (_gst_check_threads_running == TRUE)
|
||||||
|
|
||||||
|
#endif /* __GST_CHECK_H__ */
|
||||||
|
|
|
@ -20,47 +20,11 @@
|
||||||
* Boston, MA 02111-1307, USA.
|
* Boston, MA 02111-1307, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <string.h> /* memcmp */
|
#include "../gstcheck.h"
|
||||||
|
|
||||||
#include <check.h>
|
|
||||||
|
|
||||||
#include <gst/gst.h>
|
|
||||||
#include <gst/dataprotocol/dataprotocol.h>
|
#include <gst/dataprotocol/dataprotocol.h>
|
||||||
|
|
||||||
#include "libs/gst/dataprotocol/dp-private.h" /* private header */
|
#include "libs/gst/dataprotocol/dp-private.h" /* private header */
|
||||||
|
|
||||||
|
|
||||||
/* FIXME: externalize */
|
|
||||||
/* logging function for tests
|
|
||||||
* a test uses g_message() to log a debug line
|
|
||||||
* a gst unit test can be run with GST_TEST_DEBUG env var set to see the
|
|
||||||
* messages
|
|
||||||
*/
|
|
||||||
gboolean _gst_test_debug = FALSE;
|
|
||||||
|
|
||||||
gboolean _gst_test_threads_running = FALSE;
|
|
||||||
|
|
||||||
void gst_test_log_func
|
|
||||||
(const gchar * log_domain, GLogLevelFlags log_level,
|
|
||||||
const gchar * message, gpointer user_data)
|
|
||||||
{
|
|
||||||
// g_print ("HANDLER CALLED\n");
|
|
||||||
if (_gst_test_debug) {
|
|
||||||
g_print (message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* initialize GStreamer testing */
|
|
||||||
void
|
|
||||||
gst_test_init (void)
|
|
||||||
{
|
|
||||||
if (g_getenv ("GST_TEST_DEBUG"))
|
|
||||||
_gst_test_debug = TRUE;
|
|
||||||
|
|
||||||
g_log_set_handler (NULL, G_LOG_LEVEL_MESSAGE, gst_test_log_func, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* test our method of reading and writing headers using TO/FROM_BE */
|
/* test our method of reading and writing headers using TO/FROM_BE */
|
||||||
START_TEST (test_conversion)
|
START_TEST (test_conversion)
|
||||||
{
|
{
|
||||||
|
@ -302,8 +266,8 @@ main (int argc, char **argv)
|
||||||
SRunner *sr = srunner_create (s);
|
SRunner *sr = srunner_create (s);
|
||||||
|
|
||||||
gst_init (&argc, &argv);
|
gst_init (&argc, &argv);
|
||||||
gst_test_init ();
|
|
||||||
gst_dp_init ();
|
gst_dp_init ();
|
||||||
|
gst_check_init ();
|
||||||
|
|
||||||
srunner_run_all (sr, CK_NORMAL);
|
srunner_run_all (sr, CK_NORMAL);
|
||||||
nf = srunner_ntests_failed (sr);
|
nf = srunner_ntests_failed (sr);
|
||||||
|
|
Loading…
Reference in a new issue