2010-06-15 11:14:14 +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-06-15 11:14:14 +00:00
|
|
|
*/
|
|
|
|
|
2012-09-22 11:10:55 +00:00
|
|
|
#include "test-utils.h"
|
2010-06-15 11:14:14 +00:00
|
|
|
#include <ges/ges.h>
|
|
|
|
#include <gst/check/gstcheck.h>
|
|
|
|
|
|
|
|
GST_START_TEST (test_title_source_basic)
|
|
|
|
{
|
|
|
|
GESTimelineTitleSource *source;
|
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
|
|
|
source = ges_timeline_title_source_new ();
|
|
|
|
fail_unless (source != NULL);
|
|
|
|
|
|
|
|
g_object_unref (source);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_title_source_properties)
|
|
|
|
{
|
|
|
|
GESTrack *track;
|
|
|
|
GESTrackObject *trackobject;
|
|
|
|
GESTimelineObject *object;
|
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
2012-08-26 19:35:01 +00:00
|
|
|
track = ges_track_video_raw_new ();
|
2010-06-15 11:14:14 +00:00
|
|
|
fail_unless (track != NULL);
|
|
|
|
|
|
|
|
object = (GESTimelineObject *)
|
|
|
|
ges_timeline_title_source_new ();
|
|
|
|
fail_unless (object != NULL);
|
|
|
|
|
|
|
|
/* Set some properties */
|
|
|
|
g_object_set (object, "start", (guint64) 42, "duration", (guint64) 51,
|
|
|
|
"in-point", (guint64) 12, NULL);
|
|
|
|
assert_equals_uint64 (GES_TIMELINE_OBJECT_START (object), 42);
|
|
|
|
assert_equals_uint64 (GES_TIMELINE_OBJECT_DURATION (object), 51);
|
|
|
|
assert_equals_uint64 (GES_TIMELINE_OBJECT_INPOINT (object), 12);
|
|
|
|
|
|
|
|
trackobject = ges_timeline_object_create_track_object (object, track);
|
2011-07-27 00:02:20 +00:00
|
|
|
ges_timeline_object_add_track_object (object, trackobject);
|
2010-06-15 11:14:14 +00:00
|
|
|
fail_unless (trackobject != NULL);
|
|
|
|
fail_unless (ges_track_object_set_track (trackobject, track));
|
|
|
|
|
|
|
|
/* Check that trackobject has the same properties */
|
|
|
|
assert_equals_uint64 (GES_TRACK_OBJECT_START (trackobject), 42);
|
|
|
|
assert_equals_uint64 (GES_TRACK_OBJECT_DURATION (trackobject), 51);
|
|
|
|
assert_equals_uint64 (GES_TRACK_OBJECT_INPOINT (trackobject), 12);
|
|
|
|
|
|
|
|
/* And let's also check that it propagated correctly to GNonLin */
|
2010-12-16 14:00:46 +00:00
|
|
|
gnl_object_check (ges_track_object_get_gnlobject (trackobject), 42, 51, 12,
|
|
|
|
51, 0, TRUE);
|
2010-06-15 11:14:14 +00:00
|
|
|
|
|
|
|
/* Change more properties, see if they propagate */
|
|
|
|
g_object_set (object, "start", (guint64) 420, "duration", (guint64) 510,
|
|
|
|
"in-point", (guint64) 120, NULL);
|
|
|
|
assert_equals_uint64 (GES_TIMELINE_OBJECT_START (object), 420);
|
|
|
|
assert_equals_uint64 (GES_TIMELINE_OBJECT_DURATION (object), 510);
|
|
|
|
assert_equals_uint64 (GES_TIMELINE_OBJECT_INPOINT (object), 120);
|
|
|
|
assert_equals_uint64 (GES_TRACK_OBJECT_START (trackobject), 420);
|
|
|
|
assert_equals_uint64 (GES_TRACK_OBJECT_DURATION (trackobject), 510);
|
|
|
|
assert_equals_uint64 (GES_TRACK_OBJECT_INPOINT (trackobject), 120);
|
|
|
|
|
|
|
|
/* And let's also check that it propagated correctly to GNonLin */
|
2010-12-16 14:00:46 +00:00
|
|
|
gnl_object_check (ges_track_object_get_gnlobject (trackobject), 420, 510, 120,
|
|
|
|
510, 0, TRUE);
|
2010-06-15 11:14:14 +00:00
|
|
|
|
|
|
|
ges_timeline_object_release_track_object (object, trackobject);
|
|
|
|
g_object_unref (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_title_source_in_layer)
|
|
|
|
{
|
|
|
|
GESTimeline *timeline;
|
|
|
|
GESTimelineLayer *layer;
|
|
|
|
GESTrack *a, *v;
|
|
|
|
GESTrackObject *trobj;
|
|
|
|
GESTimelineTitleSource *source;
|
|
|
|
gchar *text;
|
2010-06-16 17:04:53 +00:00
|
|
|
gint halign, valign;
|
2011-08-09 17:13:37 +00:00
|
|
|
guint32 color;
|
2011-08-09 17:15:18 +00:00
|
|
|
gdouble xpos;
|
|
|
|
gdouble ypos;
|
2010-06-15 11:14:14 +00:00
|
|
|
|
|
|
|
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_timeline_title_source_new ();
|
|
|
|
|
|
|
|
g_object_set (source, "duration", (guint64) GST_SECOND, NULL);
|
|
|
|
|
|
|
|
ges_simple_timeline_layer_add_object ((GESSimpleTimelineLayer *) layer,
|
|
|
|
(GESTimelineObject *) source, 0);
|
|
|
|
|
2010-06-16 17:04:53 +00:00
|
|
|
/* specifically test the text property */
|
2010-06-15 11:14:14 +00:00
|
|
|
g_object_set (source, "text", (gchar *) "some text", NULL);
|
|
|
|
g_object_get (source, "text", &text, NULL);
|
|
|
|
assert_equals_string ("some text", text);
|
2010-06-17 09:21:43 +00:00
|
|
|
g_free (text);
|
2010-06-15 11:14:14 +00:00
|
|
|
|
|
|
|
trobj =
|
2010-07-13 16:44:41 +00:00
|
|
|
ges_timeline_object_find_track_object (GES_TIMELINE_OBJECT (source), v,
|
|
|
|
GES_TYPE_TRACK_TITLE_SOURCE);
|
2010-06-15 11:14:14 +00:00
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
/* Check the text is still the same */
|
|
|
|
assert_equals_string (ges_track_title_source_get_text (GES_TRACK_TITLE_SOURCE
|
|
|
|
(trobj)), "some text");
|
|
|
|
|
2010-06-16 17:04:53 +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);
|
2010-06-17 09:21:43 +00:00
|
|
|
g_free (text);
|
2010-06-16 17:04:53 +00:00
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
assert_equals_string ("sans 72",
|
|
|
|
ges_track_title_source_get_font_desc (GES_TRACK_TITLE_SOURCE (trobj)));
|
2010-06-16 17:04:53 +00:00
|
|
|
|
|
|
|
/* test halign and valign */
|
|
|
|
g_object_set (source, "halignment", (gint)
|
2010-07-02 10:26:55 +00:00
|
|
|
GES_TEXT_HALIGN_LEFT, "valignment", (gint) GES_TEXT_VALIGN_TOP, NULL);
|
2010-06-16 17:04:53 +00:00
|
|
|
g_object_get (source, "halignment", &halign, "valignment", &valign, NULL);
|
2010-07-02 10:26:55 +00:00
|
|
|
assert_equals_int (halign, GES_TEXT_HALIGN_LEFT);
|
|
|
|
assert_equals_int (valign, GES_TEXT_VALIGN_TOP);
|
2010-06-16 17:04:53 +00:00
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
assert_equals_int (ges_track_title_source_get_halignment
|
|
|
|
(GES_TRACK_TITLE_SOURCE (trobj)), GES_TEXT_HALIGN_LEFT);
|
|
|
|
assert_equals_int (ges_track_title_source_get_valignment
|
|
|
|
(GES_TRACK_TITLE_SOURCE (trobj)), GES_TEXT_VALIGN_TOP);
|
2010-06-15 11:14:14 +00:00
|
|
|
|
2011-08-09 17:13:37 +00:00
|
|
|
/* test color */
|
|
|
|
g_object_set (source, "color", (gint) 2147483647, NULL);
|
|
|
|
g_object_get (source, "color", &color, NULL);
|
|
|
|
assert_equals_int (color, 2147483647);
|
|
|
|
|
|
|
|
color = ges_track_title_source_get_color (GES_TRACK_TITLE_SOURCE (trobj));
|
|
|
|
assert_equals_int (color, 2147483647);
|
|
|
|
|
2011-08-09 17:15:18 +00:00
|
|
|
/* test xpos */
|
|
|
|
g_object_set (source, "xpos", (gdouble) 0.25, NULL);
|
|
|
|
g_object_get (source, "xpos", &xpos, NULL);
|
|
|
|
assert_equals_int (xpos, 0.25);
|
|
|
|
|
|
|
|
xpos = ges_track_title_source_get_xpos (GES_TRACK_TITLE_SOURCE (trobj));
|
|
|
|
assert_equals_int (xpos, 0.25);
|
|
|
|
|
|
|
|
/* test ypos */
|
|
|
|
g_object_set (source, "ypos", (gdouble) 0.66, NULL);
|
|
|
|
g_object_get (source, "ypos", &ypos, NULL);
|
|
|
|
assert_equals_int (ypos, 0.66);
|
|
|
|
|
|
|
|
xpos = ges_track_title_source_get_xpos (GES_TRACK_TITLE_SOURCE (trobj));
|
|
|
|
assert_equals_int (ypos, 0.66);
|
|
|
|
|
2010-06-15 11:14:14 +00:00
|
|
|
GST_DEBUG ("removing the source");
|
|
|
|
|
|
|
|
ges_timeline_layer_remove_object (layer, (GESTimelineObject *) source);
|
|
|
|
|
|
|
|
GST_DEBUG ("removing the layer");
|
|
|
|
|
|
|
|
g_object_unref (trobj);
|
|
|
|
g_object_unref (timeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
static Suite *
|
|
|
|
ges_suite (void)
|
|
|
|
{
|
2010-12-20 10:38:31 +00:00
|
|
|
Suite *s = suite_create ("ges-titles");
|
|
|
|
TCase *tc_chain = tcase_create ("titles");
|
2010-06-15 11:14:14 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|