summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2015-07-24 19:29:38 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2017-01-17 15:39:29 -0500
commit182fb0223bee9067cafa00c5c6a56b71e6c892a6 (patch)
tree7c2096220de2562b2b89a39a573aac8facce5d3b /tests
parent11dde55cbaf5179e8e1885cf1483e538a8d5a4a9 (diff)
downloadfarstream-182fb0223bee9067cafa00c5c6a56b71e6c892a6.tar.gz
Remove MSN plugin
Diffstat (limited to 'tests')
-rw-r--r--tests/check/Makefile.am5
-rw-r--r--tests/check/msn/conference.c424
2 files changed, 0 insertions, 429 deletions
diff --git a/tests/check/Makefile.am b/tests/check/Makefile.am
index a963967b..d50fc264 100644
--- a/tests/check/Makefile.am
+++ b/tests/check/Makefile.am
@@ -55,7 +55,6 @@ check_PROGRAMS = \
rtp/sendcodecs \
rtp/conference \
rtp/recvcodecs \
- msn/conference \
utils/binadded
AM_CFLAGS = \
@@ -156,10 +155,6 @@ rtp_sendcodecs_SOURCES = \
rtp_recvcodecs_CFLAGS = $(AM_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
rtp_recvcodecs_LDADD = $(LDADD) -lgstrtp-@GST_API_VERSION@
-msn_conference_CFLAGS = $(AM_CFLAGS)
-msn_conference_SOURCES = \
- msn/conference.c
-
utils_binadded_CFLAGS = $(AM_CFLAGS)
utils_binadded_SOURCES = \
testutils.c \
diff --git a/tests/check/msn/conference.c b/tests/check/msn/conference.c
deleted file mode 100644
index 1e3a209e..00000000
--- a/tests/check/msn/conference.c
+++ /dev/null
@@ -1,424 +0,0 @@
-/* Farstream unit tests for FsMsnConference
- *
- * Copyright (C) 2009 Collabora
- * @author: Olivier Crete <olivier.crete@collabora.co.uk>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-*/
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include <gst/check/gstcheck.h>
-#include <farstream/fs-conference.h>
-
-#include "check-threadsafe.h"
-
-GMainLoop *loop;
-int count = 0;
-
-#define WAITING_ON_LAST_CODEC (1<<0)
-#define SHOULD_BE_LAST_CODEC (1<<1)
-#define HAS_BEEN_RESET (1<<2)
-
-gint max_buffer_count = 20;
-
-
-struct SimpleMsnConference {
- GstElement *pipeline;
- FsConference *conf;
- FsSession *session;
- FsParticipant *part;
- FsStream *stream;
-
- struct SimpleMsnConference *target;
- FsStreamDirection direction;
-};
-
-static gboolean
-bus_watch (GstBus *bus, GstMessage *message, gpointer user_data)
-{
- struct SimpleMsnConference *dat = user_data;
-
- switch (GST_MESSAGE_TYPE (message))
- {
- case GST_MESSAGE_ELEMENT:
- {
- const GstStructure *s = gst_message_get_structure (message);
- ts_fail_if (s==NULL, "NULL structure in element message");
- if (gst_structure_has_name (s, "farstream-error"))
- {
- const GValue *value;
- FsError errorno;
- const gchar *error;
-
- ts_fail_unless (
- gst_structure_has_field_typed (s, "src-object", G_TYPE_OBJECT),
- "farstream-error structure has no src-object field");
- ts_fail_unless (
- gst_structure_has_field_typed (s, "error-no", FS_TYPE_ERROR),
- "farstream-error structure has no src-object field");
- ts_fail_unless (
- gst_structure_has_field_typed (s, "error-msg", G_TYPE_STRING),
- "farstream-error structure has no src-object field");
-
- value = gst_structure_get_value (s, "error-no");
- errorno = g_value_get_enum (value);
- error = gst_structure_get_string (s, "error-msg");
-
- ts_fail ("Error on BUS (%d) %s", errorno, error);
- }
- else if (gst_structure_has_name (s, "farstream-new-local-candidate"))
- {
- FsStream *stream;
- FsCandidate *candidate;
- const GValue *value;
-
- ts_fail_unless (
- gst_structure_has_field_typed (s, "stream", FS_TYPE_STREAM),
- "farstream-new-local-candidate structure has no stream field");
- ts_fail_unless (
- gst_structure_has_field_typed (s, "candidate", FS_TYPE_CANDIDATE),
- "farstream-new-local-candidate structure has no candidate field");
-
- value = gst_structure_get_value (s, "stream");
- stream = g_value_get_object (value);
-
- value = gst_structure_get_value (s, "candidate");
- candidate = g_value_get_boxed (value);
-
- ts_fail_unless (stream && candidate, "new-local-candidate with NULL"
- " stream(%p) or candidate(%p)", stream, candidate);
-
- if (dat->target)
- {
- GError *error = NULL;
- GList *list = g_list_append (NULL, candidate);
- gboolean add_remote_candidates_res;
-
- GST_DEBUG ("Setting candidate: %s %d",
- candidate->ip, candidate->port);
- add_remote_candidates_res = fs_stream_add_remote_candidates (
- dat->target->stream, list, &error);
- ts_fail_unless (add_remote_candidates_res,
- "Could not set remote candidate: %s",
- error ? error->message : "No GError");
- ts_fail_unless (error == NULL);
- g_list_free (list);
- }
- }
- }
- break;
- case GST_MESSAGE_ERROR:
- {
- GError *error = NULL;
- gchar *debug = NULL;
- gst_message_parse_error (message, &error, &debug);
-
- ts_fail ("Got an error on the BUS (%d): %s (%s)", error->code,
- error->message, debug);
- g_error_free (error);
- g_free (debug);
- }
- break;
- case GST_MESSAGE_WARNING:
- {
- GError *error = NULL;
- gchar *debug = NULL;
- gst_message_parse_warning (message, &error, &debug);
-
- GST_DEBUG ("%d: Got a warning on the BUS: %s (%s)",
- error->code,
- error->message, debug);
- g_error_free (error);
- g_free (debug);
- }
- break;
- default:
- break;
- }
-
- return TRUE;
-}
-
-static GstPadProbeReturn
-pad_probe_cb (GstPad *pad, GstPadProbeInfo *info, gpointer user_data)
-{
- count++;
-
- if (count > 20)
- g_main_loop_quit (loop);
-
- return GST_PAD_PROBE_OK;
-}
-
-static void
-stream_src_pad_added (FsStream *stream, GstPad *pad, FsCodec *codec,
- struct SimpleMsnConference *dat)
-{
- GstElement *sink = gst_element_factory_make ("fakesink", NULL);
- GstPad *sinkpad;
-
- GST_DEBUG ("pad added");
-
- ts_fail_unless (sink != NULL);
-
- ts_fail_unless (gst_bin_add (GST_BIN (dat->pipeline), sink));
-
- sinkpad = gst_element_get_static_pad (sink, "sink");
- ts_fail_unless (sinkpad != NULL);
-
- gst_pad_add_probe (sinkpad, GST_PAD_PROBE_TYPE_BUFFER, pad_probe_cb, dat,
- NULL);
-
- ts_fail_if (GST_PAD_LINK_FAILED (gst_pad_link (pad, sinkpad)));
-
- gst_object_unref (sinkpad);
-
- ts_fail_if (gst_element_set_state (sink, GST_STATE_PLAYING) ==
- GST_STATE_CHANGE_FAILURE);
-
-}
-
-struct SimpleMsnConference *
-setup_conference (FsStreamDirection dir, struct SimpleMsnConference *target)
-{
- struct SimpleMsnConference *dat = g_new0 (struct SimpleMsnConference, 1);
- GError *error = NULL;
- GstBus *bus;
- GParameter param = {NULL, {0}};
- gint n_params = 0;
- guint tos;
-
- dat->target = target;
- dat->direction = dir;
-
- dat->pipeline = gst_pipeline_new (NULL);
-
- bus = gst_element_get_bus (dat->pipeline);
- gst_bus_add_watch (bus, bus_watch, dat);
- gst_object_unref (bus);
-
- if (dir == FS_DIRECTION_SEND)
- dat->conf = FS_CONFERENCE (
- gst_element_factory_make ("fsmsncamsendconference", NULL));
- else
- dat->conf = FS_CONFERENCE (
- gst_element_factory_make ("fsmsncamrecvconference", NULL));
- ts_fail_unless (dat->conf != NULL);
-
- ts_fail_unless (gst_bin_add (GST_BIN (dat->pipeline),
- GST_ELEMENT (dat->conf)));
-
- dat->part = fs_conference_new_participant (dat->conf, &error);
- ts_fail_unless (error == NULL, "Error: %s", error ? error->message: "");
- ts_fail_unless (dat->part != NULL);
-
- dat->session = fs_conference_new_session (dat->conf, FS_MEDIA_TYPE_VIDEO,
- &error);
- ts_fail_unless (dat->session != NULL, "Session create error: %s:",
- error ? error->message : "No GError");
- ts_fail_unless (error == NULL);
-
- g_object_set (dat->session, "tos", 2, NULL);
- g_object_get (dat->session, "tos", &tos, NULL);
- ts_fail_unless (tos == 2);
-
- if (dir == FS_DIRECTION_SEND)
- {
- GstPad *sinkpad, *srcpad;
- GstElement *src;
- src = gst_element_factory_make ("videotestsrc", NULL);
- ts_fail_unless (src != NULL);
- g_object_set (src, "is-live", TRUE, NULL);
- ts_fail_unless (gst_bin_add (GST_BIN (dat->pipeline),
- GST_ELEMENT (src)));
-
- g_object_get (dat->session, "sink-pad", &sinkpad, NULL);
- ts_fail_if (sinkpad == NULL);
- srcpad = gst_element_get_static_pad (src, "src");
- ts_fail_if (srcpad == NULL);
-
- ts_fail_if (GST_PAD_LINK_FAILED (gst_pad_link ( srcpad, sinkpad)));
- gst_object_unref (srcpad);
- gst_object_unref (sinkpad);
- }
-
- if (target)
- {
- guint session_id = 0;
- n_params = 1;
- g_object_get (target->stream, "session-id", &session_id, NULL);
- ts_fail_unless (session_id >= 9000 && session_id < 10000);
- param.name = "session-id";
- g_value_init (&param.value, G_TYPE_UINT);
- g_value_set_uint (&param.value, session_id);
- }
-
- dat->stream = fs_session_new_stream (dat->session, dat->part, dir, &error);
- ts_fail_unless (dat->stream != NULL);
- ts_fail_unless (error == NULL);
-
- fail_unless (fs_stream_set_transmitter (dat->stream, NULL, &param, n_params,
- &error));
- fail_unless (error == NULL);
-
- g_signal_connect (dat->stream, "src-pad-added",
- G_CALLBACK (stream_src_pad_added), dat);
-
- ts_fail_if (gst_element_set_state (dat->pipeline, GST_STATE_PLAYING) ==
- GST_STATE_CHANGE_FAILURE);
-
- return dat;
-}
-
-static void
-free_conference (struct SimpleMsnConference *dat)
-{
- ts_fail_if (gst_element_set_state (dat->pipeline, GST_STATE_NULL) ==
- GST_STATE_CHANGE_FAILURE);
-
- fs_session_destroy (dat->session);
- gst_object_unref (dat->stream);
- gst_object_unref (dat->session);
- gst_object_unref (dat->part);
- gst_object_unref (dat->pipeline);
-
- free (dat);
-}
-
-
-GST_START_TEST (test_msnconference_new)
-{
- struct SimpleMsnConference *senddat = setup_conference (FS_DIRECTION_SEND,
- NULL);
- struct SimpleMsnConference *recvdat = setup_conference (FS_DIRECTION_RECV,
- NULL);
-
-
- free_conference (senddat);
- free_conference (recvdat);
-}
-GST_END_TEST;
-
-
-
-GST_START_TEST (test_msnconference_send_to_recv)
-{
- struct SimpleMsnConference *senddat = setup_conference (FS_DIRECTION_SEND,
- NULL);
- struct SimpleMsnConference *recvdat = setup_conference (FS_DIRECTION_RECV,
- senddat);
-
- loop = g_main_loop_new (NULL, FALSE);
-
- g_main_loop_run (loop);
-
- free_conference (senddat);
- free_conference (recvdat);
- g_main_loop_unref (loop);
-}
-GST_END_TEST;
-
-
-GST_START_TEST (test_msnconference_recv_to_send)
-{
- struct SimpleMsnConference *recvdat = setup_conference (FS_DIRECTION_RECV,
- NULL);
- struct SimpleMsnConference *senddat = setup_conference (FS_DIRECTION_SEND,
- recvdat);
-
- loop = g_main_loop_new (NULL, FALSE);
-
- g_main_loop_run (loop);
-
- free_conference (senddat);
- free_conference (recvdat);
- g_main_loop_unref (loop);
-}
-GST_END_TEST;
-
-
-GST_START_TEST (test_msnconference_error)
-{
- struct SimpleMsnConference *dat = setup_conference (FS_DIRECTION_SEND,
- NULL);
- GError *error = NULL;
-
- ts_fail_unless (
- fs_conference_new_participant (dat->conf, &error) == NULL);
- ts_fail_unless (error->domain == FS_ERROR &&
- error->code == FS_ERROR_ALREADY_EXISTS);
- g_clear_error (&error);
-
-
- ts_fail_unless (
- fs_conference_new_session (dat->conf, FS_MEDIA_TYPE_VIDEO, &error) == NULL);
- ts_fail_unless (error->domain == FS_ERROR &&
- error->code == FS_ERROR_ALREADY_EXISTS);
- g_clear_error (&error);
-
-
- ts_fail_unless (
- fs_session_new_stream (dat->session, dat->part, FS_DIRECTION_SEND,
- &error) == NULL);
- ts_fail_unless (error->domain == FS_ERROR &&
- error->code == FS_ERROR_ALREADY_EXISTS);
- g_clear_error (&error);
-
- fail_unless (fs_stream_set_transmitter (dat->stream, NULL, NULL, 0,
- &error));
- fail_unless (error == NULL);
-
-
- free_conference (dat);
-}
-GST_END_TEST;
-
-static Suite *
-fsmsnconference_suite (void)
-{
- Suite *s = suite_create ("fsmsnconference");
- TCase *tc_chain;
- GLogLevelFlags fatal_mask;
-
- fatal_mask = g_log_set_always_fatal (G_LOG_FATAL_MASK);
- fatal_mask |= G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL;
- g_log_set_always_fatal (fatal_mask);
-
- tc_chain = tcase_create ("fsmsnconference_new");
- tcase_add_test (tc_chain, test_msnconference_new);
- suite_add_tcase (s, tc_chain);
-
-
- tc_chain = tcase_create ("fsmsnconference_send_to_recv");
- tcase_add_test (tc_chain, test_msnconference_send_to_recv);
- suite_add_tcase (s, tc_chain);
-
- tc_chain = tcase_create ("fsmsnconference_recv_to_send");
- tcase_add_test (tc_chain, test_msnconference_recv_to_send);
- suite_add_tcase (s, tc_chain);
-
-
- tc_chain = tcase_create ("fsmsnconference_error");
- tcase_add_test (tc_chain, test_msnconference_error);
- suite_add_tcase (s, tc_chain);
-
-
- return s;
-}
-
-GST_CHECK_MAIN (fsmsnconference);