gstreamer/tests/check/ges/titles.c
Thibault Saunier cae3aabbca ges: Make ges_clip_create_track_element(s) internal methods
+ Fix tests (we still need a round of modernisation, making use of
      assets where it makes sense)

There is no reason to use those method outside of GES, so remove them,
cleaning the API and making it easier for users.

Removed APIs:
-----------
    * ges_clip_create_track_element
    * ges_clip_create_track_elements
2013-03-21 22:05:45 -03:00

237 lines
7.2 KiB
C

/* GStreamer Editing Services
* Copyright (C) 2010 Brandon Lewis <brandon.lewis@collabora.co.uk>
*
* 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 "test-utils.h"
#include <ges/ges.h>
#include <gst/check/gstcheck.h>
GST_START_TEST (test_title_source_basic)
{
GESTitleClip *source;
ges_init ();
source = ges_title_clip_new ();
fail_unless (source != NULL);
gst_object_unref (source);
}
GST_END_TEST;
GST_START_TEST (test_title_source_properties)
{
GESClip *clip;
GESTrack *track;
GESTimeline *timeline;
GESTimelineLayer *layer;
GESTrackElement *trackelement;
ges_init ();
track = ges_track_video_raw_new ();
fail_unless (track != NULL);
layer = ges_timeline_layer_new ();
fail_unless (layer != NULL);
timeline = ges_timeline_new ();
fail_unless (timeline != NULL);
fail_unless (ges_timeline_add_layer (timeline, layer));
fail_unless (ges_timeline_add_track (timeline, track));
ASSERT_OBJECT_REFCOUNT (timeline, "timeline", 1);
clip = (GESClip *) ges_title_clip_new ();
fail_unless (clip != NULL);
/* Set some properties */
g_object_set (clip, "start", (guint64) 42, "duration", (guint64) 51,
"in-point", (guint64) 12, NULL);
assert_equals_uint64 (_START (clip), 42);
assert_equals_uint64 (_DURATION (clip), 51);
assert_equals_uint64 (_INPOINT (clip), 12);
ges_timeline_layer_add_clip (layer, GES_CLIP (clip));
assert_equals_int (g_list_length (GES_CONTAINER_CHILDREN (clip)), 1);
trackelement = GES_CONTAINER_CHILDREN (clip)->data;
fail_unless (trackelement != NULL);
fail_unless (GES_TIMELINE_ELEMENT_PARENT (trackelement) ==
GES_TIMELINE_ELEMENT (clip));
fail_unless (ges_track_element_get_track (trackelement) == track);
/* Check that trackelement has the same properties */
assert_equals_uint64 (_START (trackelement), 42);
assert_equals_uint64 (_DURATION (trackelement), 51);
assert_equals_uint64 (_INPOINT (trackelement), 12);
/* And let's also check that it propagated correctly to GNonLin */
gnl_object_check (ges_track_element_get_gnlobject (trackelement), 42, 51, 12,
51, 0, TRUE);
/* Change more properties, see if they propagate */
g_object_set (clip, "start", (guint64) 420, "duration", (guint64) 510,
"in-point", (guint64) 120, NULL);
assert_equals_uint64 (_START (clip), 420);
assert_equals_uint64 (_DURATION (clip), 510);
assert_equals_uint64 (_INPOINT (clip), 120);
assert_equals_uint64 (_START (trackelement), 420);
assert_equals_uint64 (_DURATION (trackelement), 510);
assert_equals_uint64 (_INPOINT (trackelement), 120);
/* And let's also check that it propagated correctly to GNonLin */
gnl_object_check (ges_track_element_get_gnlobject (trackelement), 420, 510,
120, 510, 0, TRUE);
ges_container_remove (GES_CONTAINER (clip),
GES_TIMELINE_ELEMENT (trackelement));
gst_object_unref (clip);
}
GST_END_TEST;
GST_START_TEST (test_title_source_in_layer)
{
GESTimeline *timeline;
GESTimelineLayer *layer;
GESTrack *a, *v;
GESTrackElement *track_element;
GESTitleClip *source;
gchar *text;
gint halign, valign;
guint32 color;
gdouble xpos;
gdouble ypos;
ges_init ();
timeline = ges_timeline_new ();
layer = (GESTimelineLayer *) ges_simple_timeline_layer_new ();
a = ges_track_audio_raw_new ();
v = ges_track_video_raw_new ();
ges_timeline_add_track (timeline, a);
ges_timeline_add_track (timeline, v);
ges_timeline_add_layer (timeline, layer);
source = ges_title_clip_new ();
g_object_set (source, "duration", (guint64) GST_SECOND, NULL);
ges_simple_timeline_layer_add_object ((GESSimpleTimelineLayer *) layer,
(GESClip *) source, 0);
/* specifically test the text property */
g_object_set (source, "text", (gchar *) "some text", NULL);
g_object_get (source, "text", &text, NULL);
assert_equals_string ("some text", text);
g_free (text);
track_element =
ges_clip_find_track_element (GES_CLIP (source), v, GES_TYPE_TITLE_SOURCE);
/* Check the text is still the same */
assert_equals_string (ges_title_source_get_text (GES_TITLE_SOURCE
(track_element)), "some text");
/* test the font-desc property */
g_object_set (source, "font-desc", (gchar *) "sans 72", NULL);
g_object_get (source, "font-desc", &text, NULL);
assert_equals_string ("sans 72", text);
g_free (text);
assert_equals_string ("sans 72",
ges_title_source_get_font_desc (GES_TITLE_SOURCE (track_element)));
/* test halign and valign */
g_object_set (source, "halignment", (gint)
GES_TEXT_HALIGN_LEFT, "valignment", (gint) GES_TEXT_VALIGN_TOP, NULL);
g_object_get (source, "halignment", &halign, "valignment", &valign, NULL);
assert_equals_int (halign, GES_TEXT_HALIGN_LEFT);
assert_equals_int (valign, GES_TEXT_VALIGN_TOP);
assert_equals_int (ges_title_source_get_halignment
(GES_TITLE_SOURCE (track_element)), GES_TEXT_HALIGN_LEFT);
assert_equals_int (ges_title_source_get_valignment
(GES_TITLE_SOURCE (track_element)), GES_TEXT_VALIGN_TOP);
/* test color */
g_object_set (source, "color", (gint) 2147483647, NULL);
g_object_get (source, "color", &color, NULL);
assert_equals_int (color, 2147483647);
color = ges_title_source_get_text_color (GES_TITLE_SOURCE (track_element));
assert_equals_int (color, 2147483647);
/* test xpos */
g_object_set (source, "xpos", (gdouble) 0.25, NULL);
g_object_get (source, "xpos", &xpos, NULL);
assert_equals_float (xpos, 0.25);
xpos = ges_title_source_get_xpos (GES_TITLE_SOURCE (track_element));
assert_equals_float (xpos, 0.25);
/* test ypos */
g_object_set (source, "ypos", (gdouble) 0.66, NULL);
g_object_get (source, "ypos", &ypos, NULL);
assert_equals_float (ypos, 0.66);
xpos = ges_title_source_get_xpos (GES_TITLE_SOURCE (track_element));
assert_equals_float (ypos, 0.66);
GST_DEBUG ("removing the source");
ges_timeline_layer_remove_clip (layer, (GESClip *) source);
GST_DEBUG ("removing the layer");
gst_object_unref (track_element);
gst_object_unref (timeline);
}
GST_END_TEST;
static Suite *
ges_suite (void)
{
Suite *s = suite_create ("ges-titles");
TCase *tc_chain = tcase_create ("titles");
suite_add_tcase (s, tc_chain);
tcase_add_test (tc_chain, test_title_source_basic);
tcase_add_test (tc_chain, test_title_source_properties);
tcase_add_test (tc_chain, test_title_source_in_layer);
return s;
}
int
main (int argc, char **argv)
{
int nf;
Suite *s = ges_suite ();
SRunner *sr = srunner_create (s);
gst_check_init (&argc, &argv);
srunner_run_all (sr, CK_NORMAL);
nf = srunner_ntests_failed (sr);
srunner_free (sr);
return nf;
}