summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2013-11-12 12:04:55 +0100
committerWim Taymans <wim.taymans@gmail.com>2013-11-12 12:04:55 +0100
commit8d5ce0d4ee6b99139de64372b5138ac6f8088611 (patch)
tree4c3d81aaa2aa586408b8dddf8f5d50038548ebfc /tests
parentd443f8546b075f64774678ecb860b3c8eb3b5079 (diff)
stream: Add functions to get rtp and rtcp sockets
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=710100
Diffstat (limited to 'tests')
-rw-r--r--tests/check/Makefile.am1
-rw-r--r--tests/check/gst/stream.c107
2 files changed, 108 insertions, 0 deletions
diff --git a/tests/check/Makefile.am b/tests/check/Makefile.am
index 16ae373..71d37ab 100644
--- a/tests/check/Makefile.am
+++ b/tests/check/Makefile.am
@@ -31,6 +31,7 @@ check_PROGRAMS = \
gst/mountpoints \
gst/mediafactory \
gst/media \
+ gst/stream \
gst/addresspool \
gst/threadpool \
gst/permissions \
diff --git a/tests/check/gst/stream.c b/tests/check/gst/stream.c
new file mode 100644
index 0000000..eb9e0b5
--- /dev/null
+++ b/tests/check/gst/stream.c
@@ -0,0 +1,107 @@
+/* GStreamer
+ * Copyright (C) 2013 Axis Communications AB <dev-gstreamer 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-stream.h>
+
+GST_START_TEST (test_get_sockets)
+{
+ GstPad *srcpad;
+ GstElement *pay;
+ GstRTSPStream *stream;
+ GstBin *bin;
+ GstElement *rtpbin;
+ GSocket *socket;
+ gboolean have_ipv4;
+ gboolean have_ipv6;
+
+ srcpad = gst_pad_new ("testsrcpad", GST_PAD_SRC);
+ fail_unless (srcpad != NULL);
+ gst_pad_set_active (srcpad, TRUE);
+ pay = gst_element_factory_make ("rtpgstpay", "testpayloader");
+ fail_unless (pay != NULL);
+ stream = gst_rtsp_stream_new (0, pay, srcpad);
+ fail_unless (stream != NULL);
+ gst_object_unref (pay);
+ gst_object_unref (srcpad);
+ rtpbin = gst_element_factory_make ("rtpbin", "testrtpbin");
+ fail_unless (rtpbin != NULL);
+ bin = GST_BIN (gst_bin_new ("testbin"));
+ fail_unless (bin != NULL);
+ fail_unless (gst_bin_add (bin, rtpbin));
+
+ fail_unless (gst_rtsp_stream_join_bin (stream, bin, rtpbin, GST_STATE_NULL));
+
+ socket = gst_rtsp_stream_get_rtp_socket (stream, G_SOCKET_FAMILY_IPV4);
+ have_ipv4 = (socket != NULL);
+ if (have_ipv4) {
+ fail_unless (g_socket_get_fd (socket) >= 0);
+ g_object_unref (socket);
+ }
+
+ socket = gst_rtsp_stream_get_rtcp_socket (stream, G_SOCKET_FAMILY_IPV4);
+ if (have_ipv4) {
+ fail_unless (socket != NULL);
+ fail_unless (g_socket_get_fd (socket) >= 0);
+ g_object_unref (socket);
+ } else {
+ fail_unless (socket == NULL);
+ }
+
+ socket = gst_rtsp_stream_get_rtp_socket (stream, G_SOCKET_FAMILY_IPV6);
+ have_ipv6 = (socket != NULL);
+ if (have_ipv6) {
+ fail_unless (g_socket_get_fd (socket) >= 0);
+ g_object_unref (socket);
+ }
+
+ socket = gst_rtsp_stream_get_rtcp_socket (stream, G_SOCKET_FAMILY_IPV6);
+ if (have_ipv6) {
+ fail_unless (socket != NULL);
+ fail_unless (g_socket_get_fd (socket) >= 0);
+ g_object_unref (socket);
+ } else {
+ fail_unless (socket == NULL);
+ }
+
+ /* check that at least one family is available */
+ fail_unless (have_ipv4 || have_ipv6);
+
+ fail_unless (gst_rtsp_stream_leave_bin (stream, bin, rtpbin));
+
+ gst_object_unref (bin);
+ gst_object_unref (stream);
+}
+
+GST_END_TEST;
+
+static Suite *
+rtspstream_suite (void)
+{
+ Suite *s = suite_create ("rtspstream");
+ TCase *tc = tcase_create ("general");
+
+ suite_add_tcase (s, tc);
+ tcase_add_test (tc, test_get_sockets);
+
+ return s;
+}
+
+GST_CHECK_MAIN (rtspstream);