gstreamer/tests/check/ges/asset.c

224 lines
6.5 KiB
C
Raw Normal View History

2012-09-10 00:25:54 +00:00
/* GStreamer Editing Services
*
* Copyright (C) 2012 Volodymyr Rudyi <vladimir.rudoy@gmail.com>
* Copyright (C) 2015 Thibault Saunier <tsaunier@gnome.org>
2012-09-10 00:25:54 +00:00
*
* 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 "test-utils.h"
#include "../../../ges/ges-internal.h"
2012-09-10 00:25:54 +00:00
#include <ges/ges.h>
#include <gst/check/gstcheck.h>
static GMainLoop *mainloop;
static void
source_asset_created (GObject * source, GAsyncResult * res, gpointer udata)
{
GError *error = NULL;
GESAsset *a = ges_asset_request_finish (res, &error);
fail_unless (a == NULL);
assert_equals_int (error->domain, GST_RESOURCE_ERROR);
g_main_loop_quit (mainloop);
}
GST_START_TEST (test_basic)
{
gst_init (NULL, NULL);
ges_init ();
mainloop = g_main_loop_new (NULL, FALSE);
ges_asset_request_async (GES_TYPE_URI_CLIP,
2012-09-10 00:25:54 +00:00
"file:///this/is/not/for/real", NULL, source_asset_created, NULL);
g_main_loop_run (mainloop);
g_main_loop_unref (mainloop);
}
GST_END_TEST;
GST_START_TEST (test_transition_change_asset)
2012-09-10 00:25:54 +00:00
{
gchar *id;
GESAsset *a;
GESExtractable *extractable;
gst_init (NULL, NULL);
ges_init ();
a = ges_asset_request (GES_TYPE_TRANSITION_CLIP, "box-wipe-lc", NULL);
2012-09-10 00:25:54 +00:00
fail_unless (GES_IS_ASSET (a));
fail_unless_equals_string (ges_asset_get_id (a), "box-wipe-lc");
extractable = ges_asset_extract (a, NULL);
fail_unless (ges_extractable_get_asset (extractable) == a);
id = ges_extractable_get_id (extractable);
fail_unless_equals_string (id, "box-wipe-lc");
g_free (id);
g_object_set (extractable, "vtype", 2, NULL);
id = ges_extractable_get_id (extractable);
fail_unless_equals_string (id, "bar-wipe-tb");
g_free (id);
fail_if (ges_extractable_get_asset (extractable) == a);
gst_object_unref (a);
a = ges_extractable_get_asset (extractable);
fail_unless_equals_string (ges_asset_get_id (a), "bar-wipe-tb");
/* Now try to set the a and see if the vtype is properly updated */
a = ges_asset_request (GES_TYPE_TRANSITION_CLIP, "box-wipe-lc", NULL);
2012-09-10 00:25:54 +00:00
ges_extractable_set_asset (extractable, a);
fail_unless_equals_int (GES_TRANSITION_CLIP (extractable)->vtype, 26);
2012-09-10 00:25:54 +00:00
gst_object_unref (extractable);
}
GST_END_TEST;
GST_START_TEST (test_uri_clip_change_asset)
{
GESAsset *asset, *asset1;
GESExtractable *extractable;
GESLayer *layer = ges_layer_new ();
gchar *uri = ges_test_file_uri ("audio_video.ogg");
gchar *uri1 = ges_test_file_uri ("audio_only.ogg");
GESTimeline *timeline = ges_timeline_new_audio_video ();
ges_timeline_add_layer (timeline, layer);
gst_init (NULL, NULL);
ges_init ();
asset = GES_ASSET (ges_uri_clip_asset_request_sync (uri, NULL));
fail_unless (GES_IS_ASSET (asset));
fail_unless_equals_string (ges_asset_get_id (asset), uri);
extractable = GES_EXTRACTABLE (ges_layer_add_asset (layer,
asset, 0, 0, GST_CLOCK_TIME_NONE, GES_TRACK_TYPE_UNKNOWN));
fail_unless (ges_extractable_get_asset (extractable) == asset);
gst_object_unref (asset);
/* Now try to set the a and see if the vtype is properly updated */
asset1 = GES_ASSET (ges_uri_clip_asset_request_sync (uri1, NULL));
fail_unless_equals_int (g_list_length (GES_CONTAINER_CHILDREN (extractable)),
2);
fail_unless (ges_extractable_set_asset (extractable, asset1));
fail_unless_equals_int (g_list_length (GES_CONTAINER_CHILDREN (extractable)),
1);
gst_object_unref (extractable);
2017-12-20 13:28:33 +00:00
g_free (uri);
g_free (uri1);
}
GST_END_TEST;
2012-09-10 00:25:54 +00:00
GST_START_TEST (test_list_asset)
{
GList *assets;
GEnumClass *enum_class;
enum_class = g_type_class_peek (GES_VIDEO_STANDARD_TRANSITION_TYPE_TYPE);
fail_unless (ges_init ());
fail_if (ges_list_assets (GES_TYPE_OVERLAY_CLIP));
2012-09-10 00:25:54 +00:00
assets = ges_list_assets (GES_TYPE_TRANSITION_CLIP);
2012-09-10 00:25:54 +00:00
/* note: we do not have a a for value=0 "Transition not set" */
assert_equals_int (g_list_length (assets), enum_class->n_values - 1);
g_list_free (assets);
}
GST_END_TEST;
GST_START_TEST (test_proxy_asset)
{
GESAsset *identity, *nothing, *nothing_at_all;
fail_unless (ges_init ());
identity = ges_asset_request (GES_TYPE_EFFECT, "video identity", NULL);
2012-09-10 00:25:54 +00:00
fail_unless (identity != NULL);
nothing = ges_asset_request (GES_TYPE_EFFECT, "nothing", NULL);
2012-09-10 00:25:54 +00:00
fail_if (nothing);
nothing = ges_asset_cache_lookup (GES_TYPE_EFFECT, "nothing");
2012-09-10 00:25:54 +00:00
fail_unless (nothing != NULL);
fail_unless (ges_asset_try_proxy (nothing, "video identity"));
fail_unless (ges_asset_set_proxy (NULL, identity));
2012-09-10 00:25:54 +00:00
nothing_at_all = ges_asset_request (GES_TYPE_EFFECT, "nothing_at_all", NULL);
2012-09-10 00:25:54 +00:00
fail_if (nothing_at_all);
nothing_at_all = ges_asset_cache_lookup (GES_TYPE_EFFECT, "nothing_at_all");
2012-09-10 00:25:54 +00:00
fail_unless (nothing_at_all != NULL);
/* Now we proxy nothing_at_all to nothing which is itself proxied to identity */
fail_unless (ges_asset_try_proxy (nothing_at_all, "nothing"));
fail_unless (ges_asset_set_proxy (NULL, nothing));
fail_unless_equals_int (g_list_length (ges_asset_list_proxies
(nothing_at_all)), 1);
fail_unless_equals_pointer (ges_asset_get_proxy_target (nothing),
nothing_at_all);
2012-09-10 00:25:54 +00:00
/* If we request nothing_at_all we should get the good proxied identity */
nothing_at_all = ges_asset_request (GES_TYPE_EFFECT, "nothing_at_all", NULL);
2012-09-10 00:25:54 +00:00
fail_unless (nothing_at_all == identity);
gst_object_unref (identity);
gst_object_unref (nothing_at_all);
}
GST_END_TEST;
static Suite *
ges_suite (void)
{
Suite *s = suite_create ("ges");
TCase *tc_chain = tcase_create ("a");
if (atexit (ges_deinit) != 0) {
GST_ERROR ("failed to set ges_deinit as exit function");
}
2012-09-10 00:25:54 +00:00
suite_add_tcase (s, tc_chain);
ges_init ();
2012-09-10 00:25:54 +00:00
/* Must be first until we implement deinit */
tcase_add_test (tc_chain, test_list_asset);
tcase_add_test (tc_chain, test_basic);
tcase_add_test (tc_chain, test_transition_change_asset);
tcase_add_test (tc_chain, test_uri_clip_change_asset);
2012-09-10 00:25:54 +00:00
tcase_add_test (tc_chain, test_proxy_asset);
return s;
}
GST_CHECK_MAIN (ges);