summaryrefslogtreecommitdiff
path: root/tests/check/pipelines/mimic.c
blob: 5d51a80bee234f312ccb1c7d5d688b7e431daf69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* GStreamer
 *
 * unit test for mimic
 *
 * Copyright 2009 Collabora Ltd.
 *  @author: Olivier Crete <olivier.crete@collabora.co.uk>
 * Copyright 2009 Nokia Corp.
 *
 * 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., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#include <gst/check/gstcheck.h>

static GMainLoop *loop;

static void
eos_message_cb (GstBus * bus, GstMessage * message, gpointer user_data)
{
  GST_DEBUG ("Received eos");
  g_main_loop_quit (loop);
}

GST_START_TEST (test_mimic_pipeline)
{
  GstElement *pipeline;
  GError *error = NULL;
  GstBus *bus;
  const gchar *bin_str = "videotestsrc num-buffers=10 ! mimenc ! "
      "mimdec ! fakesink";

  pipeline = gst_parse_launch (bin_str, &error);
  fail_unless (pipeline != NULL, "Error parsing pipeline: %s", bin_str,
      error ? error->message : "(invalid error)");

  loop = g_main_loop_new (NULL, FALSE);
  bus = gst_element_get_bus (pipeline);
  gst_bus_add_signal_watch (bus);
  g_signal_connect (bus, "message::eos", (GCallback) eos_message_cb, NULL);
  gst_object_unref (bus);

  fail_unless (gst_element_set_state (pipeline, GST_STATE_PLAYING)
      != GST_STATE_CHANGE_FAILURE);

  g_main_loop_run (loop);
  g_main_loop_unref (loop);

  gst_element_set_state (pipeline, GST_STATE_NULL);
  gst_object_unref (pipeline);
}

GST_END_TEST;

static Suite *
mimic_suite (void)
{
  Suite *s = suite_create ("mimic");
  TCase *tc_chain;

  tc_chain = tcase_create ("mimic_pipeline");
  tcase_add_test (tc_chain, test_mimic_pipeline);
  suite_add_tcase (s, tc_chain);

  return s;
}

GST_CHECK_MAIN (mimic)