mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 17:50:36 +00:00
thread-pool: Add unit test for the thread pools
https://bugzilla.gnome.org/show_bug.cgi?id=710228
This commit is contained in:
parent
78e5a9148e
commit
fa7898b0a6
2 changed files with 92 additions and 1 deletions
|
@ -31,7 +31,8 @@ check_PROGRAMS = \
|
||||||
gst/mountpoints \
|
gst/mountpoints \
|
||||||
gst/mediafactory \
|
gst/mediafactory \
|
||||||
gst/media \
|
gst/media \
|
||||||
gst/addresspool
|
gst/addresspool \
|
||||||
|
gst/threadpool
|
||||||
|
|
||||||
# these tests don't even pass
|
# these tests don't even pass
|
||||||
noinst_PROGRAMS =
|
noinst_PROGRAMS =
|
||||||
|
|
90
tests/check/gst/threadpool.c
Normal file
90
tests/check/gst/threadpool.c
Normal file
|
@ -0,0 +1,90 @@
|
||||||
|
/* GStreamer
|
||||||
|
* unit tests for GstRTSPThreadPool
|
||||||
|
* Copyright (C) 2013 Axis Communications <dev-gstreamer at axis dot com>
|
||||||
|
* @author Ognyan Tonchev <ognyan at axis dot com>
|
||||||
|
*
|
||||||
|
* 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., 51 Franklin St, Fifth Floor,
|
||||||
|
* Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <gst/check/gstcheck.h>
|
||||||
|
|
||||||
|
#include <rtsp-thread-pool.h>
|
||||||
|
|
||||||
|
GST_START_TEST (test_pool_get_thread)
|
||||||
|
{
|
||||||
|
GstRTSPThreadPool *pool;
|
||||||
|
GstRTSPThread *thread;
|
||||||
|
|
||||||
|
pool = gst_rtsp_thread_pool_new ();
|
||||||
|
fail_unless (pool != NULL);
|
||||||
|
|
||||||
|
thread = gst_rtsp_thread_pool_get_thread (pool, GST_RTSP_THREAD_TYPE_CLIENT,
|
||||||
|
NULL);
|
||||||
|
fail_unless (thread != NULL);
|
||||||
|
|
||||||
|
gst_rtsp_thread_stop (thread);
|
||||||
|
g_object_unref (pool);
|
||||||
|
gst_rtsp_thread_pool_cleanup ();
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_END_TEST;
|
||||||
|
|
||||||
|
GST_START_TEST (test_pool_get_thread_reuse)
|
||||||
|
{
|
||||||
|
GstRTSPThreadPool *pool;
|
||||||
|
GstRTSPThread *thread;
|
||||||
|
GstRTSPThread *thread2;
|
||||||
|
|
||||||
|
pool = gst_rtsp_thread_pool_new ();
|
||||||
|
fail_unless (pool != NULL);
|
||||||
|
|
||||||
|
gst_rtsp_thread_pool_set_max_threads (pool, 1);
|
||||||
|
|
||||||
|
thread = gst_rtsp_thread_pool_get_thread (pool, GST_RTSP_THREAD_TYPE_CLIENT,
|
||||||
|
NULL);
|
||||||
|
fail_unless (thread != NULL);
|
||||||
|
|
||||||
|
thread2 = gst_rtsp_thread_pool_get_thread (pool, GST_RTSP_THREAD_TYPE_CLIENT,
|
||||||
|
NULL);
|
||||||
|
fail_unless (thread2 != NULL);
|
||||||
|
|
||||||
|
fail_unless (thread == thread2);
|
||||||
|
|
||||||
|
gst_rtsp_thread_stop (thread);
|
||||||
|
gst_rtsp_thread_stop (thread2);
|
||||||
|
g_object_unref (pool);
|
||||||
|
|
||||||
|
gst_rtsp_thread_pool_cleanup ();
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_END_TEST;
|
||||||
|
|
||||||
|
|
||||||
|
static Suite *
|
||||||
|
rtspthreadpool_suite (void)
|
||||||
|
{
|
||||||
|
Suite *s = suite_create ("rtspthreadpool");
|
||||||
|
TCase *tc = tcase_create ("general");
|
||||||
|
|
||||||
|
suite_add_tcase (s, tc);
|
||||||
|
tcase_set_timeout (tc, 20);
|
||||||
|
tcase_add_test (tc, test_pool_get_thread);
|
||||||
|
tcase_add_test (tc, test_pool_get_thread_reuse);
|
||||||
|
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
|
GST_CHECK_MAIN (rtspthreadpool);
|
Loading…
Reference in a new issue