2010-07-14 14:12:56 +00:00
|
|
|
/* 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
|
2012-11-04 00:25:20 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2010-07-14 14:12:56 +00:00
|
|
|
*/
|
|
|
|
|
2012-09-22 11:10:55 +00:00
|
|
|
#include "test-utils.h"
|
2010-07-14 14:12:56 +00:00
|
|
|
#include <ges/ges.h>
|
|
|
|
#include <gst/check/gstcheck.h>
|
|
|
|
|
|
|
|
GST_START_TEST (test_text_properties_in_layer)
|
|
|
|
{
|
|
|
|
GESTimeline *timeline;
|
2013-04-23 23:04:04 +00:00
|
|
|
GESLayer *layer;
|
2010-07-14 14:12:56 +00:00
|
|
|
GESTrack *a, *v;
|
2013-02-15 02:34:48 +00:00
|
|
|
GESTrackElement *track_element;
|
2013-01-17 03:58:28 +00:00
|
|
|
GESTestClip *source;
|
2010-07-14 14:12:56 +00:00
|
|
|
gchar *text;
|
|
|
|
gint halign, valign;
|
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
|
|
|
timeline = ges_timeline_new ();
|
2013-04-23 23:04:04 +00:00
|
|
|
layer = (GESLayer *) ges_simple_layer_new ();
|
2013-03-28 17:51:45 +00:00
|
|
|
a = GES_TRACK (ges_audio_track_new ());
|
|
|
|
v = GES_TRACK (ges_video_track_new ());
|
2010-07-14 14:12:56 +00:00
|
|
|
|
|
|
|
ges_timeline_add_track (timeline, a);
|
|
|
|
ges_timeline_add_track (timeline, v);
|
|
|
|
ges_timeline_add_layer (timeline, layer);
|
|
|
|
|
2013-01-17 03:58:28 +00:00
|
|
|
source = ges_test_clip_new ();
|
2010-07-14 14:12:56 +00:00
|
|
|
|
|
|
|
g_object_set (source, "duration", (guint64) GST_SECOND, NULL);
|
|
|
|
|
2013-04-23 23:04:04 +00:00
|
|
|
ges_simple_layer_add_object ((GESSimpleLayer *) layer, (GESClip *) source, 0);
|
2010-07-14 14:12:56 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
track_element =
|
2013-01-27 15:24:44 +00:00
|
|
|
ges_clip_find_track_element (GES_CLIP (source), v, GES_TYPE_TEXT_OVERLAY);
|
2010-07-14 14:12:56 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
fail_unless (track_element != NULL);
|
|
|
|
assert_equals_int (track_element->active, FALSE);
|
2010-07-14 14:12:56 +00:00
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
assert_equals_int (track_element->active, TRUE);
|
2010-07-14 14:12:56 +00:00
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
2011-01-06 14:35:42 +00:00
|
|
|
assert_equals_string ("sans 72",
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_text_overlay_get_font_desc (GES_TEXT_OVERLAY (track_element)));
|
2010-07-14 14:12:56 +00:00
|
|
|
|
|
|
|
g_object_set (source, "text", (gchar *) NULL, NULL);
|
2013-02-15 02:34:48 +00:00
|
|
|
assert_equals_int (track_element->active, FALSE);
|
2010-07-14 14:12:56 +00:00
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
halign = ges_text_overlay_get_halignment (GES_TEXT_OVERLAY (track_element));
|
|
|
|
valign = ges_text_overlay_get_valignment (GES_TEXT_OVERLAY (track_element));
|
2010-07-14 14:12:56 +00:00
|
|
|
assert_equals_int (halign, GES_TEXT_HALIGN_LEFT);
|
|
|
|
assert_equals_int (valign, GES_TEXT_VALIGN_TOP);
|
|
|
|
|
|
|
|
GST_DEBUG ("removing the source");
|
|
|
|
|
2013-04-23 23:04:04 +00:00
|
|
|
ges_layer_remove_clip (layer, (GESClip *) source);
|
2010-07-14 14:12:56 +00:00
|
|
|
|
|
|
|
GST_DEBUG ("removing the layer");
|
|
|
|
|
2013-03-16 22:05:04 +00:00
|
|
|
gst_object_unref (track_element);
|
|
|
|
gst_object_unref (timeline);
|
2010-07-14 14:12:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
static Suite *
|
|
|
|
ges_suite (void)
|
|
|
|
{
|
2010-12-20 10:38:31 +00:00
|
|
|
Suite *s = suite_create ("ges-text-properties");
|
|
|
|
TCase *tc_chain = tcase_create ("text_properties");
|
2010-07-14 14:12:56 +00:00
|
|
|
|
|
|
|
suite_add_tcase (s, tc_chain);
|
|
|
|
|
2010-12-15 14:56:38 +00:00
|
|
|
/* Disabled until adding overlays/effect to generic sources
|
|
|
|
* is re-added. (Edward, 15th Dec 2010) */
|
|
|
|
if (0) {
|
|
|
|
tcase_add_test (tc_chain, test_text_properties_in_layer);
|
|
|
|
}
|
2010-07-14 14:12:56 +00:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2013-05-28 02:10:03 +00:00
|
|
|
GST_CHECK_MAIN (ges);
|