2009-09-21 16:08:51 +00:00
|
|
|
/* GStreamer Editing Services
|
|
|
|
* Copyright (C) 2009 Edward Hervey <bilboed@bilboed.com>
|
|
|
|
*
|
|
|
|
* 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 <ges/ges.h>
|
|
|
|
#include <gst/check/gstcheck.h>
|
|
|
|
|
|
|
|
/* This test uri will eventually have to be fixed */
|
|
|
|
#define TEST_URI "blahblahblah"
|
|
|
|
|
|
|
|
GST_START_TEST (test_filesource_basic)
|
|
|
|
{
|
|
|
|
GESTrack *track;
|
|
|
|
GESTrackObject *trackobject;
|
|
|
|
GESTimelineFileSource *source;
|
|
|
|
gchar *uri;
|
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
|
|
|
track = ges_track_new (GES_TRACK_TYPE_CUSTOM, GST_CAPS_ANY);
|
|
|
|
fail_unless (track != NULL);
|
|
|
|
|
2010-06-09 14:27:43 +00:00
|
|
|
source = ges_timeline_filesource_new ((gchar *) TEST_URI);
|
2009-09-21 16:08:51 +00:00
|
|
|
fail_unless (source != NULL);
|
|
|
|
|
|
|
|
/* Make sure the object was properly set */
|
|
|
|
g_object_get (source, "uri", &uri, NULL);
|
|
|
|
fail_unless (g_ascii_strcasecmp (uri, TEST_URI) == 0);
|
|
|
|
g_free (uri);
|
|
|
|
|
2010-05-19 10:24:44 +00:00
|
|
|
/* Make sure no track object is created for an incompatible
|
|
|
|
* track. */
|
|
|
|
trackobject =
|
|
|
|
ges_timeline_object_create_track_object (GES_TIMELINE_OBJECT (source),
|
|
|
|
track);
|
|
|
|
fail_unless (trackobject == NULL);
|
|
|
|
|
|
|
|
/* Make sure the track object is created for a compatible track. */
|
|
|
|
g_object_set (source, "supported-formats", GES_TRACK_TYPE_CUSTOM, NULL);
|
2009-09-21 16:08:51 +00:00
|
|
|
trackobject =
|
|
|
|
ges_timeline_object_create_track_object (GES_TIMELINE_OBJECT (source),
|
|
|
|
track);
|
|
|
|
fail_unless (trackobject != NULL);
|
|
|
|
|
|
|
|
/* The track holds a reference to the object */
|
2010-03-13 14:52:14 +00:00
|
|
|
ASSERT_OBJECT_REFCOUNT (trackobject, "Track Object", 1);
|
2009-09-21 16:08:51 +00:00
|
|
|
|
|
|
|
fail_unless (ges_timeline_object_release_track_object (GES_TIMELINE_OBJECT
|
|
|
|
(source), trackobject) == TRUE);
|
|
|
|
|
|
|
|
g_object_unref (source);
|
|
|
|
g_object_unref (track);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2010-03-05 14:50:49 +00:00
|
|
|
#define gnl_object_check(gnlobj, start, duration, mstart, mduration, priority, active) { \
|
|
|
|
guint64 pstart, pdur, pmstart, pmdur, pprio, pact; \
|
|
|
|
g_object_get (gnlobj, "start", &pstart, "duration", &pdur, \
|
|
|
|
"media-start", &pmstart, "media-duration", &pmdur, \
|
|
|
|
"priority", &pprio, "active", &pact, \
|
|
|
|
NULL); \
|
|
|
|
assert_equals_uint64 (pstart, start); \
|
|
|
|
assert_equals_uint64 (pdur, duration); \
|
|
|
|
assert_equals_uint64 (pmstart, mstart); \
|
|
|
|
assert_equals_uint64 (pmdur, mduration); \
|
|
|
|
assert_equals_int (pprio, priority); \
|
|
|
|
assert_equals_int (pact, active); \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GST_START_TEST (test_filesource_properties)
|
|
|
|
{
|
|
|
|
GESTrack *track;
|
|
|
|
GESTrackObject *trackobject;
|
|
|
|
GESTimelineObject *object;
|
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
|
|
|
track = ges_track_new (GES_TRACK_TYPE_AUDIO, GST_CAPS_ANY);
|
|
|
|
fail_unless (track != NULL);
|
|
|
|
|
|
|
|
object = (GESTimelineObject *)
|
2010-06-09 14:27:43 +00:00
|
|
|
ges_timeline_filesource_new ((gchar *)
|
|
|
|
"crack:///there/is/no/way/this/exists");
|
2010-03-05 14:50:49 +00:00
|
|
|
fail_unless (object != NULL);
|
|
|
|
|
|
|
|
/* Set some properties */
|
|
|
|
g_object_set (object, "start", (guint64) 42, "duration", (guint64) 51,
|
2010-05-19 10:24:44 +00:00
|
|
|
"in-point", (guint64) 12, "supported-formats", GES_TRACK_TYPE_AUDIO,
|
|
|
|
NULL);
|
2010-03-05 14:50:49 +00:00
|
|
|
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);
|
|
|
|
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-03-05 14:50:49 +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-03-05 14:50:49 +00:00
|
|
|
|
|
|
|
/* Test mute support */
|
|
|
|
g_object_set (object, "mute", TRUE, NULL);
|
2010-12-16 14:00:46 +00:00
|
|
|
gnl_object_check (ges_track_object_get_gnlobject (trackobject), 420, 510, 120,
|
|
|
|
510, 0, FALSE);
|
2010-03-05 14:50:49 +00:00
|
|
|
g_object_set (object, "mute", FALSE, NULL);
|
2010-12-16 14:00:46 +00:00
|
|
|
gnl_object_check (ges_track_object_get_gnlobject (trackobject), 420, 510, 120,
|
|
|
|
510, 0, TRUE);
|
2010-03-05 14:50:49 +00:00
|
|
|
|
|
|
|
ges_timeline_object_release_track_object (object, trackobject);
|
|
|
|
|
|
|
|
g_object_unref (object);
|
|
|
|
g_object_unref (track);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2010-08-09 09:59:04 +00:00
|
|
|
GST_START_TEST (test_filesource_images)
|
|
|
|
{
|
|
|
|
GESTrackObject *trobj;
|
|
|
|
GESTimelineObject *tlobj;
|
|
|
|
GESTimelineFileSource *tfs;
|
|
|
|
GESTrack *a, *v;
|
|
|
|
|
|
|
|
ges_init ();
|
|
|
|
|
|
|
|
tfs = ges_timeline_filesource_new ((gchar *) TEST_URI);
|
2010-08-09 11:27:25 +00:00
|
|
|
g_object_set (G_OBJECT (tfs), "supported-formats",
|
|
|
|
(GESTrackType) GES_TRACK_TYPE_AUDIO | GES_TRACK_TYPE_VIDEO, NULL);
|
2010-08-09 09:59:04 +00:00
|
|
|
tlobj = GES_TIMELINE_OBJECT (tfs);
|
|
|
|
|
|
|
|
a = ges_track_audio_raw_new ();
|
|
|
|
v = ges_track_video_raw_new ();
|
|
|
|
|
|
|
|
/* set the is_image property to true then create a video track object. */
|
|
|
|
g_object_set (G_OBJECT (tfs), "is-image", TRUE, NULL);
|
|
|
|
|
|
|
|
/* the returned track object should be an image source */
|
|
|
|
trobj = ges_timeline_object_create_track_object (tlobj, v);
|
|
|
|
fail_unless (GES_IS_TRACK_IMAGE_SOURCE (trobj));
|
|
|
|
|
2010-09-02 15:54:48 +00:00
|
|
|
/* The track holds a reference to the object */
|
|
|
|
ASSERT_OBJECT_REFCOUNT (trobj, "Video Track Object", 1);
|
|
|
|
|
2010-08-09 09:59:04 +00:00
|
|
|
ges_track_remove_object (v, trobj);
|
|
|
|
ges_timeline_object_release_track_object (tlobj, trobj);
|
|
|
|
|
2010-08-09 16:35:26 +00:00
|
|
|
/* the timeline object should create an audio test source when the is_image
|
|
|
|
* property is set true */
|
2010-08-09 09:59:04 +00:00
|
|
|
|
|
|
|
trobj = ges_timeline_object_create_track_object (tlobj, a);
|
2010-08-09 16:35:26 +00:00
|
|
|
fail_unless (GES_IS_TRACK_AUDIO_TEST_SOURCE (trobj));
|
2010-08-09 09:59:04 +00:00
|
|
|
|
2010-09-02 15:54:48 +00:00
|
|
|
/* The track holds a reference to the object */
|
|
|
|
ASSERT_OBJECT_REFCOUNT (trobj, "Audio Track Object", 1);
|
|
|
|
|
|
|
|
ges_track_remove_object (v, trobj);
|
|
|
|
ges_timeline_object_release_track_object (tlobj, trobj);
|
|
|
|
|
|
|
|
|
2010-08-09 09:59:04 +00:00
|
|
|
g_object_unref (a);
|
|
|
|
g_object_unref (v);
|
|
|
|
g_object_unref (tlobj);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
2010-03-05 14:50:49 +00:00
|
|
|
|
|
|
|
|
2009-09-21 16:08:51 +00:00
|
|
|
static Suite *
|
|
|
|
ges_suite (void)
|
|
|
|
{
|
|
|
|
Suite *s = suite_create ("ges");
|
|
|
|
TCase *tc_chain = tcase_create ("filesource");
|
|
|
|
|
|
|
|
suite_add_tcase (s, tc_chain);
|
|
|
|
|
|
|
|
tcase_add_test (tc_chain, test_filesource_basic);
|
2010-08-09 09:59:04 +00:00
|
|
|
tcase_add_test (tc_chain, test_filesource_images);
|
2010-03-05 14:50:49 +00:00
|
|
|
tcase_add_test (tc_chain, test_filesource_properties);
|
2009-09-21 16:08:51 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|