tests: Add unit tests for sessionpool
authorSebastian Rasmussen <sebras@hotmail.com>
Sun, 16 Mar 2014 18:45:26 +0000 (19:45 +0100)
committerWim Taymans <wtaymans@redhat.com>
Mon, 24 Mar 2014 11:16:47 +0000 (12:16 +0100)
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=726470

tests/check/Makefile.am
tests/check/gst/sessionpool.c [new file with mode: 0644]

index 765c663..7ecc2bc 100644 (file)
@@ -36,7 +36,8 @@ check_PROGRAMS = \
        gst/threadpool \
        gst/permissions \
        gst/token \
-       gst/sessionmedia
+       gst/sessionmedia \
+       gst/sessionpool
 
 # these tests don't even pass
 noinst_PROGRAMS =
diff --git a/tests/check/gst/sessionpool.c b/tests/check/gst/sessionpool.c
new file mode 100644 (file)
index 0000000..a0de375
--- /dev/null
@@ -0,0 +1,179 @@
+/* GStreamer
+ * Copyright (C) 2014 Sebastian Rasmussen <sebras@hotmail.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-session-pool.h>
+
+typedef struct
+{
+  GstRTSPSession *sessions[3];
+  GstRTSPFilterResult response[3];
+} Responses;
+
+static GstRTSPFilterResult
+filter_func (GstRTSPSessionPool * pool, GstRTSPSession * session,
+    gpointer user_data)
+{
+  Responses *responses = (Responses *) user_data;
+  gint i;
+
+  for (i = 0; i < 3; i++)
+    if (session == responses->sessions[i])
+      return responses->response[i];
+
+  return GST_RTSP_FILTER_KEEP;
+}
+
+GST_START_TEST (test_pool)
+{
+  GstRTSPSessionPool *pool;
+  GstRTSPSession *session1, *session2, *session3;
+  const gchar *session1id, *session2id, *session3id;
+  GList *list;
+  guint maxsessions;
+  GSource *source;
+  guint sourceid;
+
+  pool = gst_rtsp_session_pool_new ();
+  fail_unless_equals_int (gst_rtsp_session_pool_get_n_sessions (pool), 0);
+  fail_unless_equals_int (gst_rtsp_session_pool_get_max_sessions (pool), 0);
+
+  gst_rtsp_session_pool_set_max_sessions (pool, 3);
+  fail_unless_equals_int (gst_rtsp_session_pool_get_max_sessions (pool), 3);
+
+  session1 = gst_rtsp_session_pool_create (pool);
+  fail_unless (GST_IS_RTSP_SESSION (session1));
+  fail_unless_equals_int (gst_rtsp_session_pool_get_n_sessions (pool), 1);
+  fail_unless_equals_int (gst_rtsp_session_pool_get_max_sessions (pool), 3);
+  session1id = gst_rtsp_session_get_sessionid (session1);
+
+  session2 = gst_rtsp_session_pool_create (pool);
+  fail_unless (GST_IS_RTSP_SESSION (session2));
+  fail_unless_equals_int (gst_rtsp_session_pool_get_n_sessions (pool), 2);
+  fail_unless_equals_int (gst_rtsp_session_pool_get_max_sessions (pool), 3);
+  session2id = gst_rtsp_session_get_sessionid (session2);
+
+  session3 = gst_rtsp_session_pool_create (pool);
+  fail_unless (GST_IS_RTSP_SESSION (session3));
+  fail_unless_equals_int (gst_rtsp_session_pool_get_n_sessions (pool), 3);
+  fail_unless_equals_int (gst_rtsp_session_pool_get_max_sessions (pool), 3);
+  session3id = gst_rtsp_session_get_sessionid (session3);
+
+  fail_if (GST_IS_RTSP_SESSION (gst_rtsp_session_pool_create (pool)));
+
+  fail_unless (gst_rtsp_session_pool_find (pool, session1id) == session1);
+  fail_unless (gst_rtsp_session_pool_find (pool, session2id) == session2);
+  fail_unless (gst_rtsp_session_pool_find (pool, session3id) == session3);
+  fail_unless (gst_rtsp_session_pool_find (pool, "") == NULL);
+
+  fail_unless (gst_rtsp_session_pool_remove (pool, session2));
+  fail_unless_equals_int (gst_rtsp_session_pool_get_n_sessions (pool), 2);
+  fail_unless_equals_int (gst_rtsp_session_pool_get_max_sessions (pool), 3);
+
+  gst_rtsp_session_pool_set_max_sessions (pool, 2);
+  fail_unless_equals_int (gst_rtsp_session_pool_get_n_sessions (pool), 2);
+  fail_unless_equals_int (gst_rtsp_session_pool_get_max_sessions (pool), 2);
+
+  session2 = gst_rtsp_session_pool_create (pool);
+  fail_if (GST_IS_RTSP_SESSION (session2));
+
+  {
+    list = gst_rtsp_session_pool_filter (pool, NULL, NULL);
+    fail_unless_equals_int (g_list_length (list), 2);
+    fail_unless (g_list_find (list, session1) != NULL);
+    fail_unless (g_list_find (list, session3) != NULL);
+    g_list_foreach (list, (GFunc) g_object_unref, NULL);
+  }
+
+  {
+    Responses responses = {
+      {session1, session2, session3},
+      {GST_RTSP_FILTER_KEEP, GST_RTSP_FILTER_KEEP, GST_RTSP_FILTER_KEEP},
+    };
+
+    list = gst_rtsp_session_pool_filter (pool, filter_func, &responses);
+    fail_unless (list == NULL);
+  }
+
+  {
+    Responses responses = {
+      {session1, session2, session3},
+      {GST_RTSP_FILTER_REF, GST_RTSP_FILTER_KEEP, GST_RTSP_FILTER_KEEP},
+    };
+
+    list = gst_rtsp_session_pool_filter (pool, filter_func, &responses);
+    fail_unless_equals_int (g_list_length (list), 1);
+    fail_unless (g_list_nth_data (list, 0) == session1);
+    g_list_foreach (list, (GFunc) g_object_unref, NULL);
+  }
+
+  {
+    Responses responses = {
+      {session1, session2, session3},
+      {GST_RTSP_FILTER_KEEP, GST_RTSP_FILTER_KEEP, GST_RTSP_FILTER_REMOVE},
+    };
+
+    list = gst_rtsp_session_pool_filter (pool, filter_func, &responses);
+    fail_unless_equals_int (g_list_length (list), 0);
+  }
+
+  fail_unless (gst_rtsp_session_pool_find (pool, session1id) == session1);
+  fail_unless (gst_rtsp_session_pool_find (pool, session2id) == NULL);
+  fail_unless (gst_rtsp_session_pool_find (pool, session3id) == NULL);
+
+  g_object_get (pool, "max-sessions", &maxsessions, NULL);
+  fail_unless_equals_int (maxsessions, 2);
+
+  g_object_set (pool, "max-sessions", 3, NULL);
+  g_object_get (pool, "max-sessions", &maxsessions, NULL);
+  fail_unless_equals_int (maxsessions, 3);
+
+  fail_unless_equals_int (gst_rtsp_session_pool_cleanup (pool), 0);
+
+  gst_rtsp_session_set_timeout (session1, 1);
+
+  source = gst_rtsp_session_pool_create_watch (pool);
+  fail_unless (source != NULL);
+
+  sourceid = g_source_attach (source, NULL);
+  fail_unless (sourceid != 0);
+
+  while (!g_main_context_iteration (NULL, TRUE));
+
+  g_source_unref (source);
+
+  g_object_unref (pool);
+}
+
+GST_END_TEST;
+
+static Suite *
+rtspsessionpool_suite (void)
+{
+  Suite *s = suite_create ("rtspsessionpool");
+  TCase *tc = tcase_create ("general");
+
+  suite_add_tcase (s, tc);
+  tcase_set_timeout (tc, 15);
+  tcase_add_test (tc, test_pool);
+
+  return s;
+}
+
+GST_CHECK_MAIN (rtspsessionpool);