/* GStreamer * Copyright (C) 2016 Matthew Waters * * 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. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include static GstGLDisplay *display; static GstGLContext *context; GST_DEBUG_CATEGORY_STATIC (gst_test_debug_cat); static void setup (void) { GError *error = NULL; display = gst_gl_display_new (); context = gst_gl_context_new (display); gst_gl_context_create (context, NULL, &error); fail_if (error != NULL, "Error creating context: %s\n", error ? error->message : "Unknown Error"); } static void teardown (void) { gst_object_unref (display); gst_object_unref (context); } static void _test_query_init_gl (GstGLContext * context, gpointer data) { GstGLQuery q1; /* no usage */ gst_gl_query_init (&q1, context, GST_GL_QUERY_TIMESTAMP); gst_gl_query_unset (&q1); } GST_START_TEST (test_query_init) { gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _test_query_init_gl, NULL); } GST_END_TEST; static void _test_query_init_invalid_query_gl (GstGLContext * context, gpointer data) { GstGLQuery q1; /* no usage */ ASSERT_CRITICAL (gst_gl_query_init (&q1, context, GST_GL_QUERY_NONE)); } GST_START_TEST (test_query_init_invalid_query) { gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _test_query_init_invalid_query_gl, NULL); } GST_END_TEST; static void _test_query_new_gl (GstGLContext * context, gpointer data) { GstGLQuery *q1; /* no usage */ q1 = gst_gl_query_new (context, GST_GL_QUERY_TIMESTAMP); gst_gl_query_free (q1); } GST_START_TEST (test_query_new) { gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _test_query_new_gl, NULL); } GST_END_TEST; static void _test_query_time_elapsed_gl (GstGLContext * context, gpointer data) { GstGLQuery *q1; q1 = gst_gl_query_new (context, GST_GL_QUERY_TIME_ELAPSED); fail_if (q1 == NULL); gst_gl_query_start (q1); gst_gl_query_end (q1); /* GST_GL_QUERY_TIME_ELAPSED doesn't supported counter() */ ASSERT_CRITICAL (gst_gl_query_counter (q1)); gst_gl_query_result (q1); gst_gl_query_free (q1); } GST_START_TEST (test_query_time_elapsed) { gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _test_query_time_elapsed_gl, NULL); } GST_END_TEST; static void _test_query_start_log_gl (GstGLContext * context, gpointer data) { GstGLQuery *q1; q1 = gst_gl_query_new (context, GST_GL_QUERY_TIME_ELAPSED); fail_if (q1 == NULL); gst_gl_query_start_log (q1, NULL, GST_LEVEL_ERROR, NULL, "%s", "testing query proxy-logging for gst_gl_query_start_log()"); gst_gl_query_end (q1); gst_gl_query_result (q1); gst_gl_query_free (q1); } GST_START_TEST (test_query_start_log) { gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _test_query_start_log_gl, NULL); } GST_END_TEST; static void _test_query_timestamp_gl (GstGLContext * context, gpointer data) { GstGLQuery q2; gst_gl_query_init (&q2, context, GST_GL_QUERY_TIMESTAMP); /* GST_GL_QUERY_TIMESTAMP doesn't supported start()/end() */ ASSERT_CRITICAL (gst_gl_query_start (&q2)); ASSERT_CRITICAL (gst_gl_query_end (&q2)); gst_gl_query_counter (&q2); gst_gl_query_result (&q2); gst_gl_query_unset (&q2); } GST_START_TEST (test_query_timestamp) { gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _test_query_timestamp_gl, NULL); } GST_END_TEST; static void _test_query_counter_log_gl (GstGLContext * context, gpointer data) { GstGLQuery q2; gst_gl_query_init (&q2, context, GST_GL_QUERY_TIMESTAMP); gst_gl_query_counter_log (&q2, gst_test_debug_cat, GST_LEVEL_ERROR, NULL, "%s", "testing query proxy-logging works from gst_gl_query_counter_log()"); gst_gl_query_result (&q2); gst_gl_query_unset (&q2); } GST_START_TEST (test_query_counter_log) { gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _test_query_counter_log_gl, NULL); } GST_END_TEST; static void _test_query_start_free_gl (GstGLContext * context, gpointer data) { GstGLQuery *q1; /* test mismatched start()/free() */ q1 = gst_gl_query_new (context, GST_GL_QUERY_TIME_ELAPSED); fail_if (q1 == NULL); gst_gl_query_start (q1); ASSERT_CRITICAL (gst_gl_query_free (q1)); } GST_START_TEST (test_query_start_free) { gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _test_query_start_free_gl, NULL); } GST_END_TEST; static void _test_query_start_result_gl (GstGLContext * context, gpointer data) { GstGLQuery *q1; /* test mismatched start()/result() */ q1 = gst_gl_query_new (context, GST_GL_QUERY_TIME_ELAPSED); fail_if (q1 == NULL); gst_gl_query_start (q1); ASSERT_CRITICAL (gst_gl_query_result (q1)); gst_gl_query_end (q1); gst_gl_query_free (q1); } GST_START_TEST (test_query_start_result) { gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _test_query_start_result_gl, NULL); } GST_END_TEST; static void _test_query_start_start_gl (GstGLContext * context, gpointer data) { GstGLQuery *q1; /* test double end() */ q1 = gst_gl_query_new (context, GST_GL_QUERY_TIME_ELAPSED); fail_if (q1 == NULL); gst_gl_query_start (q1); ASSERT_CRITICAL (gst_gl_query_start (q1)); gst_gl_query_end (q1); gst_gl_query_free (q1); } GST_START_TEST (test_query_start_start) { gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _test_query_start_start_gl, NULL); } GST_END_TEST; static void _test_query_end_gl (GstGLContext * context, gpointer data) { GstGLQuery *q1; /* test mismatched end() */ q1 = gst_gl_query_new (context, GST_GL_QUERY_TIME_ELAPSED); fail_if (q1 == NULL); ASSERT_CRITICAL (gst_gl_query_end (q1)); gst_gl_query_free (q1); } GST_START_TEST (test_query_end) { gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _test_query_end_gl, NULL); } GST_END_TEST; static void _test_query_end_end_gl (GstGLContext * context, gpointer data) { GstGLQuery *q1; /* test double end() */ q1 = gst_gl_query_new (context, GST_GL_QUERY_TIME_ELAPSED); fail_if (q1 == NULL); gst_gl_query_start (q1); gst_gl_query_end (q1); ASSERT_CRITICAL (gst_gl_query_end (q1)); gst_gl_query_free (q1); } GST_START_TEST (test_query_end_end) { gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _test_query_end_end_gl, NULL); } GST_END_TEST; static Suite * gst_gl_upload_suite (void) { Suite *s = suite_create ("GstGLQuery"); TCase *tc_chain = tcase_create ("glquery"); GST_DEBUG_CATEGORY_INIT (gst_test_debug_cat, "test-debug", 0, "proxy-logging test debug"); suite_add_tcase (s, tc_chain); tcase_add_checked_fixture (tc_chain, setup, teardown); tcase_add_test (tc_chain, test_query_init); tcase_add_test (tc_chain, test_query_init_invalid_query); tcase_add_test (tc_chain, test_query_new); tcase_add_test (tc_chain, test_query_time_elapsed); tcase_add_test (tc_chain, test_query_timestamp); tcase_add_test (tc_chain, test_query_counter_log); tcase_add_test (tc_chain, test_query_start_log); tcase_add_test (tc_chain, test_query_start_free); tcase_add_test (tc_chain, test_query_start_result); tcase_add_test (tc_chain, test_query_start_start); tcase_add_test (tc_chain, test_query_end); tcase_add_test (tc_chain, test_query_end_end); return s; } GST_CHECK_MAIN (gst_gl_upload);