2013-04-08 09:38:33 +00:00
|
|
|
/* GStreamer WavParse unit tests
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-04-08 23:28:54 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-04-08 09:38:33 +00:00
|
|
|
#include <gst/check/gstcheck.h>
|
|
|
|
|
2016-11-03 13:27:51 +00:00
|
|
|
#define SIMPLE_WAV_PATH GST_TEST_FILES_PATH G_DIR_SEPARATOR_S "audiotestsrc.wav"
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_test_simple_file (GstPadMode mode)
|
|
|
|
{
|
|
|
|
GstStateChangeReturn ret;
|
|
|
|
GstElement *pipeline;
|
|
|
|
GstElement *src, *q = NULL;
|
|
|
|
GstElement *wavparse;
|
|
|
|
GstElement *fakesink;
|
|
|
|
GstMessage *msg;
|
|
|
|
|
|
|
|
pipeline = gst_pipeline_new ("testpipe");
|
|
|
|
src = gst_element_factory_make ("filesrc", NULL);
|
|
|
|
fail_if (src == NULL);
|
|
|
|
if (mode == GST_PAD_MODE_PUSH)
|
|
|
|
q = gst_element_factory_make ("queue", NULL);
|
|
|
|
wavparse = gst_element_factory_make ("wavparse", NULL);
|
|
|
|
fail_if (wavparse == NULL);
|
|
|
|
fakesink = gst_element_factory_make ("fakesink", NULL);
|
|
|
|
fail_if (fakesink == NULL);
|
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (pipeline), src, wavparse, fakesink, q, NULL);
|
|
|
|
|
|
|
|
g_object_set (src, "location", SIMPLE_WAV_PATH, NULL);
|
|
|
|
|
|
|
|
if (mode == GST_PAD_MODE_PUSH)
|
|
|
|
fail_unless (gst_element_link_many (src, q, wavparse, fakesink, NULL));
|
|
|
|
else
|
|
|
|
fail_unless (gst_element_link_many (src, wavparse, fakesink, NULL));
|
|
|
|
|
|
|
|
ret = gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
|
|
fail_unless_equals_int (ret, GST_STATE_CHANGE_ASYNC);
|
|
|
|
|
|
|
|
ret = gst_element_get_state (pipeline, NULL, NULL, GST_CLOCK_TIME_NONE);
|
|
|
|
fail_unless_equals_int (ret, GST_STATE_CHANGE_SUCCESS);
|
|
|
|
|
|
|
|
msg = gst_bus_timed_pop_filtered (GST_ELEMENT_BUS (pipeline),
|
|
|
|
GST_CLOCK_TIME_NONE, GST_MESSAGE_EOS | GST_MESSAGE_ERROR);
|
|
|
|
|
|
|
|
fail_unless_equals_string (GST_MESSAGE_TYPE_NAME (msg), "eos");
|
|
|
|
|
|
|
|
gst_message_unref (msg);
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
|
|
gst_object_unref (pipeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_simple_file_pull)
|
|
|
|
{
|
|
|
|
do_test_simple_file (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_simple_file_push)
|
|
|
|
{
|
|
|
|
do_test_simple_file (FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2013-04-08 23:28:54 +00:00
|
|
|
static void
|
|
|
|
do_test_empty_file (gboolean can_activate_pull)
|
2013-04-08 09:38:33 +00:00
|
|
|
{
|
2013-04-08 23:28:54 +00:00
|
|
|
GstStateChangeReturn ret1, ret2;
|
2013-04-08 09:38:33 +00:00
|
|
|
GstElement *pipeline;
|
2013-04-08 23:28:54 +00:00
|
|
|
GstElement *src;
|
2013-04-08 09:38:33 +00:00
|
|
|
GstElement *wavparse;
|
|
|
|
GstElement *fakesink;
|
|
|
|
|
2013-04-08 23:28:54 +00:00
|
|
|
/* Pull mode */
|
2013-04-08 09:38:33 +00:00
|
|
|
pipeline = gst_pipeline_new ("testpipe");
|
2013-04-08 23:28:54 +00:00
|
|
|
src = gst_element_factory_make ("fakesrc", NULL);
|
|
|
|
fail_if (src == NULL);
|
2013-04-08 09:38:33 +00:00
|
|
|
wavparse = gst_element_factory_make ("wavparse", NULL);
|
|
|
|
fail_if (wavparse == NULL);
|
|
|
|
fakesink = gst_element_factory_make ("fakesink", NULL);
|
|
|
|
fail_if (fakesink == NULL);
|
|
|
|
|
2013-04-08 23:28:54 +00:00
|
|
|
gst_bin_add_many (GST_BIN (pipeline), src, wavparse, fakesink, NULL);
|
|
|
|
g_object_set (src, "num-buffers", 0, "can-activate-pull", can_activate_pull,
|
|
|
|
NULL);
|
2013-04-08 09:38:33 +00:00
|
|
|
|
2013-04-08 23:28:54 +00:00
|
|
|
fail_unless (gst_element_link_many (src, wavparse, fakesink, NULL));
|
2013-04-08 09:38:33 +00:00
|
|
|
|
2013-04-08 23:28:54 +00:00
|
|
|
ret1 = gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
|
|
if (ret1 == GST_STATE_CHANGE_ASYNC)
|
|
|
|
ret2 = gst_element_get_state (pipeline, NULL, NULL, GST_CLOCK_TIME_NONE);
|
|
|
|
else
|
|
|
|
ret2 = ret1;
|
2013-04-08 09:38:33 +00:00
|
|
|
|
2013-04-08 23:28:54 +00:00
|
|
|
/* should have gotten an error on the bus, no output to fakesink */
|
|
|
|
fail_unless_equals_int (ret2, GST_STATE_CHANGE_FAILURE);
|
2013-04-08 09:38:33 +00:00
|
|
|
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
|
|
gst_object_unref (pipeline);
|
|
|
|
}
|
|
|
|
|
2014-01-06 20:12:17 +00:00
|
|
|
GST_START_TEST (test_empty_file_pull)
|
2013-04-08 23:28:54 +00:00
|
|
|
{
|
|
|
|
do_test_empty_file (TRUE);
|
2014-01-06 20:12:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_empty_file_push)
|
|
|
|
{
|
2013-04-08 23:28:54 +00:00
|
|
|
do_test_empty_file (FALSE);
|
|
|
|
}
|
|
|
|
|
2013-04-08 09:38:33 +00:00
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
static Suite *
|
|
|
|
wavparse_suite (void)
|
|
|
|
{
|
|
|
|
Suite *s = suite_create ("wavparse");
|
|
|
|
TCase *tc_chain = tcase_create ("wavparse");
|
|
|
|
|
|
|
|
suite_add_tcase (s, tc_chain);
|
2014-01-06 20:12:17 +00:00
|
|
|
tcase_add_test (tc_chain, test_empty_file_pull);
|
|
|
|
tcase_add_test (tc_chain, test_empty_file_push);
|
2016-11-03 13:27:51 +00:00
|
|
|
tcase_add_test (tc_chain, test_simple_file_pull);
|
|
|
|
tcase_add_test (tc_chain, test_simple_file_push);
|
2013-04-08 09:38:33 +00:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_CHECK_MAIN (wavparse)
|